0byt3m1n1
Path:
/
data
/
20
/
3
/
134
/
147
/
3949799
/
meta
/
4386775
/
mysql.backup
/
[
Home
]
File: 1_0003nvd_2.mysqlcluster16.bak.sql
-- MySQL dump 10.13 Distrib 5.6.24, for Linux (x86_64) -- -- Host: mysqlcluster16 Database: 1_0003nvd_2 -- ------------------------------------------------------ -- Server version 5.6.39-83.1-56-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 `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_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT '0', `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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 */; INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2016-12-12 19:47:36','2016-12-12 19:47:36','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','',0,0); /*!40000 ALTER TABLE `wp_comments` 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_520_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', `link_rating` int(11) NOT NULL DEFAULT '0', `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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 */; /*!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_520_ci NOT NULL DEFAULT '', `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=InnoDB AUTO_INCREMENT=14262 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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','http://stdcycle.com/company','yes'),(2,'home','http://stdcycle.com/company','yes'),(3,'blogname','Standard Cycle Company','yes'),(4,'blogdescription','The New Standard For Service','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','stdcycle@gmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','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'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:90:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s: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:40:\"index.php?&page_id=261&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:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:2:{i:0;s:35:\"illdy-companion/illdy-companion.php\";i:1;s:19:\"jetpack/jetpack.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:3:{i:0;s:104:\"\\\\WDP\\DFS\\30\\9\\1\\0\\3057908019\\user\\sites\\4386775.site\\www\\company/wp-content/plugins/jetpack/jetpack.php\";i:2;s:104:\"\\\\WDP\\DFS\\30\\9\\1\\0\\3057908019\\user\\sites\\4386775.site\\www\\company/wp-content/plugins/akismet/akismet.php\";i:3;s:0:\"\";}','no'),(40,'template','illdy','yes'),(41,'stylesheet','illdy','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','38590','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:11:{i:2;a:2:{s:5:\"title\";s:7:\"Find Us\";s:4:\"text\";s:200:\"<p><strong>Address</strong><br />123 Main Street<br />New York, NY 10001</p><p><strong>Hours</strong><br />Monday—Friday: 9:00AM–5:00PM<br />Saturday & Sunday: 11:00AM–3:00PM</p>\";}i:3;a:2:{s:5:\"title\";s:15:\"About This Site\";s:4:\"text\";s:85:\"This may be a good place to introduce yourself and your site or include some credits.\";}i:4;a:2:{s:5:\"title\";s:7:\"Find Us\";s:4:\"text\";s:200:\"<p><strong>Address</strong><br />123 Main Street<br />New York, NY 10001</p><p><strong>Hours</strong><br />Monday—Friday: 9:00AM–5:00PM<br />Saturday & Sunday: 11:00AM–3:00PM</p>\";}i:5;a:2:{s:5:\"title\";s:15:\"About This Site\";s:4:\"text\";s:85:\"This may be a good place to introduce yourself and your site or include some credits.\";}i:6;a:3:{s:5:\"title\";s:11:\"DYNO TUNING\";s:4:\"text\";s:299:\"<a href=\"http://stdcycle.com/company/services/dyno-tuning/\" alt=\"Dyno\"><img src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/dyno.png\" width=\"175\"></a>\r\n\r\nState of the art tuning facility.\r\nAmbient air conditioned and blessed\r\nwith the fairy dust from the mistresses \r\nof the racing Gods.\";s:6:\"filter\";b:1;}i:7;a:3:{s:5:\"title\";s:8:\"SERVICES\";s:4:\"text\";s:252:\"<a href=\"http://stdcycle.com/company/services\" alt=\"Services\"><img src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/WrenchPiston2.png\" width=\"175\"></a>\r\n\r\nWe perform general maintenance, repairs and tune ups for all brands regardless of age.\";s:6:\"filter\";b:1;}i:8;a:3:{s:5:\"title\";s:9:\"RACE PREP\";s:4:\"text\";s:330:\"<a href=\"http://stdcycle.com/company/services/race-prep\" alt=\"Race Prep\"><img src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/flags.png\" width=\"175\"></a>\r\n\r\nNobody can prepare your two wheeled flying machine to better standards than us. *caps will be set on any client bike that appears to perform better than our own*\";s:6:\"filter\";b:1;}i:9;a:3:{s:5:\"title\";s:6:\"RETAIL\";s:4:\"text\";s:316:\"Need those weight reducing, golden anodized GSXR foot pegs? How about that sound barrier threatening slip on exhaust? Or maybe you just need a new helmet? Whatever the case, we offer competitive pricing and industry experienced consultation on which self retracting clutch cables will work best with your Honda Grom.\";s:6:\"filter\";b:1;}i:10;a:3:{s:5:\"title\";s:11:\"FABRICATION\";s:4:\"text\";s:232:\"<a href=\"http://stdcycle.com/company/services/fabrication\" alt=\"Fabrication\"><img src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/torch.png\" width=\"175\"></a>\r\n\r\nWe don\'t fuck about when it comes to structural integrity. \";s:6:\"filter\";b:1;}i:11;a:3:{s:5:\"title\";s:14:\"SPECIALTY WORK\";s:4:\"text\";s:162:\"Your handlebar mustache finally grew in and now you need that beat up CB500 to peruse the waterfront of Williamsburg in full working order. We can help with that.\";s:6:\"filter\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:1:{s:41:\"google-maps-widget/google-maps-widget.php\";a:2:{i:0;s:3:\"GMW\";i:1;s:9:\"uninstall\";}}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','261','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(93,'fresh_site','0','yes'),(94,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:14:{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:19:\"wp_inactive_widgets\";a:4:{i:0;s:6:\"text-2\";i:1;s:6:\"text-3\";i:2;s:6:\"text-4\";i:3;s:6:\"text-5\";}s:12:\"blog-sidebar\";a:1:{i:0;s:21:\"widget_contact_info-4\";}s:12:\"page-sidebar\";a:1:{i:0;s:10:\"nav_menu-3\";}s:16:\"footer-sidebar-1\";a:1:{i:0;s:10:\"nav_menu-2\";}s:16:\"footer-sidebar-2\";a:1:{i:0;s:18:\"googlemapswidget-3\";}s:16:\"footer-sidebar-3\";a:1:{i:0;s:21:\"widget_contact_info-5\";}s:24:\"front-page-about-sidebar\";a:1:{i:0;s:13:\"illdy_skill-3\";}s:27:\"front-page-projects-sidebar\";a:0:{}s:27:\"front-page-services-sidebar\";a:6:{i:0;s:6:\"text-6\";i:1;s:6:\"text-7\";i:2;s:6:\"text-8\";i:3;s:6:\"text-9\";i:4;s:7:\"text-10\";i:5;s:7:\"text-11\";}s:26:\"front-page-counter-sidebar\";a:0:{}s:23:\"front-page-team-sidebar\";a:0:{}s:13:\"array_version\";i:3;s:31:\"front-page-testimonials-sidebar\";a:4:{i:0;s:19:\"illdy_testimonial-3\";i:1;s:19:\"illdy_testimonial-4\";i:2;s:19:\"illdy_testimonial-5\";i:3;s:19:\"illdy_testimonial-6\";}}','yes'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_nav_menu','a:3:{i:2;a:2:{s:5:\"title\";s:9:\"Resources\";s:8:\"nav_menu\";i:6;}i:3;a:1:{s:8:\"nav_menu\";i:6;}s:12:\"_multiwidget\";i:1;}','yes'),(104,'cron','a:11:{i:1515183215;a:1:{s:24:\"jp_purge_transients_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1515184742;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1515186585;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:1515728746;a:2:{s:22:\"jetpack_sync_full_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}s:17:\"jetpack_sync_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1515728930;a:1:{s:40:\"jetpack_display_posts_widget_cron_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"minutes_10\";s:4:\"args\";a:0:{}s:8:\"interval\";i:600;}}}i:1515731930;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1515741837;a:1:{s:20:\"jp_sitemap_cron_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:16:\"sitemap-interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1515771383;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:1515771814;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:1516736857;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;}}}s:7:\"version\";i:2;}','yes'),(105,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1484325793;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(123,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:18:\"stdcycle@gmail.com\";s:7:\"version\";s:5:\"4.9.2\";s:9:\"timestamp\";i:1516717576;}','no'),(125,'can_compress_scripts','0','no'),(150,'recently_activated','a:6:{s:33:\"w3-total-cache/w3-total-cache.php\";i:1513029589;s:23:\"wp-smushit/wp-smush.php\";i:1513029589;s:27:\"wp-optimize/wp-optimize.php\";i:1513029589;s:36:\"contact-form-7/wp-contact-form-7.php\";i:1513029424;s:41:\"google-maps-widget/google-maps-widget.php\";i:1513029424;s:21:\"free-cdn/free_cdn.php\";i:1513029350;}','yes'),(153,'theme_mods_twentysixteen','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(154,'_transient_twentysixteen_categories','1','yes'),(155,'theme_mods_twentyfifteen','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(165,'theme_mods_intro','a:18:{s:18:\"custom_css_post_id\";i:-1;s:9:\"site_logo\";s:92:\"http://stdcycle.com/company/wp-content/uploads/2017/01/standard-bar-logo-sticker-concept.png\";s:12:\"site_favicon\";s:92:\"http://stdcycle.com/company/wp-content/uploads/2017/01/standard-bar-logo-sticker-concept.png\";s:11:\"typed_title\";s:22:\"Standard Cycle Company\";s:13:\"typed_strings\";s:28:\"The New Standard For Service\";s:13:\"typed_message\";s:17:\"Street.Track.Dirt\";s:12:\"header_image\";s:86:\"http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-000043250008resized.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:29;s:3:\"url\";s:86:\"http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-000043250008resized.jpg\";s:13:\"thumbnail_url\";s:86:\"http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-000043250008resized.jpg\";s:6:\"height\";i:1080;s:5:\"width\";i:1920;}s:13:\"header_height\";i:100;s:16:\"header_textcolor\";s:6:\"000000\";s:14:\"headings_fonts\";s:14:\"Oswald:400,700\";s:10:\"body_fonts\";s:18:\"Droid Sans:400,700\";s:7:\"h1_size\";i:38;s:9:\"body_size\";i:10;s:16:\"background_image\";s:0:\"\";s:7:\"h2_size\";i:0;s:17:\"header_btn_text_1\";s:0:\"\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1484341680;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:4:{i:0;s:6:\"text-2\";i:1;s:6:\"text-3\";i:2;s:6:\"text-4\";i:3;s:6:\"text-5\";}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),(168,'current_theme','Illdy','yes'),(169,'theme_switched','','yes'),(226,'theme_mods_illdy','a:61:{s:18:\"custom_css_post_id\";i:81;s:11:\"custom_logo\";i:259;s:22:\"illdy_footer_copyright\";s:54:\"STD Cycle Corp © Copyright 2017. All Rights Reserved.\";s:21:\"illdy_img_footer_logo\";s:90:\"http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-standard-bar-logo-trans.png\";s:29:\"illdy_jumbotron_general_image\";s:72:\"http://stdcycle.com/company/wp-content/uploads/2017/12/S1000R_LSR-16.jpg\";s:16:\"background_image\";s:0:\"\";s:15:\"background_size\";s:4:\"auto\";s:12:\"header_image\";s:73:\"http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-24crop.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:58;s:3:\"url\";s:73:\"http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-24crop.jpg\";s:13:\"thumbnail_url\";s:73:\"http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-24crop.jpg\";s:6:\"height\";i:532;s:5:\"width\";i:1920;}s:37:\"illdy_archive_page_background_stretch\";i:1;s:18:\"nav_menu_locations\";a:1:{s:12:\"primary-menu\";i:6;}s:15:\"illdy_text_logo\";s:0:\"\";s:18:\"jetpack_custom_css\";a:3:{s:12:\"preprocessor\";s:0:\"\";s:7:\"replace\";b:0;s:13:\"content_width\";s:0:\"\";}s:29:\"illdy_jumbotron_general_entry\";s:0:\"\";s:37:\"illdy_jumbotron_enable_featured_image\";i:1;s:38:\"illdy_jumbotron_enable_parallax_effect\";i:1;s:22:\"illdy_preloader_enable\";i:1;s:43:\"illdy_jumbotron_general_second_button_title\";s:0:\"\";s:17:\"background_preset\";s:7:\"default\";s:17:\"background_repeat\";s:6:\"repeat\";s:21:\"background_attachment\";s:6:\"scroll\";s:42:\"illdy_jumbotron_general_first_button_title\";s:0:\"\";s:40:\"illdy_jumbotron_general_first_button_url\";s:0:\"\";s:41:\"illdy_jumbotron_general_second_button_url\";s:0:\"\";s:30:\"illdy_latest_news_general_show\";i:0;s:23:\"illdy_team_general_show\";i:0;s:39:\"illdy_contact_us_general_contact_form_7\";s:7:\"default\";s:30:\"illdy_contact_bar_linkedin_url\";s:0:\"\";s:31:\"illdy_contact_bar_pinterest_url\";s:0:\"\";s:29:\"illdy_contact_bar_youtube_url\";s:0:\"\";s:27:\"illdy_contact_bar_vimeo_url\";s:0:\"\";s:14:\"illdy_address1\";s:18:\"57 Industrial Road\";s:14:\"illdy_address2\";s:26:\"Berkeley Heights, NJ 07922\";s:29:\"illdy_contact_bar_twitter_url\";s:0:\"\";s:11:\"illdy_phone\";s:12:\"908.665.0163\";s:11:\"illdy_email\";s:17:\"info@stdcycle.com\";s:24:\"illdy_about_general_show\";i:1;s:31:\"illdy_contact_bar_instagram_url\";s:49:\"https://www.instagram.com/standard_cycle_company/\";s:30:\"illdy_contact_bar_facebook_url\";s:45:\"https://www.facebook.com/standardcyclecompany\";s:25:\"illdy_about_general_entry\";s:935:\"Standard Cycle Company is a complete service center and retail store for all motorcycles. Located in Berkeley Heights, right at the foothills of some of the best riding in New Jersey. With over 20 years professional experience in the powersports industry, along with various forms of modern and vintage racing. Utilizing the latest in technology in repair and fabrication equipment we can repair, maintain, and modify all American, metric, sport, cruiser, dirt, racing motorcycles and atv’s.\n\nStocking all your daily needs, including premium oils from Motorex, Maxima, and Belray, Yuasa batteries, K&N filters, NGK plugs, Liquid Performance chemicals and S100 cleaners in our clean, bright, and hip showroom.\n\nStop by anytime and talk moto or have your bike’s oil changed while listening to Coltrane playing on vinyl, watch “The world’s Fastest Indian” or Dana Brown’s “On any Sunday”, or enjoy our free guest wifi.\";s:25:\"illdy_about_general_title\";s:5:\"About\";s:28:\"illdy_services_general_entry\";s:281:\"<ul>\n <li>Parts and accessories</li>\n <li>General repairs and maintenance</li>\n <li>Dyno tuning and performance modifications</li>\n <li>Race bike setup and building</li>\n <li>Welding and fabrication</li>\n <li>Vintage and antique motorcycle refurbishing and repairs</li>\n</ul>\";s:28:\"illdy_services_general_title\";s:21:\"Products and Services\";s:29:\"illdy_contact_bar_googlep_url\";s:0:\"\";s:38:\"illdy_contact_us_general_address_title\";s:7:\"Address\";s:47:\"illdy_contact_us_general_customer_support_title\";s:7:\"Contact\";s:26:\"illdy_counter_general_show\";i:0;s:30:\"illdy_contact_us_general_title\";s:7:\"Contact\";s:24:\"illdy_frontpage_sections\";a:9:{i:0;s:26:\"illdy_testimonials_general\";i:1;s:17:\"illdy_panel_about\";i:2;s:20:\"illdy_panel_projects\";i:3;s:20:\"illdy_panel_services\";i:4;s:25:\"illdy_latest_news_general\";i:5;s:21:\"illdy_counter_general\";i:6;s:16:\"illdy_panel_team\";i:7;s:16:\"illdy_contact_us\";i:8;s:16:\"illdy_full_width\";}s:21:\"illdy_jumbotron_title\";s:77:\"Street<span class=\"span-dot\">.</span>Track<span class=\"span-dot\">.</span>Dirt\";s:31:\"illdy_testimonials_general_show\";i:1;s:27:\"illdy_projects_general_show\";i:0;s:45:\"illdy_testimonials_container_background_color\";s:7:\"#edcd84\";s:43:\"illdy_testimonials_general_background_image\";s:65:\"http://stdcycle.com/company/wp-content/uploads/2017/12/STD6-1.jpg\";s:40:\"illdy_testimonials_background_position_y\";s:6:\"center\";s:34:\"illdy_testimonials_background_size\";s:7:\"contain\";s:25:\"illdy_about_general_image\";s:0:\"\";s:27:\"illdy_services_general_show\";i:0;s:30:\"illdy_about_descriptions_color\";s:7:\"#dbe0d7\";s:35:\"illdy_full_width_descriptions_color\";s:7:\"#e5e5e5\";s:40:\"illdy_testimonials_background_position_x\";s:4:\"left\";}','yes'),(231,'theme_switched_via_customizer','','yes'),(232,'customize_stashed_theme_mods','a:0:{}','no'),(244,'nav_menu_options','a:1:{s:8:\"auto_add\";a:0:{}}','yes'),(247,'category_children','a:0:{}','yes'),(275,'wpcf7','a:2:{s:7:\"version\";s:5:\"4.9.2\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1484451432;s:7:\"version\";s:3:\"4.6\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(278,'jetpack_activated','4','yes'),(280,'jetpack_file_data','a:1:{s:3:\"4.5\";a:51:{s:32:\"31e5b9ae08b62c2b0cd8a7792242298b\";a:14:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:40:\"Check your spelling, style, and grammar.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"6\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:115:\"after the deadline, afterthedeadline, spell, spellchecker, spelling, grammar, proofreading, style, language, cliche\";}s:32:\"3f41b2d629265b5de8108b463abbe8e2\";a:14:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:76:\"Display images and galleries in a gorgeous, full-screen browsing experience.\";s:14:\"jumpstart_desc\";s:79:\"Brings your photos and images to life as full-size, easily navigable galleries.\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";}s:32:\"c6ebb418dde302de09600a6025370583\";a:14:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:65:\"Allow comments with WordPress.com, Twitter, Facebook, or Google+.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";}s:32:\"836f9485669e1bbb02920cb474730df0\";a:14:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:57:\"Insert a customizable contact form anywhere on your site.\";s:14:\"jumpstart_desc\";s:111:\"Adds a button to your post and page editors, allowing you to build simple forms to help visitors stay in touch.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:18:\"Writing, Jumpstart\";s:25:\"additional_search_queries\";s:44:\"contact, form, grunion, feedback, submission\";}s:32:\"ea3970eebf8aac55fc3eca5dca0e0157\";a:14:{s:4:\"name\";s:20:\"Custom Content Types\";s:11:\"description\";s:61:\"Organize and display different types of content on your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";}s:32:\"d2bb05ccad3d8789df40ca3abb97336c\";a:14:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:53:\"Tweak your site’s CSS without modifying your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";}s:32:\"a2064eec5b9c7e0d816af71dee7a715f\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"53a4ec755022ef3953699734c343da02\";a:14:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";}s:32:\"72fecb67ee6704ba0a33e0225316ad06\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"d56e2886185a9eace719cc57d46770df\";a:14:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:14:\"jumpstart_desc\";s:131:\"Let commenters link their profiles to their Gravatar accounts, making it easy for your visitors to learn more about your community.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";}s:32:\"e391e760617bd0e0736550e34a73d7fe\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:8:\"2.0.3 ??\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"2e345370766346c616b3c5046e817720\";a:14:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:54:\"Automatically load new content when a visitor scrolls.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";}s:32:\"bd69edbf134de5fae8fdcf2e70a45b56\";a:14:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:51:\"Allow applications to securely access your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";}s:32:\"8110b7a4423aaa619dfa46b8843e10d1\";a:14:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:57:\"Use LaTeX markup for complex equations and other geekery.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";}s:32:\"fd7e85d3b4887fa6b6f997d6592c1f33\";a:14:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:63:\"Give visitors an easy way to show they appreciate your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";}s:32:\"c5dfef41fad5bcdcaae8e315e5cfc420\";a:14:{s:4:\"name\";s:6:\"Manage\";s:11:\"description\";s:54:\"Manage all of your sites from a centralized dashboard.\";s:14:\"jumpstart_desc\";s:151:\"Helps you remotely manage plugins, turn on automated updates, and more from <a href=\"https://wordpress.com/plugins/\" target=\"_blank\">wordpress.com</a>.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"3\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:35:\"Centralized Management, Recommended\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:26:\"manage, management, remote\";}s:32:\"fd6dc399b92bce76013427e3107c314f\";a:14:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:51:\"Write posts or pages in plain-text Markdown syntax.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";}s:32:\"c49a35b6482b0426cb07ad28ecf5d7df\";a:14:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:47:\"Optimize your site for smartphones and tablets.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";}s:32:\"b42e38f6fafd2e4104ebe5bf39b4be47\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"771cfeeba0d3d23ec344d5e781fb0ae2\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"54f0661d27c814fc8bde39580181d939\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"46c4c413b5c72bbd3c3dbd14ff8f8adc\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"9ea52fa25783e5ceeb6bfaed3268e64e\";a:14:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:37:\"monitor, uptime, downtime, monitoring\";}s:32:\"cfcaafd0fcad087899d715e0b877474d\";a:14:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:57:\"Receive instant notifications of site comments and likes.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";}s:32:\"0d18bfa69bec61550c1d813ce64149b0\";a:14:{s:4:\"name\";s:10:\"Omnisearch\";s:11:\"description\";s:66:\"Search your entire database from a single field in your dashboard.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"16\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:6:\"search\";}s:32:\"3f0a11e23118f0788d424b646a6d465f\";a:14:{s:4:\"name\";s:6:\"Photon\";s:11:\"description\";s:27:\"Speed up images and photos.\";s:14:\"jumpstart_desc\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:34:\"Recommended, Jumpstart, Appearance\";s:25:\"additional_search_queries\";s:38:\"photon, image, cdn, performance, speed\";}s:32:\"e37cfbcb72323fb1fe8255a2edb4d738\";a:14:{s:4:\"name\";s:13:\"Post by Email\";s:11:\"description\";s:34:\"Publish posts by sending an email.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";}s:32:\"728290d131a480bfe7b9e405d7cd925f\";a:14:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:43:\"Prevent and block malicious login attempts.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:65:\"security, secure, protection, botnet, brute force, protect, login\";}s:32:\"f9ce784babbbf4dcca99b8cd2ceb420c\";a:14:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:27:\"Automated social marketing.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:107:\"facebook, twitter, google+, googleplus, google, path, tumblr, linkedin, social, tweet, connections, sharing\";}s:32:\"052c03877dd3d296a71531cb07ad939a\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"52edecb2a75222e75b2dce4356a4efce\";a:14:{s:4:\"name\";s:13:\"Related Posts\";s:11:\"description\";s:64:\"Increase page views by showing related content to your visitors.\";s:14:\"jumpstart_desc\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:22:\"related, related posts\";}s:32:\"68b0d01689803c0ea7e4e60a86de2519\";a:14:{s:4:\"name\";s:9:\"SEO tools\";s:11:\"description\";s:50:\"Better results on search engines and social media.\";s:14:\"jumpstart_desc\";s:50:\"Better results on search engines and social media.\";s:4:\"sort\";s:2:\"35\";s:20:\"recommendation_order\";s:2:\"15\";s:10:\"introduced\";s:3:\"4.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:18:\"Traffic, Jumpstart\";s:25:\"additional_search_queries\";s:81:\"search engine optimization, social preview, meta description, custom title format\";}s:32:\"8b059cb50a66b717f1ec842e736b858c\";a:14:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:37:\"Allow visitors to share your content.\";s:14:\"jumpstart_desc\";s:116:\"Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:141:\"share, sharing, sharedaddy, buttons, icons, email, facebook, twitter, google+, linkedin, pinterest, pocket, press this, print, reddit, tumblr\";}s:32:\"a6d2394329871857401255533a9873f7\";a:14:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:50:\"Embed media from popular sites without any coding.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:236:\"shortcodes, shortcode, embeds, media, bandcamp, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";}s:32:\"21496e2897ea5f81605e2f2ac3beb921\";a:14:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:54:\"Create short and simple links for all posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";}s:32:\"e2a54a5d7879a4162709e6ffb540dd08\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"f5c537bc304f55b29c1a87e30be0cd24\";a:14:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:50:\"Make it easy for search engines to find your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";}s:32:\"59a23643437358a9b557f1d1e20ab040\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"6a90f97c3194cfca5671728eaaeaf15e\";a:14:{s:4:\"name\";s:14:\"Single Sign On\";s:11:\"description\";s:46:\"Secure user authentication with WordPress.com.\";s:14:\"jumpstart_desc\";s:98:\"Lets you log in to all your Jetpack-enabled sites with one click using your WordPress.com account.\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";}s:32:\"b65604e920392e2f7134b646760b75e8\";a:14:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:44:\"Collect valuable traffic stats and insights.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:23:\"Site Stats, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";}s:32:\"23a586dd7ead00e69ec53eb32ef740e4\";a:14:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:55:\"Notify your readers of new posts and comments by email.\";s:14:\"jumpstart_desc\";s:126:\"Give visitors two easy subscription options — while commenting, or via a separate email subscription widget you can display.\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";}s:32:\"1d978b8d84d2f378fe1a702a67633b6d\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"b3b983461d7f3d27322a3551ed8a9405\";a:14:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";}s:32:\"d924e5b05722b0e104448543598f54c0\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"36741583b10c521997e563ad8e1e8b77\";a:14:{s:4:\"name\";s:12:\"Data Backups\";s:11:\"description\";s:54:\"Off-site backups, security scans, and automatic fixes.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:16:\"Security, Health\";s:25:\"additional_search_queries\";s:28:\"vaultpress, backup, security\";}s:32:\"2b9b44f09b5459617d68dd82ee17002a\";a:14:{s:4:\"name\";s:17:\"Site Verification\";s:11:\"description\";s:58:\"Establish your site\'s authenticity with external services.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";}s:32:\"5ab4c0db7c42e10e646342da0274c491\";a:14:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:45:\"Powerful, simple video hosting for WordPress.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:25:\"video, videos, videopress\";}s:32:\"60a1d3aa38bc0fe1039e59dd60888543\";a:14:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:42:\"Control where widgets appear on your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";}s:32:\"174ed3416476c2cb9ff5b0f671280b15\";a:14:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:54:\"Add images, Twitter streams, and more to your sidebar.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";}s:32:\"a668bc9418d6de87409f867892fcdd7f\";a:14:{s:4:\"name\";s:3:\"Ads\";s:11:\"description\";s:60:\"Earn income by allowing Jetpack to display high quality ads.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"4.5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Traffic, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:26:\"advertising, ad codes, ads\";}s:32:\"28b931a1db19bd24869bd54b14e733d5\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}}}','yes'),(281,'jetpack_available_modules','a:1:{s:3:\"5.6\";a:43:{s:18:\"after-the-deadline\";s:3:\"1.1\";s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:11:\"lazy-images\";s:5:\"5.6.0\";s:5:\"likes\";s:3:\"2.2\";s:6:\"manage\";s:3:\"3.4\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:9:\"minileven\";s:3:\"1.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:3:\"pwa\";s:5:\"5.6.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(282,'jetpack_options','a:12:{s:7:\"version\";s:14:\"5.6:1513028117\";s:11:\"old_version\";s:14:\"5.5:1510255445\";s:2:\"id\";i:122732579;s:6:\"public\";i:1;s:9:\"jumpstart\";s:20:\"jetpack_action_taken\";s:24:\"custom_css_4.7_migration\";b:1;s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;s:11:\"master_user\";i:1;s:14:\"last_heartbeat\";i:1515108980;s:22:\"image_widget_migration\";b:1;s:24:\"gallery_widget_migration\";b:1;}','yes'),(283,'widget_illdy_recent_posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(284,'widget_illdy_skill','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:0:{}}','yes'),(285,'widget_illdy_project','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(286,'widget_illdy_service','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(287,'widget_illdy_counter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(288,'widget_illdy_person','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(290,'do_activate','0','yes'),(295,'kiwi_settings','a:11:{s:20:\"kiwi-enable-on-posts\";s:1:\"1\";s:20:\"kiwi-enable-on-pages\";s:1:\"1\";s:26:\"kiwi-enable-share-position\";s:11:\"after-posts\";s:18:\"kiwi-display-sizes\";s:15:\"kiwi-large-size\";s:20:\"kiwi-enable-facebook\";s:1:\"1\";s:19:\"kiwi-enable-twitter\";s:1:\"1\";s:23:\"kiwi-enable-google-plus\";s:1:\"1\";s:20:\"kiwi-enable-linkedin\";s:1:\"1\";s:17:\"kiwi-enable-email\";s:1:\"1\";s:22:\"general-settings-order\";s:0:\"\";s:25:\"kiwi-design-choose-layout\";s:16:\"kiwi-pills-style\";}','yes'),(296,'sharing-options','a:1:{s:6:\"global\";a:5:{s:12:\"button_style\";s:9:\"icon-text\";s:13:\"sharing_label\";s:11:\"Share this:\";s:10:\"open_links\";s:4:\"same\";s:4:\"show\";a:0:{}s:6:\"custom\";a:0:{}}}','yes'),(297,'stats_options','a:7:{s:9:\"admin_bar\";b:1;s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:11:\"count_roles\";a:0:{}s:7:\"blog_id\";b:0;s:12:\"do_not_track\";b:1;s:10:\"hide_smile\";b:1;s:7:\"version\";s:1:\"9\";}','yes'),(334,'jetpack_log','a:3:{i:0;a:4:{s:4:\"time\";i:1484683968;s:7:\"user_id\";i:1;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"register\";}i:1;a:5:{s:4:\"time\";i:1484683997;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:122732579;s:4:\"code\";s:24:\"custom_css_4.7_migration\";s:4:\"data\";s:5:\"start\";}i:2;a:4:{s:4:\"time\";i:1484685510;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:122732579;s:4:\"code\";s:8:\"register\";}}','no'),(336,'jetpack_private_options','a:5:{s:15:\"activate_manage\";s:78:\"eaNFU448emChlDEFLawbAE1jhau8jRcM:JJdc0Thbn3BmCbEbdW9TzLNl9x9R1LrH:1484771930:1\";s:8:\"register\";s:78:\"T9fCvr9YndDrH10H64I5MjAKibJNTw1b:RkU2KEMBxsaZfhQtUSLVFlIJON4RPro6:1484686110:1\";s:10:\"blog_token\";s:65:\"1HMY$@KHilxLg$82j!^QYDc@hxq!BV#!.XlVuEHlW^usv3oNgFe7whSjXJGV8*QP%\";s:11:\"user_tokens\";a:1:{i:1;s:67:\"pw47H(tbPwv(dg1Wx%IOxZ2tkXDx7jv4.4T&k8(zF(pi4pxy!mJwLp!U6LTwnZvuA.1\";}s:9:\"authorize\";s:78:\"uMkMtv89Uz2P1UkQoh9PVQcfzReJVZA5:egn1fCZvQzQ4d2ln1ED5fxrg0larpmLl:1484765034:1\";}','yes'),(337,'jetpack_unique_connection','a:3:{s:9:\"connected\";i:2;s:12:\"disconnected\";i:1;s:7:\"version\";s:5:\"3.6.1\";}','yes'),(338,'jetpack_active_modules','a:22:{i:0;s:18:\"after-the-deadline\";i:1;s:20:\"custom-content-types\";i:2;s:10:\"custom-css\";i:3;s:21:\"enhanced-distribution\";i:4;s:19:\"gravatar-hovercards\";i:5;s:8:\"json-api\";i:6;s:5:\"latex\";i:7;s:6:\"manage\";i:8;s:5:\"notes\";i:10;s:13:\"post-by-email\";i:11;s:7:\"protect\";i:12;s:9:\"publicize\";i:13;s:10:\"sharedaddy\";i:14;s:10:\"shortcodes\";i:15;s:10:\"shortlinks\";i:16;s:8:\"sitemaps\";i:17;s:5:\"stats\";i:18;s:13:\"subscriptions\";i:19;s:18:\"verification-tools\";i:20;s:17:\"widget-visibility\";i:21;s:7:\"widgets\";i:23;s:12:\"contact-form\";}','yes'),(340,'jetpack_protect_key','637d8e1475c9d6b6f3f993be817b9aff20f648da','no'),(346,'widget_blog_subscription','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(347,'widget_authors','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(348,'widget_facebook-likebox','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(349,'widget_wpcom-goodreads','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(350,'widget_google_translate_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(351,'widget_googleplus-badge','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(352,'widget_grofile','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(354,'widget_milestone_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(355,'widget_jetpack_my_community','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(356,'widget_rss_links','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(357,'widget_wpcom_social_media_icons_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(358,'widget_twitter_timeline','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(359,'widget_upcoming_events_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(360,'widget_jetpack_display_posts_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(362,'jetpack_portfolio','0','yes'),(379,'sharedaddy_disable_resources','0','yes'),(380,'jetpack_testimonial','0','yes'),(389,'trusted_ip_header','O:8:\"stdClass\":3:{s:14:\"trusted_header\";s:11:\"REMOTE_ADDR\";s:8:\"segments\";i:1;s:7:\"reverse\";b:0;}','no'),(435,'jpsq_sync_checkout','0:0','no'),(436,'jetpack_next_sync_time_full-sync-enqueue','1516717617','yes'),(439,'jetpack_active_plan','a:7:{s:10:\"product_id\";i:2002;s:12:\"product_slug\";s:12:\"jetpack_free\";s:18:\"product_name_short\";s:4:\"Free\";s:10:\"free_trial\";b:0;s:7:\"expired\";b:0;s:13:\"user_is_owner\";b:0;s:7:\"is_free\";b:1;}','yes'),(444,'post_by_email_address1','NULL','yes'),(445,'monitor_receive_notifications','1','yes'),(457,'WPLANG','','yes'),(460,'gravatar_disable_hovercards','disabled','yes'),(463,'stats_cache','a:2:{s:32:\"8c8ebb9b3d5c9304b5a5b0f43f81d023\";a:1:{i:1515110249;a:0:{}}s:32:\"59f791a7b7442f977aee86f39b003101\";a:1:{i:1515110249;a:0:{}}}','yes'),(469,'widget_blog-stats','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(472,'widget_widget_contact_info','a:4:{i:1;a:0:{}i:4;a:8:{s:5:\"title\";s:16:\"Hours & Info\";s:7:\"address\";s:45:\"57 Industrial Road\r\nBerkeley Heights NJ 07922\";s:5:\"phone\";s:12:\"908.665.0163\";s:5:\"hours\";s:62:\"Lunch: 11am - 2pm \r\nDinner: M-Th 5pm - 11pm, Fri-Sat:5pm - 1am\";s:6:\"apikey\";s:39:\"AIzaSyDscOUN8EaXb3GOCXRBG1gBkWblTcSQoJs\";s:3:\"lat\";d:40.6813158;s:3:\"lon\";d:-74.432200100000003;s:7:\"showmap\";i:1;}i:5;a:9:{s:5:\"title\";s:16:\"Hours & Info\";s:7:\"address\";s:45:\"57 Industrial Rd.\r\nBerkeley Heights, NJ 07922\";s:5:\"phone\";s:12:\"908.665.0163\";s:5:\"email\";s:0:\"\";s:5:\"hours\";s:44:\"M/W/Th/F. 9am - 5:30pm\r\nTu. 9am - 7:30pm\r\n\r\n\";s:6:\"apikey\";s:0:\"\";s:3:\"lat\";s:10:\"40.6814657\";s:3:\"lon\";s:11:\"-74.4321159\";s:7:\"showmap\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(473,'widget_top-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(474,'verification_services_codes','0','yes'),(510,'wp_mobile_app_promos','0','yes'),(517,'wp_mobile_disable','0','yes'),(553,'jpsq_full_sync_checkout','0:0','no'),(585,'jetpack_sync_settings_disable','0','yes'),(593,'jetpack_constants_sync_checksum','a:19:{s:16:\"EMPTY_TRASH_DAYS\";i:-1821685917;s:17:\"WP_POST_REVISIONS\";i:-33796979;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:7:\"ABSPATH\";i:1975340800;s:14:\"WP_CONTENT_DIR\";i:1353229868;s:9:\"FS_METHOD\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:634125391;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:16:\"JETPACK__VERSION\";i:-730253167;s:12:\"IS_PRESSABLE\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:-300109018;s:11:\"PHP_VERSION\";i:1108401221;s:15:\"WP_MEMORY_LIMIT\";i:-1229557325;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1474498405;}','yes'),(594,'jetpack_next_sync_time_sync','1515728698','yes'),(595,'jetpack_sync_settings_render_filtered_content','0','yes'),(596,'jetpack_sync_settings_post_meta_whitelist','a:0:{}','yes'),(597,'jetpack_sync_settings_comment_meta_whitelist','a:0:{}','yes'),(598,'jetpack_next_sync_time_full_sync','1510255494','yes'),(600,'jetpack_protect_activating','activating','no'),(603,'jetpack_sync_settings_sync_via_cron','1','yes'),(604,'jetpack_sync_settings_max_queue_size','1000','yes'),(605,'jetpack_sync_settings_max_queue_lag','900','yes'),(607,'jetpack_sync_settings_dequeue_max_bytes','500000','yes'),(608,'jetpack_sync_settings_upload_max_bytes','600000','yes'),(609,'jetpack_sync_settings_upload_max_rows','500','yes'),(610,'jetpack_sync_settings_sync_wait_time','10','yes'),(611,'jetpack_sync_settings_sync_wait_threshold','5','yes'),(612,'jetpack_sync_settings_enqueue_wait_time','10','yes'),(613,'jetpack_sync_settings_queue_max_writes_sec','100','yes'),(614,'jetpack_sync_settings_post_types_blacklist','a:0:{}','yes'),(615,'jetpack_sync_settings_max_enqueue_full_sync','100','yes'),(616,'jetpack_sync_settings_max_queue_size_full_sync','1000','yes'),(617,'jetpack_sync_settings_cron_sync_time_limit','30','yes'),(623,'jetpack_sync_https_history_main_network_site_url','a:5:{i:0;s:4:\"http\";i:1;s:4:\"http\";i:2;s:4:\"http\";i:3;s:4:\"http\";i:4;s:4:\"http\";}','yes'),(624,'jetpack_sync_https_history_site_url','a:5:{i:0;s:4:\"http\";i:1;s:4:\"http\";i:2;s:4:\"http\";i:3;s:4:\"http\";i:4;s:4:\"http\";}','yes'),(625,'jetpack_sync_https_history_home_url','a:5:{i:0;s:4:\"http\";i:1;s:4:\"http\";i:2;s:4:\"http\";i:3;s:4:\"http\";i:4;s:4:\"http\";}','yes'),(653,'jetpack_callables_sync_checksum','a:29:{s:18:\"wp_max_upload_size\";i:-144542450;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:17:\"main_network_site\";i:-1274189134;s:8:\"site_url\";i:-1274189134;s:8:\"home_url\";i:-1274189134;s:16:\"single_user_site\";i:-33796979;s:7:\"updates\";i:-253838876;s:28:\"has_file_system_write_access\";i:-33796979;s:21:\"is_version_controlled\";i:734881840;s:10:\"taxonomies\";i:-845671520;s:10:\"post_types\";i:-689890888;s:18:\"post_type_features\";i:-302666180;s:10:\"shortcodes\";i:1879688103;s:27:\"rest_api_allowed_post_types\";i:741690369;s:32:\"rest_api_allowed_public_metadata\";i:223132457;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:-33796979;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;s:10:\"wp_version\";i:-2003191422;s:11:\"get_plugins\";i:1357261244;s:24:\"get_plugins_action_links\";i:812917843;s:14:\"active_modules\";i:-762631386;s:16:\"hosting_provider\";i:769900095;s:6:\"locale\";i:110763218;s:13:\"site_icon_url\";i:734881840;s:5:\"roles\";i:2074191413;}','yes'),(660,'jetpack_restapi_stats_cache','a:1:{s:32:\"59c18307c148bea94b7395a1a2609224\";a:1:{i:1484764363;O:8:\"stdClass\":3:{s:4:\"date\";s:10:\"2017-01-18\";s:5:\"stats\";O:8:\"stdClass\":19:{s:14:\"visitors_today\";i:5;s:18:\"visitors_yesterday\";i:2;s:8:\"visitors\";i:7;s:11:\"views_today\";i:70;s:15:\"views_yesterday\";i:14;s:14:\"views_best_day\";s:10:\"2017-01-18\";s:20:\"views_best_day_total\";i:70;s:5:\"views\";i:84;s:8:\"comments\";i:1;s:5:\"posts\";i:1;s:14:\"followers_blog\";i:0;s:18:\"followers_comments\";i:0;s:18:\"comments_per_month\";i:0;s:31:\"comments_most_active_recent_day\";s:19:\"2016-12-12 19:47:36\";s:25:\"comments_most_active_time\";s:5:\"19:00\";s:13:\"comments_spam\";i:0;s:10:\"categories\";i:0;s:4:\"tags\";i:0;s:6:\"shares\";i:0;}s:6:\"visits\";O:8:\"stdClass\":3:{s:4:\"unit\";s:3:\"day\";s:6:\"fields\";a:3:{i:0;s:6:\"period\";i:1;s:5:\"views\";i:2;s:8:\"visitors\";}s:4:\"data\";a:2:{i:0;a:3:{i:0;s:10:\"2017-01-17\";i:1;i:14;i:2;i:2;}i:1;a:3:{i:0;s:10:\"2017-01-18\";i:1;i:70;i:2;i:5;}}}}}}','no'),(747,'jetpack_updates_sync_checksum','a:3:{s:13:\"update_themes\";i:511811558;s:14:\"update_plugins\";i:-1979853344;s:11:\"update_core\";i:1544561712;}','yes'),(790,'gmw_options','a:18:{s:6:\"sc_map\";s:3:\"gmw\";s:7:\"api_key\";s:0:\"\";s:8:\"track_ga\";s:1:\"0\";s:14:\"include_jquery\";s:1:\"1\";s:17:\"include_gmaps_api\";s:1:\"1\";s:19:\"include_lightbox_js\";s:1:\"1\";s:20:\"include_lightbox_css\";s:1:\"1\";s:16:\"disable_tooltips\";s:1:\"0\";s:15:\"disable_sidebar\";s:1:\"0\";s:15:\"activation_code\";s:0:\"\";s:14:\"license_active\";s:0:\"\";s:15:\"license_expires\";s:0:\"\";s:12:\"license_type\";s:0:\"\";s:13:\"first_version\";s:4:\"3.49\";s:13:\"first_install\";i:1484690214;s:13:\"last_tracking\";b:0;s:17:\"first_install_gmt\";i:1484690214;s:23:\"dismiss_notice_upgrade2\";b:1;}','yes'),(795,'widget_googlemapswidget','a:3:{i:2;a:31:{s:5:\"title\";s:3:\"Map\";s:7:\"address\";s:69:\"Standard Cycle Company, 57 Industrial Rd, Berkeley Heights, NJ 07922\";s:14:\"thumb_pin_type\";s:10:\"predefined\";s:15:\"thumb_pin_color\";s:7:\"#ff0000\";s:14:\"thumb_pin_size\";s:7:\"default\";s:15:\"thumb_pin_label\";s:1:\"A\";s:13:\"thumb_pin_img\";s:0:\"\";s:11:\"thumb_width\";i:250;s:12:\"thumb_height\";i:250;s:10:\"thumb_zoom\";s:2:\"13\";s:10:\"thumb_type\";s:7:\"roadmap\";s:15:\"thumb_link_type\";s:8:\"lightbox\";s:10:\"thumb_link\";s:0:\"\";s:12:\"thumb_header\";s:0:\"\";s:12:\"thumb_footer\";s:0:\"\";s:18:\"thumb_color_scheme\";s:3:\"new\";s:12:\"thumb_format\";s:3:\"png\";s:10:\"thumb_lang\";s:2:\"en\";s:16:\"thumb_powered_by\";s:1:\"0\";s:19:\"lightbox_fullscreen\";i:0;s:14:\"lightbox_width\";i:550;s:15:\"lightbox_height\";i:550;s:13:\"lightbox_mode\";s:5:\"place\";s:17:\"lightbox_map_type\";s:7:\"roadmap\";s:13:\"lightbox_zoom\";s:2:\"14\";s:16:\"lightbox_feature\";a:1:{i:0;s:13:\"overlay_close\";}s:15:\"lightbox_header\";s:0:\"\";s:15:\"lightbox_footer\";s:0:\"\";s:13:\"lightbox_skin\";s:5:\"light\";s:13:\"lightbox_lang\";s:2:\"en\";s:8:\"core_ver\";s:4:\"3.49\";}i:3;a:31:{s:5:\"title\";s:3:\"Map\";s:7:\"address\";s:44:\"57 Industrial Rd, Berkeley Heights, NJ 07922\";s:14:\"thumb_pin_type\";s:10:\"predefined\";s:15:\"thumb_pin_color\";s:7:\"#ff0000\";s:14:\"thumb_pin_size\";s:7:\"default\";s:15:\"thumb_pin_label\";s:1:\"A\";s:13:\"thumb_pin_img\";s:0:\"\";s:11:\"thumb_width\";i:250;s:12:\"thumb_height\";i:250;s:10:\"thumb_zoom\";s:2:\"13\";s:10:\"thumb_type\";s:7:\"roadmap\";s:15:\"thumb_link_type\";s:8:\"lightbox\";s:10:\"thumb_link\";s:0:\"\";s:12:\"thumb_header\";s:0:\"\";s:12:\"thumb_footer\";s:0:\"\";s:18:\"thumb_color_scheme\";s:3:\"new\";s:12:\"thumb_format\";s:3:\"png\";s:10:\"thumb_lang\";s:2:\"en\";s:16:\"thumb_powered_by\";s:1:\"0\";s:19:\"lightbox_fullscreen\";i:0;s:14:\"lightbox_width\";i:550;s:15:\"lightbox_height\";i:550;s:13:\"lightbox_mode\";s:5:\"place\";s:17:\"lightbox_map_type\";s:7:\"roadmap\";s:13:\"lightbox_zoom\";s:2:\"14\";s:16:\"lightbox_feature\";a:1:{i:0;s:13:\"overlay_close\";}s:15:\"lightbox_header\";s:0:\"\";s:15:\"lightbox_footer\";s:0:\"\";s:13:\"lightbox_skin\";s:5:\"light\";s:13:\"lightbox_lang\";s:2:\"en\";s:8:\"core_ver\";s:4:\"3.49\";}s:12:\"_multiwidget\";i:1;}','yes'),(1067,'theme_mods_pub/minileven','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(2966,'jetpack-twitter-cards-site-tag','','yes'),(3023,'open_graph_protocol_site_type','','yes'),(3024,'facebook_admins','a:0:{}','yes'),(4002,'free-cdn','a:6:{s:7:\"version\";s:5:\"1.0.2\";s:5:\"apply\";a:5:{s:3:\"css\";b:1;s:2:\"js\";b:1;s:3:\"img\";b:1;s:3:\"bgr\";b:1;s:5:\"embed\";b:1;}s:8:\"excluded\";a:0:{}s:8:\"included\";a:0:{}s:7:\"powered\";b:1;s:5:\"debug\";b:0;}','yes'),(4014,'wdev-frash','a:3:{s:7:\"plugins\";a:1:{s:23:\"wp-smushit/wp-smush.php\";i:1484860113;}s:5:\"queue\";a:2:{s:32:\"7de3619981caadc55f30a002bfb299f6\";a:3:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:5:\"email\";s:7:\"show_at\";i:1513113198;}s:32:\"fc50097023d0d34c5a66f6cddcf77694\";a:4:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:4:\"rate\";s:7:\"show_at\";i:1485464913;s:6:\"sticky\";b:1;}}s:4:\"done\";a:0:{}}','no'),(4015,'wp-smush-version','2.5.3','no'),(4018,'wp-smush-skip-redirect','1','no'),(4027,'wp-smush-hide_smush_welcome','1','no'),(4028,'wp-smush-networkwide','0','no'),(4029,'wp-smush-auto','1','no'),(4030,'wp-smush-keep_exif','0','no'),(4031,'wp-smush-resize','1','no'),(4032,'wp-smush-lossy','0','no'),(4033,'wp-smush-original','0','no'),(4034,'wp-smush-backup','0','no'),(4035,'wp-smush-png_to_jpg','0','no'),(4036,'wp-smush-image_sizes','a:11:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:5:\"large\";i:3;s:15:\"illdy-blog-list\";i:4;s:25:\"illdy-widget-recent-posts\";i:5;s:32:\"illdy-blog-post-related-articles\";i:6;s:28:\"illdy-front-page-latest-news\";i:7;s:29:\"illdy-front-page-testimonials\";i:8;s:25:\"illdy-front-page-projects\";i:9;s:23:\"illdy-front-page-person\";i:10;s:12:\"medium_large\";}','no'),(4037,'wp-smush-resize_sizes','a:2:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;}','no'),(4039,'wp-smush-install-type','new','no'),(4040,'wp-smush-hide_upgrade_notice','1','no'),(6098,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6099,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6100,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6101,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6126,'wpcom_publish_posts_with_markdown','1','yes'),(6127,'jetpack_sitemap_post_types','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(6129,'widget_illdy_home_parallax','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6130,'widget_illdy_testimonial','a:5:{s:12:\"_multiwidget\";i:1;i:3;a:3:{s:4:\"name\";s:21:\"Lyndyn-Andrew Kraemer\";s:5:\"image\";s:107:\"http://stdcycle.com/company/wp-content/uploads/2017/12/23926521_10214080229976585_5248431867514772720_o.jpg\";s:11:\"testimonial\";s:374:\" Mike and the rest of the crew at Standard are top notch. Had a great experience getting my bike dyno tuned here. Mike was able to extract more power with a far smoother power curve than the previous tune (tuned elsewhere). The bike is now so smooth when part-throttle and an animal when wide open! Strongly recommend for your tuning/service/performance needs! \";}i:4;a:3:{s:4:\"name\";s:15:\"Ralphie Navarro\";s:5:\"image\";s:106:\"http://stdcycle.com/company/wp-content/uploads/2017/12/13912383_1164651266890690_1998315972983036630_n.jpg\";s:11:\"testimonial\";s:106:\" Unparalleled service! These guys love what they do! My favorite shop in New Jersey \";}i:5;a:3:{s:4:\"name\";s:13:\"Tommy Patrick\";s:5:\"image\";s:107:\"http://stdcycle.com/company/wp-content/uploads/2017/12/23754972_10214650260399770_4570799565458552881_n.jpg\";s:11:\"testimonial\";s:183:\" Hands down the best shop in the area. I wouldn\'t go anywhere else. Mike and his crew nail it when it comes to professionalism and craftsmanship. Highly recommend this shop. \";}i:6;a:3:{s:4:\"name\";s:16:\"David Reeves Jr.\";s:5:\"image\";s:105:\"http://stdcycle.com/company/wp-content/uploads/2017/12/21149904_342569792862743_1602079038607528451_n.jpg\";s:11:\"testimonial\";s:115:\" I\'ve been dealing with Mike since 2003 and I don\'t want anybody else touching my bike but him and his crew. \";}}','yes'),(6131,'widget_eu_cookie_law_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6132,'widget_flickr','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6133,'widget_internet_defense_league_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6134,'widget_widget_mailchimp_subscriber_popup','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6154,'jetpack_sitemap_location','','yes'),(6157,'jetpack_plugin_api_action_links','a:1:{s:19:\"jetpack/jetpack.php\";a:3:{s:7:\"Jetpack\";s:59:\"http://stdcycle.com/company/wp-admin/admin.php?page=jetpack\";s:8:\"Settings\";s:69:\"http://stdcycle.com/company/wp-admin/admin.php?page=jetpack#/settings\";s:7:\"Support\";s:68:\"http://stdcycle.com/company/wp-admin/admin.php?page=jetpack-debugger\";}}','yes'),(6173,'jetpack-sitemap-state','a:5:{s:12:\"sitemap-type\";s:10:\"jp_sitemap\";s:10:\"last-added\";i:0;s:6:\"number\";i:0;s:13:\"last-modified\";s:19:\"1970-01-01 00:00:00\";s:3:\"max\";a:0:{}}','yes'),(6219,'smush_global_stats','a:9:{s:11:\"size_before\";i:593787;s:10:\"size_after\";i:575851;s:7:\"percent\";d:3;s:5:\"human\";s:7:\"17.5 KB\";s:5:\"bytes\";i:17936;s:12:\"total_images\";i:22;s:14:\"resize_savings\";i:0;s:12:\"resize_count\";i:0;s:18:\"conversion_savings\";i:0;}','no'),(6240,'illdy_backup_settings','299','yes'),(6309,'_transient_timeout_jetpack_file_data_5.5','1515531478','no'),(6310,'_transient_jetpack_file_data_5.5','a:55:{s:32:\"31e5b9ae08b62c2b0cd8a7792242298b\";a:14:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:39:\"Check your spelling, style, and grammar\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"6\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:115:\"after the deadline, afterthedeadline, spell, spellchecker, spelling, grammar, proofreading, style, language, cliche\";}s:32:\"e1c539d5b392f5a1709dada3da5793cc\";a:14:{s:4:\"name\";s:13:\"Comment Likes\";s:11:\"description\";s:64:\"Increase visitor engagement by adding a Like button to comments.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"39\";s:20:\"recommendation_order\";s:2:\"17\";s:10:\"introduced\";s:3:\"5.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:37:\"like widget, like button, like, likes\";}s:32:\"c6ebb418dde302de09600a6025370583\";a:14:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:80:\"Let readers use WordPress.com, Twitter, Facebook, or Google+ accounts to comment\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";}s:32:\"836f9485669e1bbb02920cb474730df0\";a:14:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:57:\"Insert a customizable contact form anywhere on your site.\";s:14:\"jumpstart_desc\";s:111:\"Adds a button to your post and page editors, allowing you to build simple forms to help visitors stay in touch.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:18:\"Writing, Jumpstart\";s:25:\"additional_search_queries\";s:44:\"contact, form, grunion, feedback, submission\";}s:32:\"ea3970eebf8aac55fc3eca5dca0e0157\";a:14:{s:4:\"name\";s:20:\"Custom content types\";s:11:\"description\";s:74:\"Display different types of content on your site with custom content types.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";}s:32:\"d2bb05ccad3d8789df40ca3abb97336c\";a:14:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:53:\"Tweak your site’s CSS without modifying your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";}s:32:\"a2064eec5b9c7e0d816af71dee7a715f\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"53a4ec755022ef3953699734c343da02\";a:14:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";}s:32:\"e1f1f6e3689fc31c477e64b06e2f8fbf\";a:14:{s:4:\"name\";s:16:\"Google Analytics\";s:11:\"description\";s:56:\"Set up Google Analytics without touching a line of code.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"37\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"4.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:37:\"webmaster, google, analytics, console\";}s:32:\"72fecb67ee6704ba0a33e0225316ad06\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"d56e2886185a9eace719cc57d46770df\";a:14:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:14:\"jumpstart_desc\";s:131:\"Let commenters link their profiles to their Gravatar accounts, making it easy for your visitors to learn more about your community.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";}s:32:\"e391e760617bd0e0736550e34a73d7fe\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:8:\"2.0.3 ??\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"2e345370766346c616b3c5046e817720\";a:14:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:53:\"Automatically load new content when a visitor scrolls\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";}s:32:\"bd69edbf134de5fae8fdcf2e70a45b56\";a:14:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:51:\"Allow applications to securely access your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";}s:32:\"8110b7a4423aaa619dfa46b8843e10d1\";a:14:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:57:\"Use LaTeX markup for complex equations and other geekery.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";}s:32:\"fd7e85d3b4887fa6b6f997d6592c1f33\";a:14:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:63:\"Give visitors an easy way to show they appreciate your content.\";s:14:\"jumpstart_desc\";s:63:\"Give visitors an easy way to show they appreciate your content.\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";}s:32:\"c5dfef41fad5bcdcaae8e315e5cfc420\";a:14:{s:4:\"name\";s:6:\"Manage\";s:11:\"description\";s:54:\"Manage all of your sites from a centralized dashboard.\";s:14:\"jumpstart_desc\";s:151:\"Helps you remotely manage plugins, turn on automated updates, and more from <a href=\"https://wordpress.com/plugins/\" target=\"_blank\">wordpress.com</a>.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"3\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:35:\"Centralized Management, Recommended\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:26:\"manage, management, remote\";}s:32:\"fd6dc399b92bce76013427e3107c314f\";a:14:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:50:\"Write posts or pages in plain-text Markdown syntax\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";}s:32:\"614679778a7db6d8129c9f69ac8e10a5\";a:14:{s:4:\"name\";s:21:\"WordPress.com Toolbar\";s:11:\"description\";s:91:\"Replaces the admin bar with a useful toolbar to quickly manage your site via WordPress.com.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"16\";s:10:\"introduced\";s:3:\"4.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"General\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:19:\"adminbar, masterbar\";}s:32:\"c49a35b6482b0426cb07ad28ecf5d7df\";a:14:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:31:\"Enable the Jetpack Mobile theme\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";}s:32:\"b42e38f6fafd2e4104ebe5bf39b4be47\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"771cfeeba0d3d23ec344d5e781fb0ae2\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"54f0661d27c814fc8bde39580181d939\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"46c4c413b5c72bbd3c3dbd14ff8f8adc\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"9ea52fa25783e5ceeb6bfaed3268e64e\";a:14:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";s:14:\"jumpstart_desc\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:37:\"monitor, uptime, downtime, monitoring\";}s:32:\"cfcaafd0fcad087899d715e0b877474d\";a:14:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:57:\"Receive instant notifications of site comments and likes.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";}s:32:\"0d18bfa69bec61550c1d813ce64149b0\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"3f0a11e23118f0788d424b646a6d465f\";a:14:{s:4:\"name\";s:6:\"Photon\";s:11:\"description\";s:26:\"Speed up images and photos\";s:14:\"jumpstart_desc\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:34:\"Recommended, Jumpstart, Appearance\";s:25:\"additional_search_queries\";s:38:\"photon, image, cdn, performance, speed\";}s:32:\"e37cfbcb72323fb1fe8255a2edb4d738\";a:14:{s:4:\"name\";s:13:\"Post by email\";s:11:\"description\";s:33:\"Publish posts by sending an email\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";}s:32:\"728290d131a480bfe7b9e405d7cd925f\";a:14:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:41:\"Block suspicious-looking sign in activity\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:65:\"security, secure, protection, botnet, brute force, protect, login\";}s:32:\"f9ce784babbbf4dcca99b8cd2ceb420c\";a:14:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:27:\"Automated social marketing.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:107:\"facebook, twitter, google+, googleplus, google, path, tumblr, linkedin, social, tweet, connections, sharing\";}s:32:\"052c03877dd3d296a71531cb07ad939a\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"52edecb2a75222e75b2dce4356a4efce\";a:14:{s:4:\"name\";s:13:\"Related posts\";s:11:\"description\";s:64:\"Increase page views by showing related content to your visitors.\";s:14:\"jumpstart_desc\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:22:\"related, related posts\";}s:32:\"fe7a38addc9275dcbe6c4ff6c44a9350\";a:14:{s:4:\"name\";s:6:\"Search\";s:11:\"description\";s:41:\"Enhanced search, powered by Elasticsearch\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:6:\"Search\";s:25:\"additional_search_queries\";s:6:\"search\";}s:32:\"68b0d01689803c0ea7e4e60a86de2519\";a:14:{s:4:\"name\";s:9:\"SEO Tools\";s:11:\"description\";s:50:\"Better results on search engines and social media.\";s:14:\"jumpstart_desc\";s:50:\"Better results on search engines and social media.\";s:4:\"sort\";s:2:\"35\";s:20:\"recommendation_order\";s:2:\"15\";s:10:\"introduced\";s:3:\"4.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:18:\"Traffic, Jumpstart\";s:25:\"additional_search_queries\";s:81:\"search engine optimization, social preview, meta description, custom title format\";}s:32:\"8b059cb50a66b717f1ec842e736b858c\";a:14:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:37:\"Allow visitors to share your content.\";s:14:\"jumpstart_desc\";s:116:\"Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:141:\"share, sharing, sharedaddy, buttons, icons, email, facebook, twitter, google+, linkedin, pinterest, pocket, press this, print, reddit, tumblr\";}s:32:\"a6d2394329871857401255533a9873f7\";a:14:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:50:\"Embed media from popular sites without any coding.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:236:\"shortcodes, shortcode, embeds, media, bandcamp, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";}s:32:\"21496e2897ea5f81605e2f2ac3beb921\";a:14:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:54:\"Create short and simple links for all posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";}s:32:\"e2a54a5d7879a4162709e6ffb540dd08\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"f5c537bc304f55b29c1a87e30be0cd24\";a:14:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:50:\"Make it easy for search engines to find your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";}s:32:\"59a23643437358a9b557f1d1e20ab040\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"6a90f97c3194cfca5671728eaaeaf15e\";a:14:{s:4:\"name\";s:14:\"Single Sign On\";s:11:\"description\";s:62:\"Allow users to log into this site using WordPress.com accounts\";s:14:\"jumpstart_desc\";s:98:\"Lets you log in to all your Jetpack-enabled sites with one click using your WordPress.com account.\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";}s:32:\"b65604e920392e2f7134b646760b75e8\";a:14:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:44:\"Collect valuable traffic stats and insights.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:23:\"Site Stats, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";}s:32:\"23a586dd7ead00e69ec53eb32ef740e4\";a:14:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:87:\"Allow users to subscribe to your posts and comments and receive notifications via email\";s:14:\"jumpstart_desc\";s:126:\"Give visitors two easy subscription options — while commenting, or via a separate email subscription widget you can display.\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";}s:32:\"1d978b8d84d2f378fe1a702a67633b6d\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"b3b983461d7f3d27322a3551ed8a9405\";a:14:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:14:\"jumpstart_desc\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";}s:32:\"d924e5b05722b0e104448543598f54c0\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"36741583b10c521997e563ad8e1e8b77\";a:14:{s:4:\"name\";s:12:\"Data Backups\";s:11:\"description\";s:54:\"Off-site backups, security scans, and automatic fixes.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:16:\"Security, Health\";s:25:\"additional_search_queries\";s:28:\"vaultpress, backup, security\";}s:32:\"2b9b44f09b5459617d68dd82ee17002a\";a:14:{s:4:\"name\";s:17:\"Site verification\";s:11:\"description\";s:58:\"Establish your site\'s authenticity with external services.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";}s:32:\"5ab4c0db7c42e10e646342da0274c491\";a:14:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:27:\"Fast, ad-free video hosting\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:25:\"video, videos, videopress\";}s:32:\"60a1d3aa38bc0fe1039e59dd60888543\";a:14:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:42:\"Control where widgets appear on your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";}s:32:\"174ed3416476c2cb9ff5b0f671280b15\";a:14:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:54:\"Add images, Twitter streams, and more to your sidebar.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";}s:32:\"a668bc9418d6de87409f867892fcdd7f\";a:14:{s:4:\"name\";s:3:\"Ads\";s:11:\"description\";s:60:\"Earn income by allowing Jetpack to display high quality ads.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"4.5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Traffic, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:26:\"advertising, ad codes, ads\";}s:32:\"28b931a1db19bd24869bd54b14e733d5\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"3f41b2d629265b5de8108b463abbe8e2\";a:14:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:75:\"Display images and galleries in a gorgeous, full-screen browsing experience\";s:14:\"jumpstart_desc\";s:79:\"Brings your photos and images to life as full-size, easily navigable galleries.\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";}}','no'),(6424,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6475,'_transient_timeout_jetpack_file_data_5.6','1515533666','no'),(6476,'_transient_jetpack_file_data_5.6','a:57:{s:32:\"31e5b9ae08b62c2b0cd8a7792242298b\";a:14:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:39:\"Check your spelling, style, and grammar\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"6\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:115:\"after the deadline, afterthedeadline, spell, spellchecker, spelling, grammar, proofreading, style, language, cliche\";}s:32:\"3f41b2d629265b5de8108b463abbe8e2\";a:14:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:75:\"Display images and galleries in a gorgeous, full-screen browsing experience\";s:14:\"jumpstart_desc\";s:79:\"Brings your photos and images to life as full-size, easily navigable galleries.\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";}s:32:\"e1c539d5b392f5a1709dada3da5793cc\";a:14:{s:4:\"name\";s:13:\"Comment Likes\";s:11:\"description\";s:64:\"Increase visitor engagement by adding a Like button to comments.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"39\";s:20:\"recommendation_order\";s:2:\"17\";s:10:\"introduced\";s:3:\"5.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:37:\"like widget, like button, like, likes\";}s:32:\"c6ebb418dde302de09600a6025370583\";a:14:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:80:\"Let readers use WordPress.com, Twitter, Facebook, or Google+ accounts to comment\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";}s:32:\"836f9485669e1bbb02920cb474730df0\";a:14:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:57:\"Insert a customizable contact form anywhere on your site.\";s:14:\"jumpstart_desc\";s:111:\"Adds a button to your post and page editors, allowing you to build simple forms to help visitors stay in touch.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:18:\"Writing, Jumpstart\";s:25:\"additional_search_queries\";s:44:\"contact, form, grunion, feedback, submission\";}s:32:\"ea3970eebf8aac55fc3eca5dca0e0157\";a:14:{s:4:\"name\";s:20:\"Custom content types\";s:11:\"description\";s:74:\"Display different types of content on your site with custom content types.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";}s:32:\"d2bb05ccad3d8789df40ca3abb97336c\";a:14:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:53:\"Tweak your site’s CSS without modifying your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";}s:32:\"a2064eec5b9c7e0d816af71dee7a715f\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"53a4ec755022ef3953699734c343da02\";a:14:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";}s:32:\"e1f1f6e3689fc31c477e64b06e2f8fbf\";a:14:{s:4:\"name\";s:16:\"Google Analytics\";s:11:\"description\";s:56:\"Set up Google Analytics without touching a line of code.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"37\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"4.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:37:\"webmaster, google, analytics, console\";}s:32:\"72fecb67ee6704ba0a33e0225316ad06\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"d56e2886185a9eace719cc57d46770df\";a:14:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:14:\"jumpstart_desc\";s:131:\"Let commenters link their profiles to their Gravatar accounts, making it easy for your visitors to learn more about your community.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";}s:32:\"e391e760617bd0e0736550e34a73d7fe\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:8:\"2.0.3 ??\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"2e345370766346c616b3c5046e817720\";a:14:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:53:\"Automatically load new content when a visitor scrolls\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";}s:32:\"bd69edbf134de5fae8fdcf2e70a45b56\";a:14:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:51:\"Allow applications to securely access your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";}s:32:\"8110b7a4423aaa619dfa46b8843e10d1\";a:14:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:57:\"Use LaTeX markup for complex equations and other geekery.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";}s:32:\"f868c97c313f21b23fa6d6c64505fab6\";a:14:{s:4:\"name\";s:11:\"Lazy Images\";s:11:\"description\";s:71:\"Improve performance by loading images just before they scroll into view\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:5:\"5.6.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:23:\"Appearance, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:26:\"mobile, theme, performance\";}s:32:\"fd7e85d3b4887fa6b6f997d6592c1f33\";a:14:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:63:\"Give visitors an easy way to show they appreciate your content.\";s:14:\"jumpstart_desc\";s:63:\"Give visitors an easy way to show they appreciate your content.\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";}s:32:\"c5dfef41fad5bcdcaae8e315e5cfc420\";a:14:{s:4:\"name\";s:6:\"Manage\";s:11:\"description\";s:54:\"Manage all of your sites from a centralized dashboard.\";s:14:\"jumpstart_desc\";s:151:\"Helps you remotely manage plugins, turn on automated updates, and more from <a href=\"https://wordpress.com/plugins/\" target=\"_blank\">wordpress.com</a>.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"3\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:35:\"Centralized Management, Recommended\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:26:\"manage, management, remote\";}s:32:\"fd6dc399b92bce76013427e3107c314f\";a:14:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:50:\"Write posts or pages in plain-text Markdown syntax\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";}s:32:\"614679778a7db6d8129c9f69ac8e10a5\";a:14:{s:4:\"name\";s:21:\"WordPress.com Toolbar\";s:11:\"description\";s:91:\"Replaces the admin bar with a useful toolbar to quickly manage your site via WordPress.com.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"16\";s:10:\"introduced\";s:3:\"4.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"General\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:19:\"adminbar, masterbar\";}s:32:\"c49a35b6482b0426cb07ad28ecf5d7df\";a:14:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:31:\"Enable the Jetpack Mobile theme\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";}s:32:\"b42e38f6fafd2e4104ebe5bf39b4be47\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"771cfeeba0d3d23ec344d5e781fb0ae2\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"54f0661d27c814fc8bde39580181d939\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"46c4c413b5c72bbd3c3dbd14ff8f8adc\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"9ea52fa25783e5ceeb6bfaed3268e64e\";a:14:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";s:14:\"jumpstart_desc\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:37:\"monitor, uptime, downtime, monitoring\";}s:32:\"cfcaafd0fcad087899d715e0b877474d\";a:14:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:57:\"Receive instant notifications of site comments and likes.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";}s:32:\"0d18bfa69bec61550c1d813ce64149b0\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"3f0a11e23118f0788d424b646a6d465f\";a:14:{s:4:\"name\";s:6:\"Photon\";s:11:\"description\";s:26:\"Speed up images and photos\";s:14:\"jumpstart_desc\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:34:\"Recommended, Jumpstart, Appearance\";s:25:\"additional_search_queries\";s:38:\"photon, image, cdn, performance, speed\";}s:32:\"e37cfbcb72323fb1fe8255a2edb4d738\";a:14:{s:4:\"name\";s:13:\"Post by email\";s:11:\"description\";s:33:\"Publish posts by sending an email\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";}s:32:\"728290d131a480bfe7b9e405d7cd925f\";a:14:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:41:\"Block suspicious-looking sign in activity\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:65:\"security, secure, protection, botnet, brute force, protect, login\";}s:32:\"f9ce784babbbf4dcca99b8cd2ceb420c\";a:14:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:27:\"Automated social marketing.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:107:\"facebook, twitter, google+, googleplus, google, path, tumblr, linkedin, social, tweet, connections, sharing\";}s:32:\"83622cd43b5e31bb82e59a9d52e9bb10\";a:14:{s:4:\"name\";s:20:\"Progressive Web Apps\";s:11:\"description\";s:85:\"Speed up and improve the reliability of your site using the latest in web technology.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"18\";s:10:\"introduced\";s:5:\"5.6.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:26:\"manifest, pwa, progressive\";}s:32:\"052c03877dd3d296a71531cb07ad939a\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"52edecb2a75222e75b2dce4356a4efce\";a:14:{s:4:\"name\";s:13:\"Related posts\";s:11:\"description\";s:64:\"Increase page views by showing related content to your visitors.\";s:14:\"jumpstart_desc\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:22:\"related, related posts\";}s:32:\"fe7a38addc9275dcbe6c4ff6c44a9350\";a:14:{s:4:\"name\";s:6:\"Search\";s:11:\"description\";s:41:\"Enhanced search, powered by Elasticsearch\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:6:\"Search\";s:25:\"additional_search_queries\";s:6:\"search\";}s:32:\"68b0d01689803c0ea7e4e60a86de2519\";a:14:{s:4:\"name\";s:9:\"SEO Tools\";s:11:\"description\";s:50:\"Better results on search engines and social media.\";s:14:\"jumpstart_desc\";s:50:\"Better results on search engines and social media.\";s:4:\"sort\";s:2:\"35\";s:20:\"recommendation_order\";s:2:\"15\";s:10:\"introduced\";s:3:\"4.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:18:\"Traffic, Jumpstart\";s:25:\"additional_search_queries\";s:81:\"search engine optimization, social preview, meta description, custom title format\";}s:32:\"8b059cb50a66b717f1ec842e736b858c\";a:14:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:37:\"Allow visitors to share your content.\";s:14:\"jumpstart_desc\";s:116:\"Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:141:\"share, sharing, sharedaddy, buttons, icons, email, facebook, twitter, google+, linkedin, pinterest, pocket, press this, print, reddit, tumblr\";}s:32:\"a6d2394329871857401255533a9873f7\";a:14:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:50:\"Embed media from popular sites without any coding.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:236:\"shortcodes, shortcode, embeds, media, bandcamp, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";}s:32:\"21496e2897ea5f81605e2f2ac3beb921\";a:14:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:54:\"Create short and simple links for all posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";}s:32:\"e2a54a5d7879a4162709e6ffb540dd08\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"f5c537bc304f55b29c1a87e30be0cd24\";a:14:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:50:\"Make it easy for search engines to find your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";}s:32:\"59a23643437358a9b557f1d1e20ab040\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"6a90f97c3194cfca5671728eaaeaf15e\";a:14:{s:4:\"name\";s:14:\"Single Sign On\";s:11:\"description\";s:62:\"Allow users to log into this site using WordPress.com accounts\";s:14:\"jumpstart_desc\";s:98:\"Lets you log in to all your Jetpack-enabled sites with one click using your WordPress.com account.\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";}s:32:\"b65604e920392e2f7134b646760b75e8\";a:14:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:44:\"Collect valuable traffic stats and insights.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:23:\"Site Stats, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";}s:32:\"23a586dd7ead00e69ec53eb32ef740e4\";a:14:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:87:\"Allow users to subscribe to your posts and comments and receive notifications via email\";s:14:\"jumpstart_desc\";s:126:\"Give visitors two easy subscription options — while commenting, or via a separate email subscription widget you can display.\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";}s:32:\"1d978b8d84d2f378fe1a702a67633b6d\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"b3b983461d7f3d27322a3551ed8a9405\";a:14:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:14:\"jumpstart_desc\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";}s:32:\"d924e5b05722b0e104448543598f54c0\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}s:32:\"36741583b10c521997e563ad8e1e8b77\";a:14:{s:4:\"name\";s:12:\"Data Backups\";s:11:\"description\";s:54:\"Off-site backups, security scans, and automatic fixes.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:16:\"Security, Health\";s:25:\"additional_search_queries\";s:28:\"vaultpress, backup, security\";}s:32:\"2b9b44f09b5459617d68dd82ee17002a\";a:14:{s:4:\"name\";s:17:\"Site verification\";s:11:\"description\";s:58:\"Establish your site\'s authenticity with external services.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";}s:32:\"5ab4c0db7c42e10e646342da0274c491\";a:14:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:27:\"Fast, ad-free video hosting\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:25:\"video, videos, videopress\";}s:32:\"60a1d3aa38bc0fe1039e59dd60888543\";a:14:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:42:\"Control where widgets appear on your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";}s:32:\"174ed3416476c2cb9ff5b0f671280b15\";a:14:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:54:\"Add images, Twitter streams, and more to your sidebar.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";}s:32:\"a668bc9418d6de87409f867892fcdd7f\";a:14:{s:4:\"name\";s:3:\"Ads\";s:11:\"description\";s:60:\"Earn income by allowing Jetpack to display high quality ads.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"4.5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Traffic, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:26:\"advertising, ad codes, ads\";}s:32:\"28b931a1db19bd24869bd54b14e733d5\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";}}','no'),(6479,'w3tc_nr_application_id','{\"d41d8cd98f00b204e9800998ecf8427e\":0}','yes'),(6482,'w3tc_state','{\"common.install\":1513028102}','no'),(6485,'w3tc_generic_widgetservices','{\"items\":[{\"name\":\"Premium Support Response (Usually <1h First Response)\",\"parameter_name\":\"field4\",\"parameter_value\":\"Premium Support Response (Usually <1h First Response)\",\"form_hash\":\"m5pom8z0qy59rm\"},{\"name\":\"Performance Audit \\/ Consult (Theme, Plugin, Content, Server)\",\"parameter_name\":\"field4\",\"parameter_value\":\"Performance Audit \\/ Consult (Theme, Plugin, Content, Server)\",\"form_hash\":\"m5pom8z0qy59rm\"},{\"name\":\"Plugin Configuration\",\"parameter_name\":\"field4\",\"parameter_value\":\"Plugin Configuration\",\"form_hash\":\"m5pom8z0qy59rm\"},{\"name\":\"SSL Performance Setup\",\"parameter_name\":\"field4\",\"parameter_value\":\"SSL Performance Setup\",\"form_hash\":\"m5pom8z0qy59rm\"},{\"name\":\"Full Site Delivery Setup\",\"parameter_name\":\"field4\",\"parameter_value\":\"Full Site Delivery Setup\",\"form_hash\":\"m5pom8z0qy59rm\"},{\"name\":\"Hosting Environment Troubleshooting\",\"parameter_name\":\"field4\",\"parameter_value\":\"Hosting Environment Troubleshooting\",\"form_hash\":\"m5pom8z0qy59rm\"},{\"name\":\"Performance Monitoring\",\"parameter_name\":\"field4\",\"parameter_value\":\"Performance Monitoring\",\"form_hash\":\"m5pom8z0qy59rm\"}],\"expires\":1513632905}','no'),(6493,'jetpack_sync_full__started','1513028155','no'),(6494,'jetpack_sync_full__params','a:4:{s:7:\"options\";b:1;s:9:\"functions\";b:1;s:9:\"constants\";b:1;s:5:\"users\";a:1:{i:0;i:1;}}','no'),(6495,'jetpack_sync_full_config','a:4:{s:9:\"constants\";b:1;s:9:\"functions\";b:1;s:7:\"options\";b:1;s:5:\"users\";a:1:{i:0;i:1;}}','no'),(6496,'jetpack_sync_full_enqueue_status','a:4:{s:9:\"constants\";a:3:{i:0;i:1;i:1;i:0;i:2;b:0;}s:9:\"functions\";a:3:{i:0;i:1;i:1;i:0;i:2;b:0;}s:7:\"options\";a:3:{i:0;i:1;i:1;i:0;i:2;b:0;}s:5:\"users\";a:3:{i:0;i:1;i:1;i:0;i:2;b:0;}}','no'),(6504,'jetpack_sync_full__queue_finished','1513028137','yes'),(6531,'jetpack_sync_full__send_started','1513028262','no'),(6532,'jetpack_sync_full__constants_sent','1','no'),(6533,'jetpack_sync_full__functions_sent','1','no'),(6534,'jetpack_sync_full__options_sent','1','no'),(6535,'jetpack_sync_full__users_sent','1','no'),(6536,'jetpack_sync_full__finished','1513028262','no'),(13049,'_transient_timeout_jetpack_https_test_message','1515284679','no'),(13050,'_transient_jetpack_https_test_message','','no'),(13701,'_site_transient_timeout_browser_47ede96189a3ddb933ff59ff0e169d97','1515715033','no'),(13702,'_site_transient_browser_47ede96189a3ddb933ff59ff0e169d97','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"57.0\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:24:\"https://www.firefox.com/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(13703,'_transient_timeout_feed_c7bf915472773300f5d9ffcab9d7b038','1515153435','no'),(13704,'_transient_feed_c7bf915472773300f5d9ffcab9d7b038','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:67:\"\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:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Colorlib\";s:7:\"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:23:\"https://colorlib.com/wp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Probably The Best WordPress Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 04 Jan 2018 22:27:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:30:\"https://wordpress.org/?v=4.9.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:16:{i:0;a:6:{s:4:\"data\";s:42:\"\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:51:\"20 Highly Customizable Video Website Templates 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://colorlib.com/wp/video-website-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://colorlib.com/wp/video-website-templates/#comments_reply\";s: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 Jan 2018 19:45:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:17:\"Website 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:\"\";}i:1;a:5:{s:4:\"data\";s:15:\"video 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:\"\";}i:2;a:5:{s:4:\"data\";s:17:\"Website 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:33:\"https://colorlib.com/wp/?p=138716\";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:498:\"<p>Starting from scratch is not a thing anymore since kicking it off with any of the solid video website templates is that much more fun. If you have anything to do with videos, we have a tool that will help…</p>\n<p>The post <a rel=\"nofollow\" href=\"https://colorlib.com/wp/video-website-templates/\" data-wpel-link=\"internal\">20 Highly Customizable Video Website Templates 2018</a> appeared first on <a rel=\"nofollow\" href=\"https://colorlib.com/wp\" data-wpel-link=\"internal\">Colorlib</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"rokr\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://colorlib.com/wp/video-website-templates/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:42:\"\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:52:\"18 Best Free Blog Templates For Inspiring Blogs 2018\";s:7:\"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:44:\"https://colorlib.com/wp/free-blog-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://colorlib.com/wp/free-blog-templates/#comments_reply\";s: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 Jan 2018 19:57: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:3:{i:0;a:5:{s:4:\"data\";s:17:\"Website 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:\"\";}i:1;a:5:{s:4:\"data\";s:14:\"blog 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:\"\";}i:2;a:5:{s:4:\"data\";s:14:\"free 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:33:\"https://colorlib.com/wp/?p=137397\";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:519:\"<p>Instead of doing the work yourself, we hand collected some of the best free blog templates for your creativity to find a home in the online space. With the available resources, building a blog for your personal or business needs…</p>\n<p>The post <a rel=\"nofollow\" href=\"https://colorlib.com/wp/free-blog-templates/\" data-wpel-link=\"internal\">18 Best Free Blog Templates For Inspiring Blogs 2018</a> appeared first on <a rel=\"nofollow\" href=\"https://colorlib.com/wp\" data-wpel-link=\"internal\">Colorlib</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"rokr\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://colorlib.com/wp/free-blog-templates/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:42:\"\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:58:\"20 Best Modern & Responsive Coming Soon Templates 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://colorlib.com/wp/coming-soon-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://colorlib.com/wp/coming-soon-templates/#comments_reply\";s: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 Jan 2018 19:02:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:17:\"Website 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:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"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:\"\";}i:2;a:5:{s:4:\"data\";s:17:\"Website 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:33:\"https://colorlib.com/wp/?p=136919\";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:524:\"<p>With coming soon templates, you can keep your online presence intact or start the hype for something new early. Use these if you are redesigning your current website or you are about to launch a new online project. Keep users…</p>\n<p>The post <a rel=\"nofollow\" href=\"https://colorlib.com/wp/coming-soon-templates/\" data-wpel-link=\"internal\">20 Best Modern & Responsive Coming Soon Templates 2018</a> appeared first on <a rel=\"nofollow\" href=\"https://colorlib.com/wp\" data-wpel-link=\"internal\">Colorlib</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"rokr\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://colorlib.com/wp/coming-soon-templates/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:66:\"\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:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"20 Best Software Company Website Templates For Startups and Enterprises 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://colorlib.com/wp/software-company-website-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://colorlib.com/wp/software-company-website-templates/#comments_reply\";s: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 Jan 2018 07:57: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:8:\"category\";a:11:{i:0;a:5:{s:4:\"data\";s:17:\"Website 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:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"Bootstrap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Business\";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:5:{s:4:\"data\";s:17:\"Business template\";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:5:{s:4:\"data\";s:9:\"Corporate\";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:5:{s:4:\"data\";s:4:\"CSS3\";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:5:{s:4:\"data\";s:4:\"HTML\";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:5:{s:4:\"data\";s:5:\"HTML5\";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:5:{s:4:\"data\";s:15:\"HTML5 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:\"\";}i:9;a:5:{s:4:\"data\";s:2:\"IT\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:10;a:5:{s:4:\"data\";s:16:\"software company\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://colorlib.com/wp/?p=137867\";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:563:\"<p>Softwares changes how we interact and feel with the devices. No matter how great the hardware is without a proper software optimization the device is a waste silicon chip. Users are also constantly in search of better apps to improve…</p>\n<p>The post <a rel=\"nofollow\" href=\"https://colorlib.com/wp/software-company-website-templates/\" data-wpel-link=\"internal\">20 Best Software Company Website Templates For Startups and Enterprises 2018</a> appeared first on <a rel=\"nofollow\" href=\"https://colorlib.com/wp\" data-wpel-link=\"internal\">Colorlib</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Girish Karthik\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://colorlib.com/wp/software-company-website-templates/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:42:\"\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:58:\"Top 18 Free and Popular Contact Form Plugins for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://colorlib.com/wp/free-contact-form-wordpress-plugins/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://colorlib.com/wp/free-contact-form-wordpress-plugins/#view_comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Jan 2018 19:35:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:7:\"Plugins\";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:12:\"Contact Form\";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:12:\"Free Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://colorlib.com/wp/?p=38636\";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:568:\"<p>Whether for a business or a personal blog, communication is an essential key in maintaining a steady flow of support, feedback, sales, and opportunities. However, WordPress, while used by millions of business people and bloggers all around the world, does…</p>\n<p>The post <a rel=\"nofollow\" href=\"https://colorlib.com/wp/free-contact-form-wordpress-plugins/\" data-wpel-link=\"internal\">Top 18 Free and Popular Contact Form Plugins for WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://colorlib.com/wp\" data-wpel-link=\"internal\">Colorlib</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Alex Ivanovs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://colorlib.com/wp/free-contact-form-wordpress-plugins/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:60:\"\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:76:\"20 Best Event Website Templates For All Types Of Events and Conferences 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://colorlib.com/wp/event-website-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://colorlib.com/wp/event-website-templates/#comments_reply\";s: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 Jan 2018 07:57:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:9:{i:0;a:5:{s:4:\"data\";s:17:\"Website 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:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"Bootstrap\";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:19:\"bootstrap 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:\"\";}i:3;a:5:{s:4:\"data\";s:13:\"CSS 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:\"\";}i:4;a:5:{s:4:\"data\";s:4:\"CSS3\";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:5:{s:4:\"data\";s:15:\"Event 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:\"\";}i:6;a:5:{s:4:\"data\";s:4:\"HTML\";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:5:{s:4:\"data\";s:15:\"HTML5 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:\"\";}i:8;a:5:{s:4:\"data\";s:17:\"Website 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:33:\"https://colorlib.com/wp/?p=138208\";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:538:\"<p>Organizing events are never been so easier with the event websites. User from around the world can make their reservations on your site and can pay from their place itself. No more waiting in a long queue. These are the…</p>\n<p>The post <a rel=\"nofollow\" href=\"https://colorlib.com/wp/event-website-templates/\" data-wpel-link=\"internal\">20 Best Event Website Templates For All Types Of Events and Conferences 2018</a> appeared first on <a rel=\"nofollow\" href=\"https://colorlib.com/wp\" data-wpel-link=\"internal\">Colorlib</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Girish Karthik\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://colorlib.com/wp/event-website-templates/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:45:\"\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:49:\"Ultimate Guide to Comment Moderation 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://colorlib.com/wp/guide-comment-moderation-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://colorlib.com/wp/guide-comment-moderation-wordpress/#view_comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 28 Dec 2017 14:46:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:7:\"Plugins\";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:\"Tutorial\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:15:\"Spam Protection\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://colorlib.com/wp/?p=44235\";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:548:\"<p>Communication is key to forming lasting, meaningful relationships with your site visitors. It is the first step to converting a random visitor into a paying customer. It is also a form of delivering value to a visitor. The Reciprocity Rule When…</p>\n<p>The post <a rel=\"nofollow\" href=\"https://colorlib.com/wp/guide-comment-moderation-wordpress/\" data-wpel-link=\"internal\">Ultimate Guide to Comment Moderation in WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://colorlib.com/wp\" data-wpel-link=\"internal\">Colorlib</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Sourav\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://colorlib.com/wp/guide-comment-moderation-wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:48:\"\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:64:\"The Easiest Way to Build a Cryptocurrency Blog [All the Why’s]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://colorlib.com/wp/how-to-build-cryptocurrency-blog/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://colorlib.com/wp/how-to-build-cryptocurrency-blog/#comments_reply\";s: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 Dec 2017 12:28: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:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:10:\"Promotions\";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:7:\"Bitcoin\";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:14:\"create website\";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:5:{s:4:\"data\";s:14:\"Cryptocurrency\";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:5:{s:4:\"data\";s:12:\"make website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://colorlib.com/wp/?p=139175\";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:554:\"<p>“I’ll eat my d**k on national TV if Bitcoin doesn’t surpass $500k in 3 years.” – John McAfee Previously I had certain doubts regarding Bitcoin, I genuinely believed (and I still think so) that it’s a pyramid where only the…</p>\n<p>The post <a rel=\"nofollow\" href=\"https://colorlib.com/wp/how-to-build-cryptocurrency-blog/\" data-wpel-link=\"internal\">The Easiest Way to Build a Cryptocurrency Blog [All the Why’s]</a> appeared first on <a rel=\"nofollow\" href=\"https://colorlib.com/wp\" data-wpel-link=\"internal\">Colorlib</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Aigars\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://colorlib.com/wp/how-to-build-cryptocurrency-blog/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:42:\"\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:65:\"Top 10 Free and Premium Content Syndication Plugins for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://colorlib.com/wp/content-syndication-plugins-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://colorlib.com/wp/content-syndication-plugins-wordpress/#view_comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Dec 2017 21:55:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:7:\"Plugins\";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:\"social sharing\";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:17:\"WordPress plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://colorlib.com/wp/?p=37672\";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:565:\"<p>Coming up with ideas, researching ideas, writing about ideas, and finally publishing ideas, each part of the content creation process is lengthy and requires a lot of energy. Exposing content to new eyes, though, is perhaps the part that takes…</p>\n<p>The post <a rel=\"nofollow\" href=\"https://colorlib.com/wp/content-syndication-plugins-wordpress/\" data-wpel-link=\"internal\">Top 10 Free and Premium Content Syndication Plugins for WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://colorlib.com/wp\" data-wpel-link=\"internal\">Colorlib</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Alex Ivanovs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://colorlib.com/wp/content-syndication-plugins-wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:54:\"\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:91:\"20 Most Popular Business Consulting WordPress Themes To Help Your Business Grow Online 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://colorlib.com/wp/consulting-wordpress-themes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://colorlib.com/wp/consulting-wordpress-themes/#view_comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Dec 2017 09:09:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:7:{i:0;a:5:{s:4:\"data\";s:17:\"Theme Collections\";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:\"Business\";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:9:\"Corporate\";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:5:{s:4:\"data\";s:11:\"full screen\";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:5:{s:4:\"data\";s:7:\"Minimal\";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:5:{s:4:\"data\";s:9:\"Portfolio\";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:5:{s:4:\"data\";s:12:\"Professional\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://colorlib.com/wp/?p=15476\";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:577:\"<p>In the business world, reputation is everything. Indeed, your company’s entire future and profit margin depend on the way you are perceived. That is why firms go out of their way to fund massive public relations departments. The name and…</p>\n<p>The post <a rel=\"nofollow\" href=\"https://colorlib.com/wp/consulting-wordpress-themes/\" data-wpel-link=\"internal\">20 Most Popular Business Consulting WordPress Themes To Help Your Business Grow Online 2017</a> appeared first on <a rel=\"nofollow\" href=\"https://colorlib.com/wp\" data-wpel-link=\"internal\">Colorlib</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Aigars Silkalns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://colorlib.com/wp/consulting-wordpress-themes/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";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:51:\"\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:77:\"40 Best eCommerce WordPress Themes Powered by WooCommerce eStore Toolkit 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://colorlib.com/wp/best-ecommerce-wordpress-themes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://colorlib.com/wp/best-ecommerce-wordpress-themes/#view_comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Dec 2017 07:57:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"eCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:17:\"Theme Collections\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Jigoshop\";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:5:{s:4:\"data\";s:11:\"WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:18:\"WooCommerce 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:\"\";}i:5;a:5:{s:4:\"data\";s:13:\"WP E-commerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://colorlib.com/wp/?p=3122\";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:577:\"<p>You’re looking at a handpicked list of the best eCommerce ready WordPress themes as of today. These themes work with a wide variety of eCommerce plugins such as WooCommerce, WP E-commerce, Jigoshop and others. All these are premium themes with…</p>\n<p>The post <a rel=\"nofollow\" href=\"https://colorlib.com/wp/best-ecommerce-wordpress-themes/\" data-wpel-link=\"internal\">40 Best eCommerce WordPress Themes Powered by WooCommerce eStore Toolkit 2017</a> appeared first on <a rel=\"nofollow\" href=\"https://colorlib.com/wp\" data-wpel-link=\"internal\">Colorlib</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Aigars\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://colorlib.com/wp/best-ecommerce-wordpress-themes/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"113\";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:54:\"\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:76:\"38 Best Responsive WooCommerce WordPress Themes To Build Awesome eStore 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://colorlib.com/wp/woocommerce-wordpress-themes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://colorlib.com/wp/woocommerce-wordpress-themes/#view_comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Dec 2017 06:09:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:7:{i:0;a:5:{s:4:\"data\";s:9:\"eCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:17:\"Theme Collections\";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:9:\"Bootstrap\";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:5:{s:4:\"data\";s:6:\"eStore\";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:5:{s:4:\"data\";s:11:\"Flat Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:11:\"WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:18:\"WooCommerce 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:32:\"https://colorlib.com/wp/?p=10502\";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:572:\"<p>A website is a powerful and cost-effective promotional tool we can use for building relationships with our target customers and showcasing the best features of our product or services. But your website can be more than just a promotional instrument…</p>\n<p>The post <a rel=\"nofollow\" href=\"https://colorlib.com/wp/woocommerce-wordpress-themes/\" data-wpel-link=\"internal\">38 Best Responsive WooCommerce WordPress Themes To Build Awesome eStore 2017</a> appeared first on <a rel=\"nofollow\" href=\"https://colorlib.com/wp\" data-wpel-link=\"internal\">Colorlib</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Aigars\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://colorlib.com/wp/woocommerce-wordpress-themes/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"14\";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:66:\"\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:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"40+ Best WordPress Corporate Business Themes of 2017 For Startups and Medium Sized Companies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://colorlib.com/wp/best-wordpress-business-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://colorlib.com/wp/best-wordpress-business-themes/#view_comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Dec 2017 05:42: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:11:{i:0;a:5:{s:4:\"data\";s:17:\"Theme Collections\";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:9:\"Bootstrap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Business\";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:5:{s:4:\"data\";s:9:\"Corporate\";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:5:{s:4:\"data\";s:9:\"eCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:14:\"local business\";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:5:{s:4:\"data\";s:8:\"One Page\";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:5:{s:4:\"data\";s:8:\"Parallax\";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:5:{s:4:\"data\";s:9:\"Portfolio\";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:5:{s:4:\"data\";s:14:\"small business\";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:5:{s:4:\"data\";s:11:\"WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://colorlib.com/wp/?p=9107\";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:586:\"<p>A website is a powerful online marketing tool that you can use for promoting your business online. Creating a professional business or corporate website these days is never easier, thanks to WordPress. Building a website for a business today is…</p>\n<p>The post <a rel=\"nofollow\" href=\"https://colorlib.com/wp/best-wordpress-business-themes/\" data-wpel-link=\"internal\">40+ Best WordPress Corporate Business Themes of 2017 For Startups and Medium Sized Companies</a> appeared first on <a rel=\"nofollow\" href=\"https://colorlib.com/wp\" data-wpel-link=\"internal\">Colorlib</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Aigars\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://colorlib.com/wp/best-wordpress-business-themes/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"104\";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:48:\"\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:56:\"Top 13 Content Protection Plugins for WordPress 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://colorlib.com/wp/content-protection-plugins-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://colorlib.com/wp/content-protection-plugins-wordpress/#view_comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Dec 2017 00:03:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:7:\"Plugins\";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:\"Content Locker\";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:18:\"Content Protection\";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:5:{s:4:\"data\";s:10:\"Membership\";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:5:{s:4:\"data\";s:15:\"Paid Membership\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://colorlib.com/wp/?p=37655\";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:536:\"<p>Content is what keeps the web alive. Day by day, hundreds of thousands of content pieces make their way into the web. In recent years, protecting the content of websites has become much more popular not only because it helps…</p>\n<p>The post <a rel=\"nofollow\" href=\"https://colorlib.com/wp/content-protection-plugins-wordpress/\" data-wpel-link=\"internal\">Top 13 Content Protection Plugins for WordPress Websites</a> appeared first on <a rel=\"nofollow\" href=\"https://colorlib.com/wp\" data-wpel-link=\"internal\">Colorlib</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Alex Ivanovs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://colorlib.com/wp/content-protection-plugins-wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:45:\"\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:44:\"Top 33 Magazine PSD Mockup Templates in 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://colorlib.com/wp/magazine-mockups-templates-psd/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://colorlib.com/wp/magazine-mockups-templates-psd/#view_comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 24 Dec 2017 08:37:47 +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:4:{i:0;a:5:{s:4:\"data\";s:13:\"PSD 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:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Magazine\";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:\"Mockups\";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:5:{s:4:\"data\";s:3:\"PSD\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://colorlib.com/wp/?p=46960\";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:521:\"<p>With the Internet and the mobile access to the web, most of the population prefer to read news and feature articles online for free. Venturing into print magazine is therefore challenging. The process of going from an idea to a…</p>\n<p>The post <a rel=\"nofollow\" href=\"https://colorlib.com/wp/magazine-mockups-templates-psd/\" data-wpel-link=\"internal\">Top 33 Magazine PSD Mockup Templates in 2017</a> appeared first on <a rel=\"nofollow\" href=\"https://colorlib.com/wp\" data-wpel-link=\"internal\">Colorlib</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Alex Ivanovs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://colorlib.com/wp/magazine-mockups-templates-psd/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:45:\"\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:51:\"20 Top Resume Website Templates For Online CVs 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://colorlib.com/wp/resume-website-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://colorlib.com/wp/resume-website-templates/#view_comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 21 Dec 2017 20: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:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:17:\"Website 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:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Resume\";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:16:\"Resume 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:\"\";}i:3;a:5:{s:4:\"data\";s:17:\"Website 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:33:\"https://colorlib.com/wp/?p=136917\";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:541:\"<p>To make an impression on the employer or potential new clients, you, as the professional, should not be missing building an online presence for yourself with resume website templates. It unlocks a whole new horizon of possibilities which can help…</p>\n<p>The post <a rel=\"nofollow\" href=\"https://colorlib.com/wp/resume-website-templates/\" data-wpel-link=\"internal\">20 Top Resume Website Templates For Online CVs 2017</a> appeared first on <a rel=\"nofollow\" href=\"https://colorlib.com/wp\" data-wpel-link=\"internal\">Colorlib</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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"rokr\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://colorlib.com/wp/resume-website-templates/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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: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:29:\"https://colorlib.com/wp/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:15:{s:4:\"date\";s:29:\"Thu, 04 Jan 2018 23:57:15 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:10:\"set-cookie\";a:2:{i:0;s:129:\"__cfduid=d4c988c4898fd386d7f616d2c81a8e6a21515110235; expires=Fri, 04-Jan-19 23:57:15 GMT; path=/; domain=.colorlib.com; HttpOnly\";i:1;s:38:\"wpfront-notification-bar-landingpage=1\";}s:4:\"vary\";s:15:\"Accept-Encoding\";s:12:\"x-powered-by\";s:41:\"PHP/7.1.12-2+ubuntu16.04.1+deb.sury.org+2\";s:13:\"last-modified\";s:29:\"Thu, 04 Jan 2018 22:27:05 GMT\";s:4:\"etag\";s:36:\"W/\"258016e0558604e15422428354725e36\"\";s:15:\"x-ua-compatible\";s:7:\"IE=edge\";s:12:\"x-robots-tag\";s:15:\"noindex, follow\";s:4:\"link\";s:60:\"<https://colorlib.com/wp/wp-json/>; rel=\"https://api.w.org/\"\";s:14:\"x-kinsta-cache\";s:3:\"HIT\";s:16:\"content-encoding\";s:4:\"gzip\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:6:\"server\";s:16:\"cloudflare-nginx\";s:6:\"cf-ray\";s:20:\"3d822399cf3b37d4-ATL\";}}s:5:\"build\";s:14:\"20130911090210\";}','no'),(13705,'_transient_timeout_feed_mod_c7bf915472773300f5d9ffcab9d7b038','1515153435','no'),(13706,'_transient_feed_mod_c7bf915472773300f5d9ffcab9d7b038','1515110235','no'),(13712,'_site_transient_timeout_community-events-90718353610be1e6f90aa7617775b431','1515153450','no'),(13713,'_site_transient_community-events-90718353610be1e6f90aa7617775b431','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:10:\"72.76.85.0\";}s:6:\"events\";a:5:{i:0;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:67:\"Help Desk - Bring Your Laptop, Yourself and Your WordPress Problems\";s:3:\"url\";s:70:\"https://www.meetup.com/WordPress-North-Jersey-Meetup/events/244549365/\";s:6:\"meetup\";s:29:\"WordPress North Jersey Meetup\";s:10:\"meetup_url\";s:53:\"https://www.meetup.com/WordPress-North-Jersey-Meetup/\";s:4:\"date\";s:19:\"2018-01-08 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:14:\"Montclair, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:40.811279999999996;s:9:\"longitude\";d:-74.219345000000004;}}i:1;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:35:\"WordCamp Montclair Planning Meeting\";s:3:\"url\";s:70:\"https://www.meetup.com/WordPress-North-Jersey-Meetup/events/246012564/\";s:6:\"meetup\";s:29:\"WordPress North Jersey Meetup\";s:10:\"meetup_url\";s:53:\"https://www.meetup.com/WordPress-North-Jersey-Meetup/\";s:4:\"date\";s:19:\"2018-01-15 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:14:\"Montclair, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:40.811279999999996;s:9:\"longitude\";d:-74.219345000000004;}}i:2;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:26:\"Introduction to BuddyPress\";s:3:\"url\";s:70:\"https://www.meetup.com/WordPress-North-Jersey-Meetup/events/246012818/\";s:6:\"meetup\";s:29:\"WordPress North Jersey Meetup\";s:10:\"meetup_url\";s:53:\"https://www.meetup.com/WordPress-North-Jersey-Meetup/\";s:4:\"date\";s:19:\"2018-01-22 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:14:\"Montclair, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:40.811279999999996;s:9:\"longitude\";d:-74.219345000000004;}}i:3;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:67:\"Help Desk - Bring Your Laptop, Yourself and Your WordPress Problems\";s:3:\"url\";s:70:\"https://www.meetup.com/WordPress-North-Jersey-Meetup/events/245539665/\";s:6:\"meetup\";s:29:\"WordPress North Jersey Meetup\";s:10:\"meetup_url\";s:53:\"https://www.meetup.com/WordPress-North-Jersey-Meetup/\";s:4:\"date\";s:19:\"2018-02-12 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:14:\"Montclair, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:40.811279999999996;s:9:\"longitude\";d:-74.219345000000004;}}i:4;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:22:\"WordCamp Lancaster, PA\";s:3:\"url\";s:37:\"https://2018.lancasterpa.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2018-03-03 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:13:\"Lancaster, PA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:40.054489500000003;s:9:\"longitude\";d:-76.282538299999999;}}}}','no'),(13714,'_transient_timeout_jetpack_jitm_260e50652d637d3bc5498d79727615e','1515110556','no'),(13715,'_transient_jetpack_jitm_260e50652d637d3bc5498d79727615e','a:1:{s:18:\"last_response_time\";i:1515110256;}','no'),(13716,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1515153457','no'),(13717,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"\n Thu, 04 Jan 2018 06:37:41 +0000 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"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.0-alpha-42419\";s:7:\"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:36:\"\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 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2018/01/the-month-in-wordpress-december-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 03 Jan 2018 10:00: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:8:\"category\";a:2:{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:\"\";}i:1;a:5:{s:4:\"data\";s:13:\"Uncategorized\";s:7:\"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=5424\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:311:\"Activity slowed down in December in the WordPress community, particularly in the last two weeks. However, the month started off with a big event and work pushed forward in a number of key areas of the project. Read on to find out more about what transpired in the WordPress community as 2017 came to a […]\";s: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:4744:\"\n<p>Activity slowed down in December in the WordPress community, particularly in the last two weeks. However, the month started off with a big event and work pushed forward in a number of key areas of the project. Read on to find out more about what transpired in the WordPress community as 2017 came to a close.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordCamp US 2017 Brings the Community Together</h2>\n\n\n\n<p>The latest edition of <a href=\"https://2017.us.wordcamp.org/\">WordCamp US</a> took place last month in Nashville on December 1-3. The event brought together over 1,400 WordPress enthusiasts from around the world, fostering a deeper, more engaged global community.</p>\n\n\n\n<p>While attending a WordCamp is always a unique experience, you can catch up on <a href=\"https://wordpress.tv/event/wordcamp-us-2017/\">the sessions on WordPress.tv</a> and look through <a href=\"https://www.facebook.com/pg/WordCampUSA/photos/?tab=albums\">the event photos on Facebook</a> to get a feel for how it all happened. Of course, <a href=\"https://wordpress.tv/2017/12/04/matt-mullenweg-state-of-the-word-2017/\">Matt Mullenweg’s State of the Word</a> talk is always one of the highlights at this event.</p>\n\n\n\n<p>The next WordCamp US will be held in Nashville again in 2018, but if you would like to see it hosted in your city in 2019 and 2020, then <a href=\"https://make.wordpress.org/community/2017/12/19/apply-to-host-wordcamp-us-2019-2020/\">you have until February 2 to apply</a>.</p>\n\n\n\n<h2>WordPress User Survey Data Is Published</h2>\n\n\n\n<p>Over the last few years, tens of thousands of WordPress users all over the world have filled out the annual WordPress user survey. The results of that survey are used to improve the WordPress project, but that data has mostly remained private. This has changed now and <a href=\"https://wordpress.org/news/2017/12/wordpress-user-survey-data-for-2015-2017/\">the results from the last three surveys are now publicly available</a> for everyone to analyze.</p>\n\n\n\n<p>The data will be useful to anyone involved in WordPress since it provides a detailed look at who uses WordPress and what they do with it — information that can help inform product development decisions across the board.</p>\n\n\n\n<h2>New WordPress.org Team for the Tide Project</h2>\n\n\n\n<p>As announced at WordCamp US, <a href=\"https://make.wordpress.org/tide/2017/12/02/new-home/\">the Tide project is being brought under the WordPress.org umbrella</a> to be managed and developed by the community.</p>\n\n\n\n<p>Tide is a series of automated tests run against every plugin and theme in the directory to help WordPress users make informed decisions about the plugins and themes that they choose to install.</p>\n\n\n\n<p>To get involved in developing Tide, jump into the #tide channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>, and follow <a href=\"https://make.wordpress.org/tide/\">the Tide team blog</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul>\n <li>If you’re following the development of Gutenberg, or if you want a primer on where it’s headed, then <a href=\"https://wordpress.tv/2017/12/10/morten-rand-hendriksen-gutenberg-and-the-wordpress-of-tomorrow/\">Morten Rand-Hendriksen’s talk from WordCamp US</a> is a must watch.</li>\n <li>The annual surveys for WordPress <a href=\"https://wordpressdotorg.polldaddy.com/s/2017-annual-meetup-member-survey\">meetup members</a> and <a href=\"https://wordpressdotorg.polldaddy.com/s/2017-annual-meetup-organizer-survey\">meetup organizers</a> are available for people to fill out — if you’re involved in or attend your local meetup group then be sure to complete those.</li>\n <li>10up has <a href=\"https://distributorplugin.com/\">a brand new plugin in beta</a> that will assist with powerful and flexible content publishing and syndication across WordPress sites.</li>\n <li><a href=\"https://make.wordpress.org/community/2017/12/07/should-we-change-the-default-wordcamp-theme-to-campsite-2017/\">The Community Team is exploring a move</a> to make the recently developed CampSite theme the default theme for all new WordCamp websites. This is the theme that was developed and employed for <a href=\"https://2017.europe.wordcamp.org\">WordCamp Europe 2017</a>.</li>\n <li>The team working on the multisite features of WordPress Core has recently published <a href=\"https://make.wordpress.org/core/2017/12/19/multisite-roadmap-published/\">their planned roadmap for development</a>.</li>\n</ul>\n\n\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</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:\"5424\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:39:\"\n \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:40:\"WordPress User Survey Data for 2015-2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/news/2017/12/wordpress-user-survey-data-for-2015-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Dec 2017 21:40:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"WrapUp\";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:6:\"survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5310\";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:321:\"For many years, we’ve invited folks to tell us how they use WordPress by filling out an annual survey. In the past, interesting results from this survey have been shared in the annual State of the Word address. This year, for the first time, the results of the 2017 survey are being published on 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:16:\"Andrea Middleton\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:64131:\"<p>For many years, we’ve invited folks to tell us how they use WordPress by filling out an annual survey. In the past, interesting results from this survey have been shared in the annual <a href=\"https://ma.tt/2017/12/state-of-the-word-2017/\">State of the Word</a> address. This year, for the first time, the results of the 2017 survey are being published on WordPress News, along with the results of the 2015 and 2016 survey.</p>\n<p>So that information from the survey doesn’t reveal anything that respondents might consider private, we do not publish a full export of the raw data. We’d love to make this information as accessible as possible, though, so if you have a suggestion for an OS project or tool we can put the data into that allows people to play with it that still protects individual response privacy, please leave a comment on this post!</p>\n<h4>Major Groups</h4>\n<p>This survey features multiple groups, dividing respondents at the first question:</p>\n<blockquote><p>Which of the following best describes how you use WordPress? (<em>Mandatory</em>)</p></blockquote>\n<p>Those who selected “I’m a designer or developer, or I work for a company that designs/develops websites; I use WordPress to build websites and/or blogs for others. (This might include theme development, writing plugins, or other custom work.)” were served questions from what we’ll call the “WordPress Professionals” group.</p>\n<p>This “WordPress Professionals” group is further divided into WordPress Company and WordPress Freelancer/Hobbyist groups, based on how the respondent answered the question, “Which of the following best describes your involvement with WordPress? (2015) / Do you work for a company, or on your own? (2016-17).”</p>\n<p>Those who selected “I own, run, or contribute to a blog or website that is built with WordPress.” were served questions in what we’re calling the “WordPress Users” group.</p>\n<p>The relevant survey group is noted in each table below. In the case of questions that were served to different groups in 2015 but then served to all respondents in 2016 and 2017, the group responses from 2015 have been consolidated into one set of data for easier comparison between years.</p>\n<h4>Survey results</h4>\n<p><a href=\"#pro\">Jump to answers from WordPress Professionals</a></p>\n<p><a href=\"#user\">Jump to answers from WordPress Users</a></p>\n<p><a href=\"#all\">Jump to answers from All Respondents</a></p>\n<p><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></p>\n<h3>Which of the following best describes how you use WordPress? (Mandatory)</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td>Number of responses (since this question was mandatory, the number of responses here is the total number for the survey)</td>\n<td>45,995</td>\n<td></td>\n<td>15,585</td>\n<td></td>\n<td>16,029</td>\n<td></td>\n</tr>\n<tr>\n<td>I’m a designer or developer, or I work for a company that designs/develops websites; I use WordPress to build websites and/or blogs for others. (This might include theme development, writing plugins, other custom work.)</td>\n<td>26,662</td>\n<td>58%</td>\n<td>8,838</td>\n<td>57%</td>\n<td>9,099</td>\n<td>57%</td>\n</tr>\n<tr>\n<td>I own, run, or contribute to a blog or website that is built with WordPress.</td>\n<td>16,130</td>\n<td>35%</td>\n<td>5,293</td>\n<td>34%</td>\n<td>5,625</td>\n<td>35%</td>\n</tr>\n<tr>\n<td>Neither of the above.</td>\n<td>3,204</td>\n<td>7%</td>\n<td>1,460</td>\n<td>9%</td>\n<td>1,306</td>\n<td>8%</td>\n</tr>\n</tbody>\n</table>\n<h2 id=\"pro\">WordPress Professionals</h2>\n<h3><strong>Which of the following best describes your involvement with WordPress? (Mandatory, 2015) / Do you work for a company, or on your own? (Mandatory, 2016-17)</strong></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>26,699</td>\n<td></td>\n<td>8,838</td>\n<td></td>\n<td>9,101</td>\n<td></td>\n</tr>\n<tr>\n<td>My primary job is working for a company or organization that uses WordPress.</td>\n<td>9,505</td>\n<td>36%</td>\n<td>3,529</td>\n<td>40%</td>\n<td>3,660</td>\n<td>40%</td>\n</tr>\n<tr>\n<td>My primary job is as a self-employed designer or developer that uses WordPress.</td>\n<td>9,310</td>\n<td>35%</td>\n<td>3,188</td>\n<td>36%</td>\n<td>3,440</td>\n<td>38%</td>\n</tr>\n<tr>\n<td>I earn money from part-time or occasional freelance work involving WordPress.</td>\n<td>5,954</td>\n<td>22%</td>\n<td>1,633</td>\n<td>18%</td>\n<td>1,590</td>\n<td>17%</td>\n</tr>\n<tr>\n<td>Work that I do involving WordPress is just a hobby, I don’t make money from it.</td>\n<td>1,930</td>\n<td>7%</td>\n<td>491</td>\n<td>6%</td>\n<td>411</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>How does your company or organization work with WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,342</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Build/design and/or maintain websites or blogs for other people, companies, or organizations.</td>\n<td>7,772</td>\n<td>27%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Develop or customize themes.</td>\n<td>5,404</td>\n<td>19%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Build/design and/or maintain websites or blogs for my own use.</td>\n<td>4,733</td>\n<td>16%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Host websites for customers.</td>\n<td>4,397</td>\n<td>15%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Develop or distribute plugins.</td>\n<td>3,181</td>\n<td>11%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Provide educational resources to help others to use WordPress.</td>\n<td>1,349</td>\n<td>5%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Sponsor and/or attend WordCamps.</td>\n<td>1,127</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Contribute bug reports and/or patches to WordPress core.</td>\n<td>914</td>\n<td>3%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>182</td>\n<td> 1%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>3,457</td>\n<td></td>\n<td>3,598</td>\n<td></td>\n</tr>\n<tr>\n<td>We make websites for others.</td>\n<td></td>\n<td></td>\n<td>2,695</td>\n<td>24%</td>\n<td>2,722</td>\n<td>23%</td>\n</tr>\n<tr>\n<td>We make websites for ourselves.</td>\n<td></td>\n<td></td>\n<td>2,355</td>\n<td>21%</td>\n<td>2,470</td>\n<td>21%</td>\n</tr>\n<tr>\n<td>We develop or customize themes.</td>\n<td></td>\n<td></td>\n<td>1,866</td>\n<td>16%</td>\n<td>1,910</td>\n<td>16%</td>\n</tr>\n<tr>\n<td>We host websites for others.</td>\n<td></td>\n<td></td>\n<td>1,564</td>\n<td>14%</td>\n<td>1,595</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>We develop or distribute plugins.</td>\n<td></td>\n<td></td>\n<td>1,283</td>\n<td>11%</td>\n<td>1,342</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>We provide educational resources to help others to use WordPress.</td>\n<td></td>\n<td></td>\n<td>581</td>\n<td>5%</td>\n<td>631</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>We sponsor and/or attend WordCamps.</td>\n<td></td>\n<td></td>\n<td>561</td>\n<td>5%</td>\n<td>579</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>We contribute bug reports and/or patches to WordPress core.</td>\n<td></td>\n<td></td>\n<td>444</td>\n<td>4%</td>\n<td>468</td>\n<td>4%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td></td>\n<td></td>\n<td>98</td>\n<td>1%</td>\n<td>96</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<p><strong>How would you describe the business of your typical client(s)? (2015) / How would you describe the business of your typical client/customer? (2016, 2017)</strong></p>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,154</td>\n<td></td>\n<td>3,317</td>\n<td></td>\n<td>3,498</td>\n<td></td>\n</tr>\n<tr>\n<td>Small business</td>\n<td>6,893</td>\n<td>32%</td>\n<td>2,398</td>\n<td>31%</td>\n<td>2,510</td>\n<td>31%</td>\n</tr>\n<tr>\n<td>Large business or Enterprise</td>\n<td>3,635</td>\n<td>17%</td>\n<td>1,361</td>\n<td>18%</td>\n<td>1,447</td>\n<td>18%</td>\n</tr>\n<tr>\n<td>Non-profit</td>\n<td>2,644</td>\n<td>12%</td>\n<td>934</td>\n<td>12%</td>\n<td>992</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>Individual</td>\n<td>2,600</td>\n<td>12%</td>\n<td>888</td>\n<td>12%</td>\n<td>1,022</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>Education</td>\n<td>2,344</td>\n<td>11%</td>\n<td>854</td>\n<td>11%</td>\n<td>966</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>Website development (sub-contracting)</td>\n<td>2,065</td>\n<td>10%</td>\n<td>637</td>\n<td>8%</td>\n<td>677</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>Government</td>\n<td>1,410</td>\n<td>6%</td>\n<td>524</td>\n<td>7%</td>\n<td>552</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>127</td>\n<td>1%</td>\n<td>66</td>\n<td>1%</td>\n<td>64</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<p><strong>How does your company or organization use WordPress when developing websites? (2015) / When making websites, how does your company or organization use WordPress? (2016, 2017)</strong></p>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,078</td>\n<td></td>\n<td>3,369</td>\n<td></td>\n<td>3,552</td>\n<td></td>\n</tr>\n<tr>\n<td>Mostly as a content management system (CMS)</td>\n<td>6,361</td>\n<td>70%</td>\n<td>2,482</td>\n<td>74%</td>\n<td>2,640</td>\n<td>74%</td>\n</tr>\n<tr>\n<td>About half the time as a blogging platform and half the time as a CMS</td>\n<td>1,222</td>\n<td>13%</td>\n<td>370</td>\n<td>11%</td>\n<td>383</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Mostly as a blogging platform</td>\n<td>721</td>\n<td>8%</td>\n<td>137</td>\n<td>4%</td>\n<td>129</td>\n<td>4%</td>\n</tr>\n<tr>\n<td>Mostly as an application framework</td>\n<td>629</td>\n<td>7%</td>\n<td>303</td>\n<td>9%</td>\n<td>303</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>145</td>\n<td>2%</td>\n<td>78</td>\n<td>2%</td>\n<td>97</td>\n<td>3%</td>\n</tr>\n</tbody>\n</table>\n<h3>How much is your average WordPress site customized from the original WordPress installation?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,054</td>\n<td></td>\n<td>3,302</td>\n<td></td>\n<td>3,473</td>\n<td></td>\n</tr>\n<tr>\n<td>A lot of work has been done, the front end is unrecognizable, but the Dashboard still looks like the usual WordPress interface.</td>\n<td>5,651</td>\n<td>62%</td>\n<td>2,025</td>\n<td>61%</td>\n<td>2,105</td>\n<td>61%</td>\n</tr>\n<tr>\n<td>There’s a different theme and some plugins have been added.</td>\n<td>2,230</td>\n<td>25%</td>\n<td>799</td>\n<td>24%</td>\n<td>905</td>\n<td>26%</td>\n</tr>\n<tr>\n<td>Not at all, it’s still pretty much the same as the original download.</td>\n<td>756</td>\n<td>8%</td>\n<td>302</td>\n<td>9%</td>\n<td>298</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>You’d never know this was a WordPress installation, everything (including the admin) has been customized.</td>\n<td>417</td>\n<td>5%</td>\n<td>177</td>\n<td>5%</td>\n<td>165</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>Roughly how many currently active WordPress sites has your company or organization built?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>8,801</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>200 +</td>\n<td>1,074</td>\n<td>12%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>51 – 200</td>\n<td>1,721</td>\n<td>20%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>21 – 50</td>\n<td>1,718</td>\n<td>20%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>11 – 20</td>\n<td>1,284</td>\n<td>15%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>6 – 10</td>\n<td>1,109</td>\n<td>13%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>2 – 5</td>\n<td>1,418</td>\n<td>16%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>1</td>\n<td>390</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>0</td>\n<td>87</td>\n<td>1%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>3,358</td>\n<td></td>\n<td>3,540</td>\n<td></td>\n</tr>\n<tr>\n<td>Thousands.</td>\n<td></td>\n<td></td>\n<td>291</td>\n<td>9%</td>\n<td>331</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Hundreds.</td>\n<td></td>\n<td></td>\n<td>770</td>\n<td>23%</td>\n<td>894</td>\n<td>25%</td>\n</tr>\n<tr>\n<td>Fewer than a hundred.</td>\n<td></td>\n<td></td>\n<td>1,144</td>\n<td>34%</td>\n<td>1,177</td>\n<td>33%</td>\n</tr>\n<tr>\n<td>Just a few, but they are really great.</td>\n<td></td>\n<td></td>\n<td>926</td>\n<td>28%</td>\n<td>896</td>\n<td>25%</td>\n</tr>\n<tr>\n<td>Prefer not to answer.</td>\n<td></td>\n<td></td>\n<td>228</td>\n<td>7%</td>\n<td>242</td>\n<td>7%</td>\n</tr>\n</tbody>\n</table>\n<h3>How many person-hours (of your company’s work) does the typical site take to complete?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,091</td>\n<td></td>\n<td>3,353</td>\n<td></td>\n<td>3,522</td>\n<td></td>\n</tr>\n<tr>\n<td>More than 200</td>\n<td>939</td>\n<td>10%</td>\n<td>309</td>\n<td>9%</td>\n<td>325</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>100 – 200</td>\n<td>1080</td>\n<td>12%</td>\n<td>329</td>\n<td>10%</td>\n<td>367</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>60 – 100</td>\n<td>1541</td>\n<td>17%</td>\n<td>527</td>\n<td>16%</td>\n<td>513</td>\n<td>15%</td>\n</tr>\n<tr>\n<td>40 – 60</td>\n<td>1854</td>\n<td>20%</td>\n<td>583</td>\n<td>17%</td>\n<td>620</td>\n<td>18%</td>\n</tr>\n<tr>\n<td>20 – 40</td>\n<td>2066</td>\n<td>23%</td>\n<td>691</td>\n<td>21%</td>\n<td>685</td>\n<td>19%</td>\n</tr>\n<tr>\n<td>Fewer than 20</td>\n<td>1611</td>\n<td>18%</td>\n<td>479</td>\n<td>14%</td>\n<td>519</td>\n<td>15%</td>\n</tr>\n<tr>\n<td>Prefer not to answer (2016, 2017)</td>\n<td></td>\n<td></td>\n<td>436</td>\n<td>13%</td>\n<td>493</td>\n<td>14%</td>\n</tr>\n</tbody>\n</table>\n<h3>Roughly what percentage of your company or organization’s output is based around WordPress (as opposed to other platforms or software)?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>8,950</td>\n<td></td>\n<td>3,345</td>\n<td></td>\n<td>3,503</td>\n<td></td>\n</tr>\n<tr>\n<td>100 %</td>\n<td>1,089</td>\n<td>12%</td>\n<td>438</td>\n<td>13%</td>\n<td>480</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>90 %</td>\n<td>1,043</td>\n<td>12%</td>\n<td>417</td>\n<td>12%</td>\n<td>459</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>80 %</td>\n<td>955</td>\n<td>11%</td>\n<td>367</td>\n<td>11%</td>\n<td>424</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>70 %</td>\n<td>831</td>\n<td>9%</td>\n<td>305</td>\n<td>9%</td>\n<td>344</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>60 %</td>\n<td>534</td>\n<td>6%</td>\n<td>246</td>\n<td>7%</td>\n<td>226</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>50 %</td>\n<td>973</td>\n<td>11%</td>\n<td>335</td>\n<td>10%</td>\n<td>338</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>40 %</td>\n<td>613</td>\n<td>7%</td>\n<td>245</td>\n<td>7%</td>\n<td>202</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>30 %</td>\n<td>877</td>\n<td>10%</td>\n<td>335</td>\n<td>10%</td>\n<td>310</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>20 %</td>\n<td>806</td>\n<td>9%</td>\n<td>242</td>\n<td>7%</td>\n<td>280</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>10 %</td>\n<td>1,039</td>\n<td>12%</td>\n<td>344</td>\n<td>10%</td>\n<td>348</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>0 %</td>\n<td>190</td>\n<td>2%</td>\n<td>72</td>\n<td>2%</td>\n<td>92</td>\n<td>3%</td>\n</tr>\n</tbody>\n</table>\n<h3>In which of the following ways do you work with WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>17,009</td>\n<td></td>\n<td>5,221</td>\n<td></td>\n<td>5,425</td>\n<td></td>\n</tr>\n<tr>\n<td>Build/design and/or maintain websites or blogs for other people, companies, or organizations</td>\n<td>15,342</td>\n<td>34%</td>\n<td>4,795</td>\n<td>34%</td>\n<td>5,064</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Develop or customize themes</td>\n<td>10,549</td>\n<td>24%</td>\n<td>2,997</td>\n<td>21%</td>\n<td>3,021</td>\n<td>20%</td>\n</tr>\n<tr>\n<td>Host websites for customers</td>\n<td>8,142</td>\n<td>18%</td>\n<td>2,466</td>\n<td>17%</td>\n<td>2,728</td>\n<td>18%</td>\n</tr>\n<tr>\n<td>Develop or distribute plugins</td>\n<td>4,125</td>\n<td>9%</td>\n<td>1,395</td>\n<td>10%</td>\n<td>1,416</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Provide educational resources to help others to use WordPress</td>\n<td>3,276</td>\n<td>7%</td>\n<td>1,187</td>\n<td>8%</td>\n<td>1,308</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Sponsor and/or attend WordCamps</td>\n<td>1,559</td>\n<td>4%</td>\n<td>648</td>\n<td>5%</td>\n<td>724</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>Contribute bug reports and/or patches to WordPress core</td>\n<td>1,107</td>\n<td>2%</td>\n<td>381</td>\n<td>3%</td>\n<td>393</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>389</td>\n<td>1%</td>\n<td>243</td>\n<td>2%</td>\n<td>299</td>\n<td>2%</td>\n</tr>\n</tbody>\n</table>\n<h3>How would you describe the business of your typical client(s)?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,863</td>\n<td></td>\n<td>5,151</td>\n<td></td>\n<td>5,353</td>\n<td></td>\n</tr>\n<tr>\n<td>Small business</td>\n<td>14,185</td>\n<td>35%</td>\n<td>4,342</td>\n<td>35%</td>\n<td>4,622</td>\n<td>36%</td>\n</tr>\n<tr>\n<td>Individual</td>\n<td>8,513</td>\n<td>21%</td>\n<td>2,581</td>\n<td>21%</td>\n<td>2,583</td>\n<td>20%</td>\n</tr>\n<tr>\n<td>Non-profit</td>\n<td>6,585</td>\n<td>16%</td>\n<td>2,004</td>\n<td>16%</td>\n<td>2,113</td>\n<td>16%</td>\n</tr>\n<tr>\n<td>Website development (sub-contracting)</td>\n<td>4,301</td>\n<td>11%</td>\n<td>1,258</td>\n<td>10%</td>\n<td>1,216</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Education</td>\n<td>3,458</td>\n<td>8%</td>\n<td>1,049</td>\n<td>8%</td>\n<td>1,139</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Large business or Enterprise</td>\n<td>2,391</td>\n<td>6%</td>\n<td>805</td>\n<td>6%</td>\n<td>857</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>Government</td>\n<td>1,150</td>\n<td>3%</td>\n<td>300</td>\n<td>2%</td>\n<td>329</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>173</td>\n<td>0%</td>\n<td>101</td>\n<td>1%</td>\n<td>99</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>How do you use WordPress in your development?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,768</td>\n<td></td>\n<td>5,145</td>\n<td></td>\n<td>5,372</td>\n<td></td>\n</tr>\n<tr>\n<td>Mostly as a content management system (CMS)</td>\n<td>11,754</td>\n<td>70%</td>\n<td>3,641</td>\n<td>71%</td>\n<td>3,959</td>\n<td>74%</td>\n</tr>\n<tr>\n<td>About half the time as a blogging platform and half the time as a CMS</td>\n<td>2,825</td>\n<td>17%</td>\n<td>812</td>\n<td>16%</td>\n<td>721</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>Mostly as an application framework</td>\n<td>1,012</td>\n<td>6%</td>\n<td>343</td>\n<td>7%</td>\n<td>344</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Mostly as a blogging platform</td>\n<td>992</td>\n<td>6%</td>\n<td>246</td>\n<td>5%</td>\n<td>226</td>\n<td>4%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>185</td>\n<td>1%</td>\n<td>105</td>\n<td>2%</td>\n<td>122</td>\n<td>2%</td>\n</tr>\n</tbody>\n</table>\n<h3>How much is your average WordPress site customized from the original WordPress installation?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,699</td>\n<td></td>\n<td>5,131</td>\n<td></td>\n<td>5,317</td>\n<td></td>\n</tr>\n<tr>\n<td>A lot of work has been done, the front end is unrecognizable, but the Dashboard still looks like the usual WordPress interface.</td>\n<td>9,457</td>\n<td>57%</td>\n<td>2,837</td>\n<td>55%</td>\n<td>2,998</td>\n<td>56%</td>\n</tr>\n<tr>\n<td>There’s a different theme and some plugins have been added.</td>\n<td>5,526</td>\n<td>33%</td>\n<td>1,694</td>\n<td>33%</td>\n<td>1,781</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Not at all, it’s still pretty much the same as the original download.</td>\n<td>977</td>\n<td>6%</td>\n<td>341</td>\n<td>7%</td>\n<td>310</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>You’d never know this was a WordPress installation, everything (including the admin) has been customized.</td>\n<td>739</td>\n<td>4%</td>\n<td>261</td>\n<td>5%</td>\n<td>228</td>\n<td>4%</td>\n</tr>\n</tbody>\n</table>\n<h3>How many currently active WordPress sites have you built? (2015) / Roughly how many currently active WordPress sites have you built? (2016, 2017)</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,690</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>200 +</td>\n<td>514</td>\n<td>3%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>51 – 200</td>\n<td>1,728</td>\n<td>10%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>21 – 50</td>\n<td>3,000</td>\n<td>18%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>11 – 20</td>\n<td>3,146</td>\n<td>19%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>6 – 10</td>\n<td>3,405</td>\n<td>20%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>2 – 5</td>\n<td>3,838</td>\n<td>23%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>1</td>\n<td>698</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>0</td>\n<td>361</td>\n<td>2%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>5,165</td>\n<td></td>\n<td>5367</td>\n<td></td>\n</tr>\n<tr>\n<td>Thousands.</td>\n<td></td>\n<td></td>\n<td>110</td>\n<td>2%</td>\n<td>104</td>\n<td>2%</td>\n</tr>\n<tr>\n<td>Hundreds.</td>\n<td></td>\n<td></td>\n<td>603</td>\n<td>12%</td>\n<td>713</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>Fewer than a hundred.</td>\n<td></td>\n<td></td>\n<td>2,264</td>\n<td>44%</td>\n<td>2,457</td>\n<td>46%</td>\n</tr>\n<tr>\n<td>Just a few, but they are really great.</td>\n<td></td>\n<td></td>\n<td>1,871</td>\n<td>36%</td>\n<td>1,813</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Prefer not to answer.</td>\n<td></td>\n<td></td>\n<td>319</td>\n<td>6%</td>\n<td>280</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>Roughly what percentage of your working time is spent working with WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,658</td>\n<td></td>\n<td>5,039</td>\n<td></td>\n<td>5,241</td>\n<td></td>\n</tr>\n<tr>\n<td>100 %</td>\n<td>949</td>\n<td>6%</td>\n<td>459</td>\n<td>9%</td>\n<td>461</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>90 %</td>\n<td>1,300</td>\n<td>8%</td>\n<td>527</td>\n<td>10%</td>\n<td>540</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>80 %</td>\n<td>1,784</td>\n<td>11%</td>\n<td>637</td>\n<td>13%</td>\n<td>711</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>70 %</td>\n<td>1,850</td>\n<td>11%</td>\n<td>608</td>\n<td>12%</td>\n<td>627</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>60 %</td>\n<td>1,313</td>\n<td>8%</td>\n<td>438</td>\n<td>9%</td>\n<td>465</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>50 %</td>\n<td>2,095</td>\n<td>13%</td>\n<td>612</td>\n<td>12%</td>\n<td>639</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>40 %</td>\n<td>1,438</td>\n<td>9%</td>\n<td>391</td>\n<td>8%</td>\n<td>384</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>30 %</td>\n<td>2,076</td>\n<td>12%</td>\n<td>530</td>\n<td>11%</td>\n<td>511</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>20 %</td>\n<td>1,743</td>\n<td>10%</td>\n<td>445</td>\n<td>9%</td>\n<td>429</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>10 %</td>\n<td>1,819</td>\n<td>11%</td>\n<td>342</td>\n<td>7%</td>\n<td>419</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>0 %</td>\n<td>291</td>\n<td>2%</td>\n<td>52</td>\n<td>1%</td>\n<td>55</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>How many hours of your work does the typical site take to complete? (2015) / How many hours of work does your typical WordPress project take to launch? (2016, 2017)</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,670</td>\n<td></td>\n<td>5,164</td>\n<td></td>\n<td>5,378</td>\n<td></td>\n</tr>\n<tr>\n<td>More than 200</td>\n<td>503</td>\n<td>3%</td>\n<td>222</td>\n<td>4%</td>\n<td>245</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>100 – 200</td>\n<td>973</td>\n<td>6%</td>\n<td>386</td>\n<td>7%</td>\n<td>393</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>60 – 100</td>\n<td>2,277</td>\n<td>14%</td>\n<td>788</td>\n<td>15%</td>\n<td>815</td>\n<td>15%</td>\n</tr>\n<tr>\n<td>40 – 60</td>\n<td>3,896</td>\n<td>23%</td>\n<td>1,153</td>\n<td>22%</td>\n<td>1,216</td>\n<td>23%</td>\n</tr>\n<tr>\n<td>20 – 40</td>\n<td>6,068</td>\n<td>36%</td>\n<td>1,487</td>\n<td>29%</td>\n<td>1,582</td>\n<td>29%</td>\n</tr>\n<tr>\n<td>Fewer than 20</td>\n<td>2,953</td>\n<td>18%</td>\n<td>712</td>\n<td>14%</td>\n<td>751</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>418</td>\n<td>8%</td>\n<td>376</td>\n<td>7%</td>\n</tr>\n</tbody>\n</table>\n<h3>Which of the following have you done with WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" /> </colgroup>\n</table>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional (Company/Freelancer/Hobbyist)</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>20,687</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve written a theme from scratch.</td>\n<td>11,894</td>\n<td>25%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve written a plugin.</td>\n<td>9,719</td>\n<td>21%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve answered a question in the WordPress forum.</td>\n<td>8,805</td>\n<td>19%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve attended a WordPress meetup.</td>\n<td>4,062</td>\n<td>9%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve submitted a WordPress bug report.</td>\n<td>4,062</td>\n<td>9%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve attended a WordCamp.</td>\n<td>3,571</td>\n<td>8%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve contributed to WordPress documentation.</td>\n<td>1,778</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>1,739</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve contributed a WordPress core patch.</td>\n<td>1,055</td>\n<td>2%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n<h3>What’s the best thing about WordPress?<a href=\"#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>22,718</td>\n<td></td>\n<td>7,891</td>\n<td></td>\n<td>8,267</td>\n<td></td>\n</tr>\n<tr>\n<td>Easy/simple/user-friendly</td>\n<td>9,450</td>\n<td>42%</td>\n<td>3,454</td>\n<td>44%</td>\n<td>3,852</td>\n<td>47%</td>\n</tr>\n<tr>\n<td>Customizable/extensible/modular/plugins/themes</td>\n<td>8,601</td>\n<td>38%</td>\n<td>3,116</td>\n<td>39%</td>\n<td>3,555</td>\n<td>43%</td>\n</tr>\n<tr>\n<td>Community/support/documentation/help</td>\n<td>3,806</td>\n<td>17%</td>\n<td>1,211</td>\n<td>15%</td>\n<td>1,340</td>\n<td>16%</td>\n</tr>\n<tr>\n<td>Free/open/open source</td>\n<td>2,291</td>\n<td>10%</td>\n<td>802</td>\n<td>10%</td>\n<td>908</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Popular/ubiquitous</td>\n<td>249</td>\n<td>1%</td>\n<td>86</td>\n<td>1%</td>\n<td>187</td>\n<td>2%</td>\n</tr>\n</tbody>\n</table>\n<h3> What’s the most frustrating thing about WordPress?<a href=\"#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>21,144</td>\n<td></td>\n<td>7,294</td>\n<td></td>\n<td>7,691</td>\n<td></td>\n</tr>\n<tr>\n<td>Plugins & themes (abandoned/conflicts/coding standards)</td>\n<td>6,122</td>\n<td>29%</td>\n<td>2,194</td>\n<td>30%</td>\n<td>2,187</td>\n<td>28%</td>\n</tr>\n<tr>\n<td>Security/vulnerabilities/hacks</td>\n<td>2,321</td>\n<td>11%</td>\n<td>712</td>\n<td>10%</td>\n<td>829</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Updates</td>\n<td>1,544</td>\n<td>7%</td>\n<td>422</td>\n<td>6%</td>\n<td>508</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>Nothing/I don’t know/can’t think of anything</td>\n<td>1,276</td>\n<td>6%</td>\n<td>344</td>\n<td>5%</td>\n<td>476</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Speed/performance/slow/heavy</td>\n<td>1,196</td>\n<td>6%</td>\n<td>644</td>\n<td>9%</td>\n<td>516</td>\n<td>7%</td>\n</tr>\n</tbody>\n</table>\n<h3>WordPress is as good as, or better than, its main competitors.</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (this question was not asked in the 2015 survey)</td>\n<td></td>\n<td></td>\n<td>8,672</td>\n<td></td>\n<td>9,059</td>\n<td></td>\n</tr>\n<tr>\n<td>Agree</td>\n<td></td>\n<td></td>\n<td>7551</td>\n<td>87%</td>\n<td>7836</td>\n<td>87%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>754</td>\n<td>9%</td>\n<td>795</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Disagree</td>\n<td></td>\n<td></td>\n<td>370</td>\n<td>4%</td>\n<td>428</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h2 id=\"user\">WordPress Users</h2>\n<h3>Which of the following describes how you use WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>15,169</td>\n<td></td>\n<td>5,043</td>\n<td></td>\n<td>5,521</td>\n<td></td>\n</tr>\n<tr>\n<td>My personal blog (or blogs) uses WordPress.</td>\n<td>9,395</td>\n<td>36%</td>\n<td>3,117</td>\n<td>36%</td>\n<td>3,424</td>\n<td>36%</td>\n</tr>\n<tr>\n<td>My company or organization’s website is built with WordPress software.</td>\n<td>7,480</td>\n<td>29%</td>\n<td>2,519</td>\n<td>29%</td>\n<td>2,841</td>\n<td>30%</td>\n</tr>\n<tr>\n<td>I have a hobby or side project that has a website built with WordPress.</td>\n<td>6,112</td>\n<td>23%</td>\n<td>1,973</td>\n<td>23%</td>\n<td>2,200</td>\n<td>23%</td>\n</tr>\n<tr>\n<td>I write (or otherwise work) for an online publication that uses WordPress.</td>\n<td>2,329</td>\n<td>9%</td>\n<td>806</td>\n<td>9%</td>\n<td>821</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>872</td>\n<td>3%</td>\n<td>234</td>\n<td>3%</td>\n<td>288</td>\n<td>3%</td>\n</tr>\n</tbody>\n</table>\n<h3>Who installed your WordPress website?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>15,055</td>\n<td></td>\n<td>5,020</td>\n<td></td>\n<td>5,523</td>\n<td></td>\n</tr>\n<tr>\n<td>I did.</td>\n<td>11,216</td>\n<td>66%</td>\n<td>3,659</td>\n<td>73%</td>\n<td>4,129</td>\n<td>75%</td>\n</tr>\n<tr>\n<td>My hosting provider</td>\n<td>2,236</td>\n<td>13%</td>\n<td>667</td>\n<td>13%</td>\n<td>767</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>An external company</td>\n<td>909</td>\n<td>5%</td>\n<td>182</td>\n<td>4%</td>\n<td>178</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>An internal web person/team or a colleague</td>\n<td>874</td>\n<td>5%</td>\n<td>178</td>\n<td>4%</td>\n<td>191</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>A friend or family member</td>\n<td>787</td>\n<td>5%</td>\n<td>192</td>\n<td>4%</td>\n<td>172</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>I don’t know</td>\n<td>502</td>\n<td>3%</td>\n<td>145</td>\n<td>3%</td>\n<td>87</td>\n<td>2%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>345</td>\n<td>2%</td>\n<td>n/a</td>\n<td>n/a</td>\n<td>n/a</td>\n<td>n/a</td>\n</tr>\n</tbody>\n</table>\n<h3>How much has the site been customized from the original WordPress installation?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>14,789</td>\n<td></td>\n<td>4,997</td>\n<td></td>\n<td>5,494</td>\n<td></td>\n</tr>\n<tr>\n<td>There’s a different theme and some plugins have been added.</td>\n<td>7,465</td>\n<td>50%</td>\n<td>2,337</td>\n<td>47%</td>\n<td>2,660</td>\n<td>48%</td>\n</tr>\n<tr>\n<td>A lot of work has been done, the site itself is unrecognizable from the original theme, but the Dashboard still looks like the usual WordPress interface.</td>\n<td>4,715</td>\n<td>32%</td>\n<td>1,707</td>\n<td>34%</td>\n<td>1,872</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Not at all, it’s still pretty much the same as it was when I started out.</td>\n<td>1,841</td>\n<td>12%</td>\n<td>635</td>\n<td>13%</td>\n<td>673</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>You’d never know this was a WordPress installation, everything has been customized.</td>\n<td>768</td>\n<td>5%</td>\n<td>321</td>\n<td>6%</td>\n<td>290</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>What’s the best thing about WordPress?<a href=\"#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>14,328</td>\n<td></td>\n<td>4,613</td>\n<td></td>\n<td>5,076</td>\n<td></td>\n</tr>\n<tr>\n<td>Easy/simple/user-friendly</td>\n<td>7,391</td>\n<td>52%</td>\n<td>2,276</td>\n<td>49%</td>\n<td>2,511</td>\n<td>49%</td>\n</tr>\n<tr>\n<td>Customizable/extensible/modular/plugins/themes</td>\n<td>4,219</td>\n<td>29%</td>\n<td>1,569</td>\n<td>34%</td>\n<td>1,632</td>\n<td>32%</td>\n</tr>\n<tr>\n<td>Free/open/open source</td>\n<td>1,586</td>\n<td>11%</td>\n<td>493</td>\n<td>11%</td>\n<td>538</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Community/support/documentation/help</td>\n<td>1,085</td>\n<td>8%</td>\n<td>388</td>\n<td>8%</td>\n<td>458</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Popular/ubiquitous</td>\n<td>223</td>\n<td>2%</td>\n<td>74</td>\n<td>2%</td>\n<td>48</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>What’s the most frustrating thing about WordPress?<a href=\"#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>13,681</td>\n<td></td>\n<td>4,287</td>\n<td></td>\n<td>4,758</td>\n<td></td>\n</tr>\n<tr>\n<td>Plugins & themes (abandoned/conflicts/coding standards)</td>\n<td>2,531</td>\n<td>19%</td>\n<td>1,183</td>\n<td>28%</td>\n<td>1,300</td>\n<td>27%</td>\n</tr>\n<tr>\n<td>Customization/design/look/template</td>\n<td>1,273</td>\n<td>9%</td>\n<td>381</td>\n<td>9%</td>\n<td>408</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Code/coding/PHP</td>\n<td>931</td>\n<td>7%</td>\n<td>306</td>\n<td>7%</td>\n<td>277</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Updates</td>\n<td>926</td>\n<td>7%</td>\n<td>209</td>\n<td>5%</td>\n<td>296</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Security/vulnerabilites/hacks</td>\n<td>785</td>\n<td>6%</td>\n<td>255</td>\n<td>6%</td>\n<td>292</td>\n<td>6%</td>\n</tr>\n</tbody>\n</table>\n<h3>WordPress is as good as, or better than, its main competitors.</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>5,026</td>\n<td></td>\n<td>5,498</td>\n<td></td>\n</tr>\n<tr>\n<td>Agree</td>\n<td></td>\n<td></td>\n<td>4,038</td>\n<td>80%</td>\n<td>4,462</td>\n<td>81%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>737</td>\n<td>15%</td>\n<td>782</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>Disagree</td>\n<td></td>\n<td></td>\n<td>254</td>\n<td>5%</td>\n<td>255</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h2 id=\"all\">All Respondents</h2>\n<h3>Can you (truthfully!) say “I make my living from WordPress”?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (combination of all three groups from 2015; this question was not broken out by group in 2016-2017)</td>\n<td>42,236</td>\n<td></td>\n<td>14,906</td>\n<td></td>\n<td>15,616</td>\n<td></td>\n</tr>\n<tr>\n<td>Not really, but I do get some or all of my income as a result of working with WordPress.</td>\n<td>16,607</td>\n<td>39%</td>\n<td>5,408</td>\n<td>36%</td>\n<td>5,702</td>\n<td>37%</td>\n</tr>\n<tr>\n<td>Yes.</td>\n<td>9,635</td>\n<td>23%</td>\n<td>4,791</td>\n<td>32%</td>\n<td>5,033</td>\n<td>32%</td>\n</tr>\n<tr>\n<td>No.</td>\n<td>15,995</td>\n<td>38%</td>\n<td>4,713</td>\n<td>32%</td>\n<td>4,882</td>\n<td>31%</td>\n</tr>\n</tbody>\n</table>\n<h3>Which devices do you access WordPress on?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (combination of all three groups from 2015; this question was not broken out by group in 2016-2017)</td>\n<td>42,433</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Web</td>\n<td>40,503</td>\n<td>95%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Android phone</td>\n<td>15,396</td>\n<td>36%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>iPhone</td>\n<td>12,353</td>\n<td>29%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>iPad</td>\n<td>11,748</td>\n<td>28%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Android tablet</td>\n<td>9,223</td>\n<td>22%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Desktop app, like MarsEdit</td>\n<td>6,018</td>\n<td>14%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>1837</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (this question was not broken out by group in 2016-2017)</td>\n<td></td>\n<td></td>\n<td>14,840</td>\n<td></td>\n<td>15,597</td>\n<td></td>\n</tr>\n<tr>\n<td>Web browser on a desktop or laptop</td>\n<td></td>\n<td></td>\n<td>14,160</td>\n<td>54%</td>\n<td>15,052</td>\n<td>55%</td>\n</tr>\n<tr>\n<td>Web browser on a mobile device (tablet or phone)</td>\n<td></td>\n<td></td>\n<td>7,952</td>\n<td>30%</td>\n<td>8,248</td>\n<td>30%</td>\n</tr>\n<tr>\n<td>An app on a mobile device (table or phone)</td>\n<td></td>\n<td></td>\n<td>3,309</td>\n<td>13%</td>\n<td>3,311</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>A desktop app like MarsEdit</td>\n<td></td>\n<td></td>\n<td>517</td>\n<td>2%</td>\n<td>498</td>\n<td>2%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td></td>\n<td></td>\n<td>282</td>\n<td>1%</td>\n<td>240</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>WordPress now updates minor & security releases automatically for you. Check all that apply: (question not asked in 2016, 2017)</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (combination of all three groups)</td>\n<td>39,726</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I love auto-updates.</td>\n<td>17,367</td>\n<td>44%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’d like to see auto-updates for plugins.</td>\n<td>12,796</td>\n<td>32%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Initially, I was nervous about auto updates.</td>\n<td>11,868</td>\n<td>30%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Auto updates still make me nervous.</td>\n<td>10,809</td>\n<td>27%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Auto updates don’t make me nervous now.</td>\n<td>10,708</td>\n<td>27%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’d like to see auto-updates for themes.</td>\n<td>10,449</td>\n<td>26%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’d like to see auto updates for major versions of WordPress.</td>\n<td>10,225</td>\n<td>26%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>This is the first I’ve heard of auto-updates.</td>\n<td>8,660</td>\n<td>22%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I hate auto-updates.</td>\n<td>3,293</td>\n<td>8%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n<h3>What is your gender?<a href=\"#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All respondents (This question was not asked in the 2015 survey.)</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>13,953</td>\n<td></td>\n<td>14,680</td>\n<td></td>\n</tr>\n<tr>\n<td>Male</td>\n<td></td>\n<td></td>\n<td>10,978</td>\n<td>78.68%</td>\n<td>11,570</td>\n<td>78.81%</td>\n</tr>\n<tr>\n<td>Female</td>\n<td></td>\n<td></td>\n<td>2,340</td>\n<td>16.77%</td>\n<td>2,511</td>\n<td>21.70%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>601</td>\n<td>4.31%</td>\n<td>562</td>\n<td>3.83%</td>\n</tr>\n<tr>\n<td>Transgender</td>\n<td></td>\n<td></td>\n<td>11</td>\n<td>0.08%</td>\n<td>8</td>\n<td>0.05%</td>\n</tr>\n<tr>\n<td>Nonbinary</td>\n<td></td>\n<td></td>\n<td>8</td>\n<td>0.06%</td>\n<td>17</td>\n<td>0.12%</td>\n</tr>\n<tr>\n<td>Genderqueer</td>\n<td></td>\n<td></td>\n<td>4</td>\n<td>0.03%</td>\n<td>3</td>\n<td>0.02%</td>\n</tr>\n<tr>\n<td>Androgynous</td>\n<td></td>\n<td></td>\n<td>6</td>\n<td>0.04%</td>\n<td>5</td>\n<td>0.03%</td>\n</tr>\n<tr>\n<td>Fluid</td>\n<td></td>\n<td></td>\n<td>3</td>\n<td>0.02%</td>\n<td>4</td>\n<td>0.03%</td>\n</tr>\n<tr>\n<td>Demimale</td>\n<td></td>\n<td></td>\n<td>2</td>\n<td>0.01%</td>\n<td>0</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n<h3>Where are you located?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All respondents (This question was not asked in the 2015 survey.)</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>14,562</td>\n<td></td>\n<td>15,343</td>\n<td></td>\n</tr>\n<tr>\n<td>United States</td>\n<td></td>\n<td></td>\n<td>3,770</td>\n<td>25.89%</td>\n<td>4,067</td>\n<td>26.51%</td>\n</tr>\n<tr>\n<td>India</td>\n<td></td>\n<td></td>\n<td>1,456</td>\n<td>10.00%</td>\n<td>1,424</td>\n<td>9.28%</td>\n</tr>\n<tr>\n<td>United Kingdom</td>\n<td></td>\n<td></td>\n<td>810</td>\n<td>5.56%</td>\n<td>900</td>\n<td>5.87%</td>\n</tr>\n<tr>\n<td>Germany</td>\n<td></td>\n<td></td>\n<td>555</td>\n<td>3.81%</td>\n<td>729</td>\n<td>4.75%</td>\n</tr>\n<tr>\n<td>Canada</td>\n<td></td>\n<td></td>\n<td>511</td>\n<td>3.51%</td>\n<td>599</td>\n<td>3.90%</td>\n</tr>\n<tr>\n<td>Australia</td>\n<td></td>\n<td></td>\n<td>389</td>\n<td>2.67%</td>\n<td>460</td>\n<td>3.00%</td>\n</tr>\n<tr>\n<td>Italy</td>\n<td></td>\n<td></td>\n<td>298</td>\n<td>2.05%</td>\n<td>356</td>\n<td>2.32%</td>\n</tr>\n<tr>\n<td>Netherlands</td>\n<td></td>\n<td></td>\n<td>343</td>\n<td>2.36%</td>\n<td>350</td>\n<td>2.28%</td>\n</tr>\n<tr>\n<td>France</td>\n<td></td>\n<td></td>\n<td>232</td>\n<td>1.59%</td>\n<td>283</td>\n<td>1.84%</td>\n</tr>\n<tr>\n<td>Bangladesh</td>\n<td></td>\n<td></td>\n<td>257</td>\n<td>1.76%</td>\n<td>263</td>\n<td>1.71%</td>\n</tr>\n<tr>\n<td>Spain</td>\n<td></td>\n<td></td>\n<td>271</td>\n<td>1.86%</td>\n<td>252</td>\n<td>1.64%</td>\n</tr>\n<tr>\n<td>Brazil</td>\n<td></td>\n<td></td>\n<td>239</td>\n<td>1.64%</td>\n<td>251</td>\n<td>1.64%</td>\n</tr>\n<tr>\n<td>Pakistan</td>\n<td></td>\n<td></td>\n<td>254</td>\n<td>1.74%</td>\n<td>240</td>\n<td>1.56%</td>\n</tr>\n<tr>\n<td>Indonesia</td>\n<td></td>\n<td></td>\n<td>230</td>\n<td>1.58%</td>\n<td>226</td>\n<td>1.47%</td>\n</tr>\n<tr>\n<td>Iran, Islamic Republic of</td>\n<td></td>\n<td></td>\n<td>190</td>\n<td>1.30%</td>\n<td>173</td>\n<td>1.13%</td>\n</tr>\n<tr>\n<td>Sweden</td>\n<td></td>\n<td></td>\n<td>144</td>\n<td>0.99%</td>\n<td>173</td>\n<td>1.13%</td>\n</tr>\n<tr>\n<td>Nigeria</td>\n<td></td>\n<td></td>\n<td>196</td>\n<td>1.35%</td>\n<td>172</td>\n<td>1.12%</td>\n</tr>\n<tr>\n<td>South Africa</td>\n<td></td>\n<td></td>\n<td>193</td>\n<td>1.33%</td>\n<td>172</td>\n<td>1.12%</td>\n</tr>\n<tr>\n<td>Russian Federation</td>\n<td></td>\n<td></td>\n<td>181</td>\n<td>1.24%</td>\n<td>151</td>\n<td>0.98%</td>\n</tr>\n<tr>\n<td>Poland</td>\n<td></td>\n<td></td>\n<td>129</td>\n<td>0.89%</td>\n<td>137</td>\n<td>0.89%</td>\n</tr>\n<tr>\n<td>Romania</td>\n<td></td>\n<td></td>\n<td>144</td>\n<td>0.99%</td>\n<td>132</td>\n<td>0.86%</td>\n</tr>\n<tr>\n<td>Switzerland</td>\n<td></td>\n<td></td>\n<td>122</td>\n<td>0.84%</td>\n<td>130</td>\n<td>0.85%</td>\n</tr>\n<tr>\n<td>Philippines</td>\n<td></td>\n<td></td>\n<td>92</td>\n<td>0.63%</td>\n<td>125</td>\n<td>0.81%</td>\n</tr>\n<tr>\n<td>China</td>\n<td></td>\n<td></td>\n<td>136</td>\n<td>0.93%</td>\n<td>123</td>\n<td>0.80%</td>\n</tr>\n<tr>\n<td>Austria</td>\n<td></td>\n<td></td>\n<td>89</td>\n<td>0.61%</td>\n<td>122</td>\n<td>0.80%</td>\n</tr>\n<tr>\n<td>Ukraine</td>\n<td></td>\n<td></td>\n<td>105</td>\n<td>0.72%</td>\n<td>118</td>\n<td>0.77%</td>\n</tr>\n<tr>\n<td>Denmark</td>\n<td></td>\n<td></td>\n<td>107</td>\n<td>0.73%</td>\n<td>114</td>\n<td>0.74%</td>\n</tr>\n<tr>\n<td>Greece</td>\n<td></td>\n<td></td>\n<td>120</td>\n<td>0.82%</td>\n<td>114</td>\n<td>0.74%</td>\n</tr>\n<tr>\n<td>Portugal</td>\n<td></td>\n<td></td>\n<td>94</td>\n<td>0.65%</td>\n<td>109</td>\n<td>0.71%</td>\n</tr>\n<tr>\n<td>Vietnam</td>\n<td></td>\n<td></td>\n<td>101</td>\n<td>0.69%</td>\n<td>108</td>\n<td>0.70%</td>\n</tr>\n<tr>\n<td>Mexico</td>\n<td></td>\n<td></td>\n<td>94</td>\n<td>0.65%</td>\n<td>105</td>\n<td>0.68%</td>\n</tr>\n<tr>\n<td>Nepal</td>\n<td></td>\n<td></td>\n<td>76</td>\n<td>0.52%</td>\n<td>97</td>\n<td>0.63%</td>\n</tr>\n<tr>\n<td>Ireland</td>\n<td></td>\n<td></td>\n<td>72</td>\n<td>0.49%</td>\n<td>94</td>\n<td>0.61%</td>\n</tr>\n<tr>\n<td>Israel</td>\n<td></td>\n<td></td>\n<td>78</td>\n<td>0.54%</td>\n<td>94</td>\n<td>0.61%</td>\n</tr>\n<tr>\n<td>New Zealand</td>\n<td></td>\n<td></td>\n<td>77</td>\n<td>0.53%</td>\n<td>91</td>\n<td>0.59%</td>\n</tr>\n<tr>\n<td>Finland</td>\n<td></td>\n<td></td>\n<td>63</td>\n<td>0.43%</td>\n<td>90</td>\n<td>0.59%</td>\n</tr>\n<tr>\n<td>Turkey</td>\n<td></td>\n<td></td>\n<td>91</td>\n<td>0.62%</td>\n<td>86</td>\n<td>0.56%</td>\n</tr>\n<tr>\n<td>Malaysia</td>\n<td></td>\n<td></td>\n<td>91</td>\n<td>0.62%</td>\n<td>81</td>\n<td>0.53%</td>\n</tr>\n<tr>\n<td>Belgium</td>\n<td></td>\n<td></td>\n<td>84</td>\n<td>0.58%</td>\n<td>79</td>\n<td>0.51%</td>\n</tr>\n<tr>\n<td>Norway</td>\n<td></td>\n<td></td>\n<td>66</td>\n<td>0.45%</td>\n<td>79</td>\n<td>0.51%</td>\n</tr>\n<tr>\n<td>Argentina</td>\n<td></td>\n<td></td>\n<td>65</td>\n<td>0.45%</td>\n<td>76</td>\n<td>0.50%</td>\n</tr>\n<tr>\n<td>Bulgaria</td>\n<td></td>\n<td></td>\n<td>74</td>\n<td>0.51%</td>\n<td>72</td>\n<td>0.47%</td>\n</tr>\n<tr>\n<td>Japan</td>\n<td></td>\n<td></td>\n<td>61</td>\n<td>0.42%</td>\n<td>68</td>\n<td>0.44%</td>\n</tr>\n<tr>\n<td>Thailand</td>\n<td></td>\n<td></td>\n<td>69</td>\n<td>0.47%</td>\n<td>67</td>\n<td>0.44%</td>\n</tr>\n<tr>\n<td>Czech Republic</td>\n<td></td>\n<td></td>\n<td>76</td>\n<td>0.52%</td>\n<td>66</td>\n<td>0.43%</td>\n</tr>\n<tr>\n<td>Serbia</td>\n<td></td>\n<td></td>\n<td>89</td>\n<td>0.61%</td>\n<td>63</td>\n<td>0.41%</td>\n</tr>\n<tr>\n<td>Kenya</td>\n<td></td>\n<td></td>\n<td>58</td>\n<td>0.40%</td>\n<td>62</td>\n<td>0.40%</td>\n</tr>\n<tr>\n<td>Colombia</td>\n<td></td>\n<td></td>\n<td>39</td>\n<td>0.27%</td>\n<td>59</td>\n<td>0.38%</td>\n</tr>\n<tr>\n<td>Egypt</td>\n<td></td>\n<td></td>\n<td>40</td>\n<td>0.27%</td>\n<td>52</td>\n<td>0.34%</td>\n</tr>\n</tbody>\n</table>\n<h3>What is your age?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (This question was not asked in 2015.)</td>\n<td></td>\n<td></td>\n<td>14,944</td>\n<td></td>\n<td>15,636</td>\n<td></td>\n</tr>\n<tr>\n<td>60 and over</td>\n<td></td>\n<td></td>\n<td>1,139</td>\n<td>8%</td>\n<td>1,641</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>50-59</td>\n<td></td>\n<td></td>\n<td>1,537</td>\n<td>10%</td>\n<td>1,996</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>40-49</td>\n<td></td>\n<td></td>\n<td>2,205</td>\n<td>15%</td>\n<td>2,643</td>\n<td>17%</td>\n</tr>\n<tr>\n<td>30-39</td>\n<td></td>\n<td></td>\n<td>3,914</td>\n<td>26%</td>\n<td>3,972</td>\n<td>25%</td>\n</tr>\n<tr>\n<td>20-29</td>\n<td></td>\n<td></td>\n<td>5,013</td>\n<td>34%</td>\n<td>4,444</td>\n<td>28%</td>\n</tr>\n<tr>\n<td>Under 20</td>\n<td></td>\n<td></td>\n<td>1142</td>\n<td>8%</td>\n<td>941</td>\n<td>6%</td>\n</tr>\n</tbody>\n</table>\n<p>Thank you to everyone who made time to fill out the survey — we’re so happy you use WordPress, and we’re very grateful that you’re willing to share your experiences with us! Thanks also to everyone who spread the word about this survey, and to those of you who read all the way to the bottom of this post. <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f609.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n<p><small><a id=\"text\"></a>*Text Field Questions: Each survey included some questions that could be answered only by filling out a text field. In the case of the questions “What is the best thing about WordPress?” and “What is the most frustrating thing about WordPress?” we listed the five most common responses, aggregated when applicable. In the case of the question “What is your gender?” in the 2016 and 2017 surveys, we aggregated responses as best we could. Responses meant to obscure respondents’ gender entirely are aggregated in “prefer not to answer.”</small></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:\"5310\";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:33:\"\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 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2017/12/the-month-in-wordpress-november-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Dec 2017 11:00:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=5290\";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:354:\"The WordPress project recently released WordPress 4.9, “Tipton” — a new major release named in honor of musician and band leader Billy Tipton. Read on to find out more about this and other interesting news from around the WordPress world in November. WordPress 4.9 “Tipton” On November 16, WordPress 4.9 was released with new features […]\";s: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:4234:\"\n<p>The WordPress project recently released WordPress 4.9, “Tipton” — a new major release named in honor of musician and band leader Billy Tipton. Read on to find out more about this and other interesting news from around the WordPress world in November.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 4.9 “Tipton”</h2>\n\n\n\n<p>On November 16, <a href=\"https://wordpress.org/news/2017/11/tipton/\">WordPress 4.9 was released</a> with new features for publishers and developers alike. Release highlights include design locking, scheduling, and previews in the Customizer, an even more secure and usable code editing experience, a new gallery widget, and text widget improvements.</p>\n\n\n\n<p>The follow up security and maintenance, v4.9.1, <a href=\"https://wordpress.org/news/2017/11/wordpress-4-9-1-security-and-maintenance-release/\">has now been released</a> to tighten up the security of WordPress as a whole.</p>\n\n\n\n<p>To get involved in building WordPress Core, jump into the #core channel in the<a href=\"https://make.wordpress.org/chat/\"> Making WordPress Slack group</a>, and follow<a href=\"https://make.wordpress.org/core/\"> the Core team blog</a>.</p>\n\n\n\n<h2>Apply to Speak At WordCamp Europe 2018</h2>\n\n\n\n<p>The next edition of WordCamp Europe takes place in June, 2018. While the organizing team is still in the early stages of planning, <a href=\"https://2018.europe.wordcamp.org/2017/11/15/are-you-ready-to-speak-at-the-largest-wordpress-event-in-europe/\">they are accepting speaker applications</a>.</p>\n\n\n\n<p>WordCamp Europe is the largest WordCamp in the world and, along with WordCamp US, one of the flagship events of the WordCamp program — speaking at this event is a great way to give back to the global WordPress community by sharing your knowledge and expertise with thousands of WordPress enthusiasts.</p>\n\n\n\n<h2>Diversity Outreach Speaker Training Initiative</h2>\n\n\n\n<p>To help WordPress community organizers offer diverse speaker lineups, <a href=\"https://make.wordpress.org/community/2017/11/13/call-for-volunteers-diversity-outreach-speaker-training/\">a new community initiative has kicked off</a> to use existing <a href=\"https://make.wordpress.org/training/handbook/speaker-training/\">speaker training workshops</a> to demystify speaking requirements and help participants gain confidence in their ability to share their WordPress knowledge in a WordCamp session.</p>\n\n\n\n<p>The working group behind this initiative will be meeting regularly to discuss and plan how they can help local communities to train speakers for WordCamps and other events.</p>\n\n\n\n<p>To get involved in this initiative, you can join the meetings at 5pm UTC every other Wednesday in the #community-team channel of the<a href=\"https://make.wordpress.org/chat/\"> 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>\n <li><a href=\"https://2017.us.wordcamp.org/\">WordCamp US 2017</a> is happening on December 1-3 in Nashville, with the annual State of the Word talk happening on Saturday afternoon — <a href=\"https://2017.us.wordcamp.org/live-stream/\">the live stream of the entire event is available to view for free</a>.</li>\n <li><a href=\"https://xwp.co/tide-a-path-to-better-code-across-the-wordpress-ecosystem/\">Tide</a>, a new service from XWP designed to help users make informed plugin choices, is due to launch at WordCamp US.</li>\n <li>Gutenberg development is continuing rapidly, with <a href=\"https://make.wordpress.org/core/2017/11/28/whats-new-in-gutenberg-28th-november/\">a packed new release</a> and a focus on <a href=\"https://make.wordpress.org/test/2017/11/22/testing-flow-in-gutenberg/\">usability testing</a>.</li>\n <li>After some discussion among the community, <a href=\"https://make.wordpress.org/community/2017/11/10/discussion-micro-regional-wordcamps/\">a new type of micro-regional WordCamp</a> is going to be introduced into the global WordCamp program.</li>\n</ul>\n\n\n\n<p><em></em></p>\n\n\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em></p>\n\n\n\n<p><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:\"5290\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:36:\"\n \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:48:\"WordPress 4.9.1 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2017/11/wordpress-4-9-1-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Nov 2017 20:33:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5215\";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:359:\"WordPress 4.9.1 is now available. This is a security and maintenance release for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately. WordPress versions 4.9 and earlier are affected by four security issues which could potentially be exploited as part of a multi-vector attack. As part of the core team's […]\";s: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:\"John Blackbourn\";s: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:4287:\"\n<p>WordPress 4.9.1 is now available. This is a <strong>security and maintenance release</strong> for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately.</p>\n\n\n\n<p>WordPress versions 4.9 and earlier are affected by four security issues which could potentially be exploited as part of a multi-vector attack. As part of the core team's ongoing commitment to security hardening, the following fixes have been implemented in 4.9.1:</p>\n\n\n\n<ol>\n <li>Use a properly generated hash for the <code>newbloguser</code> key instead of a determinate substring.</li>\n <li>Add escaping to the language attributes used on <code>html</code> elements.</li>\n <li>Ensure the attributes of enclosures are correctly escaped in RSS and Atom feeds.</li>\n <li>Remove the ability to upload JavaScript files for users who do not have the <code>unfiltered_html</code> capability.</li>\n</ol>\n\n\n\n<p>Thank you to the reporters of these issues for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible security disclosure</a>: <a href=\"https://twitter.com/0x62626262\">Rahul Pratap Singh</a> and John Blackbourn.</p>\n\n\n\n<p>Eleven other bugs were fixed in WordPress 4.9.1. Particularly of note were:</p>\n\n\n\n<ul>\n <li>Issues relating to the caching of theme template files.</li>\n <li>A MediaElement JavaScript error preventing users of certain languages from being able to upload media files.</li>\n <li>The inability to edit theme and plugin files on Windows based servers.</li>\n</ul>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2017/11/28/wordpress-4-9-1-scheduled-for-november-29th/\">This post has more information about all of the issues fixed in 4.9.1 if you'd like to learn more</a>.</p>\n\n\n\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.1</a> or venture over to Dashboard → Updates and click "Update Now." Sites that support automatic background updates are already beginning to update automatically.</p>\n\n\n\n<p>Thank you to everyone who contributed to WordPress 4.9.1:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/la-geek/\">Angelika Reisiger</a>, <a href=\"https://profiles.wordpress.org/blobfolio/\">Blobfolio</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/edo888/\">edo888</a>, <a href=\"https://profiles.wordpress.org/erich_k4wp/\">Erich Munz</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/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/ibenic/\">Igor Benic</a>, <a href=\"https://profiles.wordpress.org/jfarthing84/\">Jeff Farthing</a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jeremyescott/\">jeremyescott</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnpgreen/\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/lenasterg/\">lenasterg</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mariovalney/\">Mário Valney</a>, <a href=\"https://profiles.wordpress.org/natacado/\">natacado</a>, <a href=\"https://profiles.wordpress.org/odysseygate/\">odyssey</a>, <a href=\"https://profiles.wordpress.org/precies/\">precies</a>, <a href=\"https://profiles.wordpress.org/stodorovic/\">Saša</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"5215\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:33:\"\n \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 4.9 “Tipton”\";s:7:\"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/2017/11/tipton/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 16 Nov 2017 01:16:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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=4968\";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:227:\"Announcing version 4.9 of WordPress, named “Tipton” in honor of jazz pianist and band leader Billy Tipton. New features in 4.9 will smooth your design workflow and keep you safe from coding errors. Download or update today!\";s: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:\"Mel Choyce\";s: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:40374:\"<h2 style=\"text-align: center\">Major Customizer Improvements, Code Error Checking, and More! ?</h2>\n\r\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2017/11/banner.png?fit=2400%2C1200&ssl=1\" alt=\"\" /></figure>\r\n\r\n\r\n\r\n<p>Version 4.9 of WordPress, named “Tipton” in honor of jazz musician and band leader Billy Tipton, is available for download or update in your WordPress dashboard. New features in 4.9 will smooth your design workflow and keep you safe from coding errors.</p>\r\n\r\n\r\n\r\n<p>Featuring design drafts, scheduling, and locking, along with preview links, the Customizer workflow improves collaboration for content creators. What’s more, code syntax highlighting and error checking will make for a clean and smooth site building experience. Finally, if all that wasn’t pretty great, we’ve got an awesome new Gallery widget and improvements to theme browsing and switching.</p>\r\n\r\n\r\n\r\n<hr class=\"wp-block-separator\" />\r\n\r\n\r\n\r\n<h2 style=\"text-align:center\">Customizer Workflow Improved </h2>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2017/11/customizer-workflow-improved-small.png?w=632&ssl=1\" alt=\"\" data-recalc-dims=\"1\" /></figure>\r\n\r\n\r\n\r\n<h3>Draft and Schedule Site Design Customizations</h3>\r\n\r\n\r\n\r\n<p>Yes, you read that right. Just like you can draft and revise posts and schedule them to go live on the date and time you choose, you can now tinker with your site’s design and schedule those design changes to go live as you please.</p>\r\n\r\n\r\n\r\n<h3>Collaborate with Design Preview Links</h3>\r\n\r\n\r\n\r\n<p>Need to get some feedback on proposed site design changes? WordPress 4.9 gives you a preview link you can send to colleagues and customers so that you can collect and integrate feedback before you schedule the changes to go live. Can we say collaboration++?</p>\r\n\r\n\r\n\r\n<h3>Design Locking Guards Your Changes</h3>\r\n\r\n\r\n\r\n<p>Ever encounter a scenario where two designers walk into a project and designer A overrides designer B’s beautiful changes? WordPress 4.9’s design lock feature (similar to post locking) secures your draft design so that no one can make changes to it or erase all your hard work.</p>\r\n\r\n\r\n\r\n<h3>A Prompt to Protect Your Work</h3>\r\n\r\n\r\n\r\n<p>Were you lured away from your desk before you saved your new draft design? Fear not, when you return, WordPress 4.9 will politely ask whether or not you’d like to save your unsaved changes.</p>\r\n\r\n\r\n\r\n<hr class=\"wp-block-separator\" />\r\n\r\n\r\n\r\n<h2 style=\"text-align:center\">Coding Enhancements</h2>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2017/11/coding-enhancements-small.png?w=632&ssl=1\" alt=\"\" data-recalc-dims=\"1\" /></figure>\r\n\r\n\r\n\r\n<h3>Syntax Highlighting and Error Checking? Yes, Please!</h3>\r\n\r\n\r\n\r\n<p>You’ve got a display problem but can’t quite figure out exactly what went wrong in the CSS you lovingly wrote. With syntax highlighting and error checking for CSS editing and the Custom HTML widget introduced in WordPress 4.8.1, you’ll pinpoint coding errors quickly. Practically guaranteed to help you scan code more easily, and suss out & fix code errors quickly.</p>\r\n\r\n\r\n\r\n<h3>Sandbox for Safety</h3>\r\n\r\n\r\n\r\n<p>The dreaded white screen. You’ll avoid it when working on themes and plugin code because WordPress 4.9 will warn you about saving an error. You’ll sleep better at night.</p>\r\n\r\n\r\n\r\n<h3>Warning: Potential Danger Ahead!</h3>\r\n\r\n\r\n\r\n<p>When you edit themes and plugins directly, WordPress 4.9 will politely warn you that this is a dangerous practice and will recommend that you draft and test changes before updating your file. Take the safe route: You’ll thank you. Your team and customers will thank you.</p>\r\n\r\n\r\n\r\n<hr class=\"wp-block-separator\" />\r\n\r\n\r\n\r\n<h2 style=\"text-align:center\">Even More Widget Updates </h2>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2017/11/even-more-widget-updates-small.png?w=632&ssl=1\" alt=\"\" data-recalc-dims=\"1\" /></figure>\r\n\r\n\r\n\r\n<h3>The New Gallery Widget</h3>\r\n\r\n\r\n\r\n<p>An incremental improvement to the media changes hatched in WordPress 4.8, you can now add a gallery via this new widget. Yes!</p>\r\n\r\n\r\n\r\n<h3>Press a Button, Add Media</h3>\r\n\r\n\r\n\r\n<p>Want to add media to your text widget? Embed images, video, and audio directly into the widget along with your text, with our simple but useful Add Media button. Woo!</p>\r\n\r\n\r\n\r\n<hr class=\"wp-block-separator\" />\r\n\r\n\r\n\r\n<h2 style=\"text-align:center\">Site Building Improvements </h2>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2017/11/site-building-improvements-small.png?w=632&ssl=1\" alt=\"\" data-recalc-dims=\"1\" /></figure>\r\n\r\n\r\n\r\n<h3>More Reliable Theme Switching</h3>\r\n\r\n\r\n\r\n<p>When you switch themes, widgets sometimes think they can just move location. Improvements in WordPress 4.9 offer more persistent menu and widget placement when you decide it’s time for a new theme. </p>\r\n\r\n\r\n\r\n<h3>Find and Preview the Perfect Theme</h3>\r\n\r\n\r\n\r\n<p>Looking for a new theme for your site? Now, from within the Customizer, you can search, browse, and preview over 2600 themes before deploying changes to your site. What’s more, you can speed your search with filters for subject, features, and layout.</p>\r\n\r\n\r\n\r\n<h3>Better Menu Instructions = Less Confusion</h3>\r\n\r\n\r\n\r\n<p>Were you confused by the steps to create a new menu? Perhaps no longer! We’ve ironed out the UX for a smoother menu creation process. Newly updated copy will guide you.</p>\r\n\r\n\r\n\r\n<hr class=\"wp-block-separator\" />\r\n\r\n\r\n\r\n<h2 style=\"text-align:center\">Lend a Hand with Gutenberg ?</h2>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2017/11/gutenberg-1.png?w=632&ssl=1\" alt=\"\" data-recalc-dims=\"1\" /></figure>\r\n\r\n\r\n\r\n<p>WordPress is working on a new way to create and control your content and we’d love to have your help. Interested in being an <a href=\"https://wordpress.org/plugins/gutenberg/\">early tester</a> or getting involved with the Gutenberg project? <a href=\"https://github.com/WordPress/gutenberg\">Contribute on GitHub</a>.</p>\r\n\r\n\r\n\r\n<p>(PS: this post was written in Gutenberg!)</p>\r\n\r\n\r\n\r\n<hr class=\"wp-block-separator\" />\r\n\r\n\r\n\r\n<h2 style=\"text-align:center\">Developer Happiness ?</h2>\r\n\r\n\r\n\r\n<h3><a href=\"https://make.wordpress.org/core/2017/11/01/improvements-to-the-customize-js-api-in-4-9/\">Customizer JS API Improvements</a></h3>\r\n\r\n\r\n\r\n<p>We’ve made numerous improvements to the Customizer JS API in WordPress 4.9, eliminating many pain points. (Hello, default parameters for constructs! Goodbye repeated ID for constructs!) There are also new base control templates, a date/time control, and section/panel/global notifications to name a few. <a href=\"https://make.wordpress.org/core/2017/11/01/improvements-to-the-customize-js-api-in-4-9/\">Check out the full list.</a></p>\r\n\r\n\r\n\r\n<h3><a href=\"https://make.wordpress.org/core/2017/10/22/code-editing-improvements-in-wordpress-4-9/\">CodeMirror available for use in your themes and plugins</a></h3>\r\n\r\n\r\n\r\n<p>We’ve introduced a new code editing library, CodeMirror, for use within core. CodeMirror allows for syntax highlighting, error checking, and validation when creating code writing or editing experiences within your plugins, like CSS or JavaScript include fields.</p>\r\n\r\n\r\n\r\n<h3><a href=\"https://make.wordpress.org/core/2017/10/30/mediaelement-upgrades-in-wordpress-4-9/\">MediaElement.js upgraded to 4.2.6</a></h3>\r\n\r\n\r\n\r\n<p>WordPress 4.9 includes an upgraded version of MediaElement.js, which removes dependencies on jQuery, improves accessibility, modernizes the UI, and fixes many bugs.</p>\r\n\r\n\r\n\r\n<h3><a href=\"https://make.wordpress.org/core/2017/10/15/improvements-for-roles-and-capabilities-in-4-9/\">Roles and Capabilities Improvements</a></h3>\r\n\r\n\r\n\r\n<p>New capabilities have been introduced that allow granular management of plugins and translation files. In addition, the site switching process in multisite has been fine-tuned to update the available roles and capabilities in a more reliable and coherent way.</p>\r\n\r\n\r\n\r\n<hr class=\"wp-block-separator\" />\r\n\r\n\r\n\r\n<h2>The Squad</h2>\r\n\r\n\r\n\r\n<p>This release was led by <a href=\"https://choycedesign.com/\">Mel Choyce</a> and <a href=\"https://weston.ruter.net/\">Weston Ruter</a>, with the help of the following fabulous folks. There are 443 contributors with props in this release, with 185 of them contributing for the first time. Pull up some Billy Tipton on your music service of choice, and check out some of their profiles:</p>\r\n\r\n\r\n\r\n<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/aaronrutley\">Aaron Rutley</a>, <a href=\"https://profiles.wordpress.org/ibachal\">Achal Jain</a>, <a href=\"https://profiles.wordpress.org/kawauso\">Adam Harley (Kawauso)</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adamwills\">AdamWills</a>, <a href=\"https://profiles.wordpress.org/adhun\">Adhun Anand</a>, <a href=\"https://profiles.wordpress.org/aegis123\">aegis123</a>, <a href=\"https://profiles.wordpress.org/afzalmultani\">Afzal Multani</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/ajayghaghretiya1\">Ajay Ghaghretiya</a>, <a href=\"https://profiles.wordpress.org/ajoah\">ajoah</a>, <a href=\"https://profiles.wordpress.org/soniakash\">Akash Soni</a>, <a href=\"https://profiles.wordpress.org/akbarhusen\">akbarhusen</a>, <a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/xavortm\">Alex Dimitrov</a>, <a href=\"https://profiles.wordpress.org/alpipego\">Alex Goller</a>, <a href=\"https://profiles.wordpress.org/alexvorn2\">Alexandru Vornicescu</a>, <a href=\"https://profiles.wordpress.org/alibasheer\">alibasheer</a>, <a href=\"https://profiles.wordpress.org/alxndr\">alxndr</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andreagobetti\">andreagobetti</a>, <a href=\"https://profiles.wordpress.org/euthelup\">Andrei Lupu</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/norcross\">Andrew Norcross</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/andrewtaylor-1\">Andrew Taylor</a>, <a href=\"https://profiles.wordpress.org/afragen\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/andizer\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/kelderic\">Andy Mercer</a>, <a href=\"https://profiles.wordpress.org/la-geek\">Angelika Reisiger</a>, <a href=\"https://profiles.wordpress.org/anhskohbo\">anhskohbo</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/ahortin\">Anthony Hortin</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/antonrinas\">antonrinas</a>, <a href=\"https://profiles.wordpress.org/appchecker\">appchecker</a>, <a href=\"https://profiles.wordpress.org/arena94\">arena94</a>, <a href=\"https://profiles.wordpress.org/bsop\">Arnaud Coolsaet</a>, <a href=\"https://profiles.wordpress.org/arnaudban\">ArnaudBan</a>, <a href=\"https://profiles.wordpress.org/aryamaaru\">Arun</a>, <a href=\"https://profiles.wordpress.org/mrasharirfan\">Ashar Irfan</a>, <a href=\"https://profiles.wordpress.org/atachibana\">atachibana</a>, <a href=\"https://profiles.wordpress.org/atanasangelovdev\">Atanas Angelov</a>, <a href=\"https://profiles.wordpress.org/avinapatel\">Avina Patel</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/barryceelen\">Barry Ceelen</a>, <a href=\"https://profiles.wordpress.org/bduclos\">bduclos</a>, <a href=\"https://profiles.wordpress.org/pixolin\">Bego Mario Garde</a>, <a href=\"https://profiles.wordpress.org/behzod\">Behzod Saidov</a>, <a href=\"https://profiles.wordpress.org/bcole808\">Ben Cole</a>, <a href=\"https://profiles.wordpress.org/empireoflight\">Ben Dunkle</a>, <a href=\"https://profiles.wordpress.org/benoitchantre\">Benoit Chantre</a>, <a href=\"https://profiles.wordpress.org/bnap00\">Bharat Parsiya</a>, <a href=\"https://profiles.wordpress.org/bhaveshkhadodara\">bhavesh khadodara</a>, <a href=\"https://profiles.wordpress.org/bplv\">Biplav</a>, <a href=\"https://profiles.wordpress.org/biranit\">Biranit</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/biskobe\">biskobe</a>, <a href=\"https://profiles.wordpress.org/bjornw\">BjornW</a>, <a href=\"https://profiles.wordpress.org/blackbam\">Blackbam</a>, <a href=\"https://profiles.wordpress.org/blobfolio\">Blobfolio</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/gitlost\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/bor0\">Boro Sitnikovski</a>, <a href=\"https://profiles.wordpress.org/bradparbs\">Brad Parbs</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/brentjettgmailcom\">Brent Jett</a>, <a href=\"https://profiles.wordpress.org/brianlayman\">Brian Layman</a>, <a href=\"https://profiles.wordpress.org/monopine\">Brian Meyer</a>, <a href=\"https://profiles.wordpress.org/borgesbruno\">Bruno Borges</a>, <a href=\"https://profiles.wordpress.org/bseddon\">bseddon</a>, <a href=\"https://profiles.wordpress.org/bhargavbhandari90\">Bunty</a>, <a href=\"https://profiles.wordpress.org/carldanley\">Carl Danley</a>, <a href=\"https://profiles.wordpress.org/poena\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/sixhours\">Caroline Moore</a>, <a href=\"https://profiles.wordpress.org/carolinegeven\">carolinegeven</a>, <a href=\"https://profiles.wordpress.org/caercam\">Charlie Merland</a>, <a href=\"https://profiles.wordpress.org/chetanchauhan\">Chetan Chauhan</a>, <a href=\"https://profiles.wordpress.org/chetan200891\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/ketuchetan\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/choongsavvii\">choong</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrishardie\">Chris Hardie</a>, <a href=\"https://profiles.wordpress.org/crunnells\">Chris Runnells</a>, <a href=\"https://profiles.wordpress.org/christian1012\">Christian Chung</a>, <a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/chsxf\">chsxf</a>, <a href=\"https://profiles.wordpress.org/chrisvendiadvertisingcom\">cjhaas</a>, <a href=\"https://profiles.wordpress.org/cliffseal\">Cliff Seal</a>, <a href=\"https://profiles.wordpress.org/code-monkey\">code-monkey</a>, <a href=\"https://profiles.wordpress.org/collizo4sky\">Collins Agbonghama</a>, <a href=\"https://profiles.wordpress.org/corvidism\">corvidism</a>, <a href=\"https://profiles.wordpress.org/csloisel\">csloisel</a>, <a href=\"https://profiles.wordpress.org/daedalon\">Daedalon</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber </a>, <a href=\"https://profiles.wordpress.org/danieltj\">Daniel James</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/dany2217\">dany2217</a>, <a href=\"https://profiles.wordpress.org/davepullig\">Dave Pullig</a>, <a href=\"https://profiles.wordpress.org/davefx\">DaveFX</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</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/davidbinda\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/turtlepod\">David Chandra Purnama</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/straussd\">David Strauss</a>, <a href=\"https://profiles.wordpress.org/jdtrower\">David Trower</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/daymobrew\">daymobrew</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/designsimply\">designsimply</a>, <a href=\"https://profiles.wordpress.org/diedeexterkate\">DiedeExterkate</a>, <a href=\"https://profiles.wordpress.org/dingo_bastard\">dingo-d</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dipeshkakadiya\">dipeshkakadiya</a>, <a href=\"https://profiles.wordpress.org/div33\">Divyesh Ladani</a>, <a href=\"https://profiles.wordpress.org/dency\">Dixita Dusara</a>, <a href=\"https://profiles.wordpress.org/dixitadusara\">dixitadusara</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dominikschwind-1\">Dominik Schwind</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/dsawardekar\">dsawardekar</a>, <a href=\"https://profiles.wordpress.org/kucrut\">Dzikri Aziz</a>, <a href=\"https://profiles.wordpress.org/eatonz\">Eaton</a>, <a href=\"https://profiles.wordpress.org/eclev91\">eclev91</a>, <a href=\"https://profiles.wordpress.org/eddhurst\">Edd Hurst</a>, <a href=\"https://profiles.wordpress.org/edo888\">edo888</a>, <a href=\"https://profiles.wordpress.org/egregor\">EGregor</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/elvishp2006\">elvishp2006</a>, <a href=\"https://profiles.wordpress.org/enricosorcinelli\">enrico.sorcinelli</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/erich_k4wp\">Erich Munz</a>, <a href=\"https://profiles.wordpress.org/circlecube\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/eventualo\">eventualo</a>, <a href=\"https://profiles.wordpress.org/fab1en\">Fabien Quatravaux</a>, <a href=\"https://profiles.wordpress.org/psiico\">FancyThought</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/fergbrain\">fergbrain</a>, <a href=\"https://profiles.wordpress.org/mista-flo\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/gmariani405\">Gabriel Mariani</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">Garth Mortensen</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/soulseekah\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/girishpanchal\">Girish Lohar</a>, <a href=\"https://profiles.wordpress.org/gkloveweb\">Govind Kumar</a>, <a href=\"https://profiles.wordpress.org/grahamarmfield\">Graham Armfield</a>, <a href=\"https://profiles.wordpress.org/gregross\">Greg Ross</a>, <a href=\"https://profiles.wordpress.org/gcorne\">Gregory Cornelius</a>, <a href=\"https://profiles.wordpress.org/grosbouff\">grosbouff</a>, <a href=\"https://profiles.wordpress.org/wido\">Guido Scialfa</a>, <a href=\"https://profiles.wordpress.org/ghosttoast\">Gustave F. Gerhardt</a>, <a href=\"https://profiles.wordpress.org/guzzilar\">guzzilar</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani\">Hardeep Asrani</a>, <a href=\"https://profiles.wordpress.org/hazemnoor\">Hazem Noor</a>, <a href=\"https://profiles.wordpress.org/hazimayesh\">hazimayesh</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/henrywright-1\">Henry</a>, <a href=\"https://profiles.wordpress.org/henrywright\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/herregroen\">herregroen</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</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/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/jcc9873\">Iacopo C</a>, <a href=\"https://profiles.wordpress.org/ibenic\">Igor Benic</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/ippei-sumida\">Ippei Sumida</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/ireneyoast\">Irene Strikkers</a>, <a href=\"https://profiles.wordpress.org/ivankristianto\">Ivan Kristianto</a>, <a href=\"https://profiles.wordpress.org/ixmati\">ixmati</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jhoffmann\">j.hoffmann</a>, <a href=\"https://profiles.wordpress.org/jnylen0\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jankimoradiya\">Janki Moradiya</a>, <a href=\"https://profiles.wordpress.org/octalmage\">Jason Stallings</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jfarthing84\">Jeff Farthing</a>, <a href=\"https://profiles.wordpress.org/jbpaul17\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/jmdodd\">Jennifer M. Dodd</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/jeremyescott\">Jeremy Scott</a>, <a href=\"https://profiles.wordpress.org/jjcomack\">Jimmy Comack</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/jkhongusc\">jkhongusc</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johneckman\">John Eckman</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnregan3\">John Regan</a>, <a href=\"https://profiles.wordpress.org/johnpgreen\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/johnroper100\">johnroper100</a>, <a href=\"https://profiles.wordpress.org/jonathanbardo\">Jonathan Bardo</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/chanthaboune\">Josepha</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/joyously\">Joy</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/jsepia\">jsepia</a>, <a href=\"https://profiles.wordpress.org/jsonfry\">jsonfry</a>, <a href=\"https://profiles.wordpress.org/juhise\">Juhi Saxena</a>, <a href=\"https://profiles.wordpress.org/jlambe\">Julien</a>, <a href=\"https://profiles.wordpress.org/kopepasah\">Justin Kopepasah</a>, <a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/thekt12\">Karthik Thayyil</a>, <a href=\"https://profiles.wordpress.org/keesiemeijer\">keesiemeijer</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/captainn\">Kevin Newman</a>, <a href=\"https://profiles.wordpress.org/kpdesign\">Kim Parsell</a>, <a href=\"https://profiles.wordpress.org/kiranpotphode\">Kiran Potphode</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/kmgalanakis\">Konstantinos Galanakis</a>, <a href=\"https://profiles.wordpress.org/koopersmith\">koopersmith</a>, <a href=\"https://profiles.wordpress.org/kekkakokkers\">Kristin Kokkersvold</a>, <a href=\"https://profiles.wordpress.org/lalitpendhare\">lalitpendhare</a>, <a href=\"https://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"https://profiles.wordpress.org/laurelfulford\">Laurel Fulford</a>, <a href=\"https://profiles.wordpress.org/lemacarl\">lemacarl</a>, <a href=\"https://profiles.wordpress.org/lenasterg\">lenasterg</a>, <a href=\"https://profiles.wordpress.org/lessbloat\">lessbloat</a>, <a href=\"https://profiles.wordpress.org/llemurya\">llemurya</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/mariovalney\">Mário Valney</a>, <a href=\"https://profiles.wordpress.org/m1tk00\">m1tk00</a>, <a href=\"https://profiles.wordpress.org/maedahbatool\">Maedah Batool</a>, <a href=\"https://profiles.wordpress.org/mp518\">Mahesh Prajapati</a>, <a href=\"https://profiles.wordpress.org/mahvash-fatima\">Mahvash Fatima</a>, <a href=\"https://profiles.wordpress.org/travel_girl\">Maja Benke</a>, <a href=\"https://profiles.wordpress.org/mako09\">Mako</a>, <a href=\"https://profiles.wordpress.org/manolis09\">manolis09</a>, <a href=\"https://profiles.wordpress.org/manuelaugustin\">Manuel Augustin</a>, <a href=\"https://profiles.wordpress.org/mbootsman\">Marcel Bootsman</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mariusvetrici\">Marius Vetrici</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mrwweb\">Mark Root-Wiley</a>, <a href=\"https://profiles.wordpress.org/markcallen\">markcallen</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/matheusgimenez\">MatheusGimenez</a>, <a href=\"https://profiles.wordpress.org/mgibbs189\">Matt Gibbs</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/matthiasthiel\">matthias.thiel</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/maximeculea\">Maxime Culea</a>, <a href=\"https://profiles.wordpress.org/mdifelice\">mdifelice</a>, <a href=\"https://profiles.wordpress.org/megane9988\">megane9988</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/menakas\">Menaka S.</a>, <a href=\"https://profiles.wordpress.org/michaelarestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/mizejewski\">Michele Mizejewski</a>, <a href=\"https://profiles.wordpress.org/stubgo\">Miina Sikk</a>, <a href=\"https://profiles.wordpress.org/mihai2u\">Mike Crantea</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikeschinkel\">Mike Schinkel</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</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/milindmore22\">Milind More</a>, <a href=\"https://profiles.wordpress.org/mirucon\">Mirucon</a>, <a href=\"https://profiles.wordpress.org/studionashvegas\">Mitch Canter</a>, <a href=\"https://profiles.wordpress.org/mitraval192\">Mithun Raval</a>, <a href=\"https://profiles.wordpress.org/mkomar\">mkomar</a>, <a href=\"https://profiles.wordpress.org/monikarao\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mt8biz\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/msebel\">msebel</a>, <a href=\"https://profiles.wordpress.org/munyagu\">munyagu</a>, <a href=\"https://profiles.wordpress.org/mythemeshop\">MyThemeShop</a>, <a href=\"https://profiles.wordpress.org/ndoublehwp\">N\'DoubleH</a>, <a href=\"https://profiles.wordpress.org/nathanatmoz\">Nathan Johnson</a>, <a href=\"https://profiles.wordpress.org/nenad\">nenad</a>, <a href=\"https://profiles.wordpress.org/nicbertino\">nic.bertino</a>, <a href=\"https://profiles.wordpress.org/ndiego\">Nick Diego</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey </a>, <a href=\"https://profiles.wordpress.org/nikeo\">Nicolas GUILLAUME</a>, <a href=\"https://profiles.wordpress.org/nicollle\">nicollle</a>, <a href=\"https://profiles.wordpress.org/jainnidhi\">Nidhi Jain</a>, <a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/nileshdudakiya94\">Nileshdudakiya94</a>, <a href=\"https://profiles.wordpress.org/nishitlangaliya\">Nishit Langaliya</a>, <a href=\"https://profiles.wordpress.org/justnorris\">Norris</a>, <a href=\"https://profiles.wordpress.org/obradovic\">obradovic</a>, <a href=\"https://profiles.wordpress.org/odysseygate\">odyssey</a>, <a href=\"https://profiles.wordpress.org/ov3rfly\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/paaljoachim\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/palmiak\">palmiak</a>, <a href=\"https://profiles.wordpress.org/parthsanghvi\">Parth Sanghvi</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/obrienlabs\">Pat O\'Brien</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/pauldechov\">Paul Dechov</a>, <a href=\"https://profiles.wordpress.org/natacado\">Paul Paradise</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/sirbrillig\">Payton Swick</a>, <a href=\"https://profiles.wordpress.org/pcarvalho\">pcarvalho</a>, <a href=\"https://profiles.wordpress.org/pedromendonca\">Pedro Mendonça</a>, <a href=\"https://profiles.wordpress.org/gungeekatx\">Pete Nelson</a>, <a href=\"https://profiles.wordpress.org/pessoft\">Peter \"Pessoft\" Kolínek</a>, <a href=\"https://profiles.wordpress.org/donutz\">Peter J. Herrel</a>, <a href=\"https://profiles.wordpress.org/petertoi\">Peter Toi</a>, <a href=\"https://profiles.wordpress.org/westi\">Peter Westwood</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/philipjohn\">Philip John</a>, <a href=\"https://profiles.wordpress.org/delawski\">Piotr Delawski</a>, <a href=\"https://profiles.wordpress.org/mordauk\">Pippin Williamson</a>, <a href=\"https://profiles.wordpress.org/plastikschnitzer\">Plastikschnitzer</a>, <a href=\"https://profiles.wordpress.org/powerzilly\">powerzilly</a>, <a href=\"https://profiles.wordpress.org/pratikgandhi\">Pratik Gandhi</a>, <a href=\"https://profiles.wordpress.org/precies\">precies</a>, <a href=\"https://profiles.wordpress.org/presslabs\">Presslabs</a>, <a href=\"https://profiles.wordpress.org/punit5658\">Punit Patel</a>, <a href=\"https://profiles.wordpress.org/purnendu\">Purnendu Dash</a>, <a href=\"https://profiles.wordpress.org/r-a-y\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rafa8626\">Rafael Miranda</a>, <a href=\"https://profiles.wordpress.org/rahmohn\">Rahmohn</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/ramon-fincken\">ramon fincken</a>, <a href=\"https://profiles.wordpress.org/jontyravi\">Ravi Vaghela</a>, <a href=\"https://profiles.wordpress.org/rclations\">RC Lations</a>, <a href=\"https://profiles.wordpress.org/redrambles\">redrambles</a>, <a href=\"https://profiles.wordpress.org/arena\">RENAUT</a>, <a href=\"https://profiles.wordpress.org/greuben\">Reuben Gunday</a>, <a href=\"https://profiles.wordpress.org/rfair404\">rfair404</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/riddhiehta02\">Riddhi Mehta</a>, <a href=\"https://profiles.wordpress.org/rinkuyadav999\">Rinku Y</a>, <a href=\"https://profiles.wordpress.org/rcutmore\">Rob Cutmore</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/ronakganatra\">Ronak Ganatra</a>, <a href=\"https://profiles.wordpress.org/rugved\">rugved</a>, <a href=\"https://profiles.wordpress.org/rushabh4486\">Rushabh Shah</a>, <a href=\"https://profiles.wordpress.org/ryan\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/ryanduff\">Ryan Duff</a>, <a href=\"https://profiles.wordpress.org/stunnedbeast\">Ryan Holmes</a>, <a href=\"https://profiles.wordpress.org/rmarks\">Ryan Marks</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/ohryan\">Ryan Neudorf</a>, <a href=\"https://profiles.wordpress.org/ryanplas\">Ryan Plas</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/ryanrolds\">ryanrolds</a>, <a href=\"https://profiles.wordpress.org/ryotsun\">ryotsun</a>, <a href=\"https://profiles.wordpress.org/stodorovic\">Saša</a>, <a href=\"https://profiles.wordpress.org/manchumahara\">Sabuj Kundu</a>, <a href=\"https://profiles.wordpress.org/sagarprajapati\">Sagar Prajapati</a>, <a href=\"https://profiles.wordpress.org/sagarladani\">sagarladani</a>, <a href=\"https://profiles.wordpress.org/sa3idho\">Said El Bakkali</a>, <a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/viralsampat\">Sampat Viral</a>, <a href=\"https://profiles.wordpress.org/samuelsidler\">Samuel Sidler</a>, <a href=\"https://profiles.wordpress.org/otto42\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/tinkerbelly\">sarah semark</a>, <a href=\"https://profiles.wordpress.org/sathyapulse\">sathyapulse</a>, <a href=\"https://profiles.wordpress.org/sboisvert\">sboisvert</a>, <a href=\"https://profiles.wordpress.org/scottdeluzio\">Scott DeLuzio</a>, <a href=\"https://profiles.wordpress.org/sc0ttkclark\">Scott Kingsley Clark</a>, <a href=\"https://profiles.wordpress.org/scottlee\">Scott Lee</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</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/sgr33n\">Sergio De Falco</a>, <a href=\"https://profiles.wordpress.org/shamim51\">Shamim Hasan</a>, <a href=\"https://profiles.wordpress.org/shooper\">Shawn Hooper</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/nomnom99\">Siddharth Thevaril</a>, <a href=\"https://profiles.wordpress.org/pross\">Simon Prosser</a>, <a href=\"https://profiles.wordpress.org/slaffik\">Slava Abakumov</a>, <a href=\"https://profiles.wordpress.org/someecards\">someecards</a>, <a href=\"https://profiles.wordpress.org/soean\">Soren Wrede</a>, <a href=\"https://profiles.wordpress.org/spencerfinnell\">spencerfinnell</a>, <a href=\"https://profiles.wordpress.org/spocke\">spocke</a>, <a href=\"https://profiles.wordpress.org/metodiew\">Stanko Metodiev</a>, <a href=\"https://profiles.wordpress.org/stephdau\">Stephane Daury (stephdau)</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stephenharris\">Stephen Harris</a>, <a href=\"https://profiles.wordpress.org/stevegrunwell\">Steve Grunwell</a>, <a href=\"https://profiles.wordpress.org/stevepuddick\">Steve Puddick</a>, <a href=\"https://profiles.wordpress.org/stevenlinx\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/skostadinov\">Stoyan Kostadinov</a>, <a href=\"https://profiles.wordpress.org/dualcube_subrata\">Subrata Mal</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/sudar\">Sudar Muthu</a>, <a href=\"https://profiles.wordpress.org/musus\">Susumu Seino</a>, <a href=\"https://profiles.wordpress.org/svrooij\">svrooij</a>, <a href=\"https://profiles.wordpress.org/takahashi_fumiki\">Takahashi Fumiki</a>, <a href=\"https://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/buley\">Taylor</a>, <a href=\"https://profiles.wordpress.org/tejas5989\">tejas5989</a>, <a href=\"https://profiles.wordpress.org/terwdan\">terwdan</a>, <a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/thulshof\">Thijs Hulshof</a>, <a href=\"https://profiles.wordpress.org/thingsym\">thingsym</a>, <a href=\"https://profiles.wordpress.org/tfirdaus\">Thoriq Firdaus</a>, <a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tmatsuur\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tobi823\">tobi823</a>, <a href=\"https://profiles.wordpress.org/toddnestor\">Todd Nestor</a>, <a href=\"https://profiles.wordpress.org/tobifjellner\">Tor-Bjorn Fjellner</a>, <a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/toru\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/toscho\">toscho</a>, <a href=\"https://profiles.wordpress.org/transl8or\">transl8or</a>, <a href=\"https://profiles.wordpress.org/truongwp\">truongwp</a>, <a href=\"https://profiles.wordpress.org/tuanmh\">tuanmh</a>, <a href=\"https://profiles.wordpress.org/tv-productions\">TV productions</a>, <a href=\"https://profiles.wordpress.org/uicestone\">uicestone</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/umangvaghela123\">Umang Vaghela</a>, <a href=\"https://profiles.wordpress.org/umeshnevase\">Umesh Nevase</a>, <a href=\"https://profiles.wordpress.org/upadalavipul\">upadalavipul</a>, <a href=\"https://profiles.wordpress.org/utkarshpatel\">Utkarsh</a>, <a href=\"https://profiles.wordpress.org/vhauri\">vhauri</a>, <a href=\"https://profiles.wordpress.org/williampatton\">williampatton</a>, <a href=\"https://profiles.wordpress.org/withinboredom\">withinboredom</a>, <a href=\"https://profiles.wordpress.org/wojtekszkutnik\">Wojtek Szkutnik</a>, <a href=\"https://profiles.wordpress.org/xkon\">Xenos (xkon) Konstantinos</a>, <a href=\"https://profiles.wordpress.org/yahil\">Yahil Madakiya</a>, <a href=\"https://profiles.wordpress.org/yonivh\">yonivh</a>, <a href=\"https://profiles.wordpress.org/yrpwayne\">yrpwayne</a>, <a href=\"https://profiles.wordpress.org/zachwtx\">zachwtx</a>, and <a href=\"https://profiles.wordpress.org/zanematthew\">Zane Matthew</a>.\r\n\r\n\r\n\r\n<p>Finally, thanks to all the community translators who worked on WordPress 4.9. Their efforts bring WordPress 4.9 fully translated to 43 languages at release time, with more on the way.</p>\r\n\r\n\r\n\r\n<p>Do you want to report on WordPress 4.9? <a href=\"https://s.w.org/images/core/4.9/wp-4-9_press-kit.zip\">We've compiled a press kit featuring information about the release features, and some media assets to help you along</a>.</p>\r\n\r\n\r\n\r\n<p>If you want to follow along or help out, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\r\n\r\n\r\n\r\n<p>Thanks for choosing WordPress!</p>\r\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:\"4968\";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:36:\"\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 4.9 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2017/11/wordpress-4-9-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 Nov 2017 06:53: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:2:{i:0;a:5:{s:4:\"data\";s:13:\"Documentation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}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=5184\";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:345:\"The third release candidate for WordPress 4.9 is now available. A release candidate (RC) means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. In fact, we did miss some things in RC1 and RC2. This third release candidate was not originally scheduled, but […]\";s: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:\"Weston Ruter\";s: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:4169:\"<p>The third release candidate for WordPress 4.9 is now available.</p>\n<p>A release candidate (RC) means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. In fact, we did miss some things in RC1 and RC2. This third release candidate was not originally scheduled, but due a number of defects uncovered through your testing of RC2 (thank you!), we are putting out another 4.9 release candidate.</p>\n<p>We hope to ship WordPress 4.9 on <strong>Tuesday, November 14</strong> (that’s <em>tomorrow</em>) at 23:00 UTC, but we still need your help to get there. If you haven’t tested 4.9 yet, now is the time! If there are additional defects uncovered through testing between now and the release time, we may delay the 4.9 release to the following day.</p>\n<p>To test WordPress 4.9, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.9-RC3.zip\">download the release candidate here</a> (zip).</p>\n<p>We’ve made <a href=\"https://core.trac.wordpress.org/log/branches/4.9?action=stop_on_copy&mode=stop_on_copy&rev=42178&stop_rev=42133\">just over 20 changes</a> since releasing RC2 last week (as we did between RC1 and RC2). For more details about what’s new in version 4.9, check out the <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-3/\">Beta 3</a>, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-4/\">Beta 4</a>, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-release-candidate/\">RC1</a>, and <a href=\"https://wordpress.org/news/2017/11/wordpress-4-9-release-candidate-2/\">RC2</a> blog posts. A few specific areas to test in RC3:</p>\n<ul>\n<li>Switching between the Visual and Text tabs of the editor, and the syncing of the cursor between those two tabs.</li>\n<li>Overriding linting errors in the Customizer’s Additional CSS editor.</li>\n<li>Adding nav menu items for Custom Links in the Customizer.</li>\n<li>Scheduling customization drafts (stubbed posts/pages) for publishing in the Customizer.</li>\n<li>Autosave revisions for changes in the Customizer.</li>\n<li>About page styling.</li>\n</ul>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.9 and update your plugin’s <em>Tested up to</em> version in the readme to 4.9. If you find compatibility problems please be sure to post to the support forums so we can figure those out before the final release — we work hard to avoid breaking things. Please see the summative <a href=\"https://make.wordpress.org/core/2017/11/07/wordpress-4-9-field-guide/\">field guide</a> to the 4.9 <a href=\"https://make.wordpress.org/core/tag/4.9+dev-notes/\">developer notes</a> on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p><em>Didn’t squash them all <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f41b.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></em><br />\n<em>We want to release Tuesday</em><br />\n<em>New features not bugs <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/2728.png\" alt=\"✨\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></em></p>\n<p>Thanks for your continued help testing out the latest versions of WordPress.</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:\"5184\";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:36:\"\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 4.9 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/2017/11/wordpress-4-9-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, 07 Nov 2017 05:33: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: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=5047\";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:342:\"The second release candidate for WordPress 4.9 is now available. A release candidate (RC) means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.9 on Tuesday, November 14 (just over one week from now), but we need your help […]\";s: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:\"Weston Ruter\";s: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:3424:\"<p>The second release candidate for WordPress 4.9 is now available.</p>\n<p>A release candidate (RC) means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.9 on <strong>Tuesday, November 14</strong> (just over <em>one week</em> from now), but we need your help to get there. If you haven’t tested 4.9 yet, now is the time!</p>\n<p>To test WordPress 4.9, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.9-RC2.zip\">download the release candidate here</a> (zip).</p>\n<p>We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&mode=stop_on_copy&rev=42124&stop_rev=42049&limit=100&sfp_email=&sfph_mail=\">just over 20 changes</a> since releasing RC 1 last week. For more details about what’s new in version 4.9, check out the <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-3/\">Beta 3</a>, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-4/\">Beta 4</a>, and <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-release-candidate/\">RC1</a> blog posts. Specific areas to test in RC2:</p>\n<ul>\n<li>Theme installation in the Customizer.</li>\n<li>Scheduling changes for publishing in the Customizer.</li>\n<li>Switching themes with live preview in the Customizer.</li>\n</ul>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.9 and update your plugin’s <em>Tested up to</em> version in the readme to 4.9. If you find compatibility problems please be sure to post to the support forums so we can figure those out before the final release — we work hard to avoid breaking things. Please see the summative <a href=\"https://make.wordpress.org/core/2017/11/07/wordpress-4-9-field-guide/\">field guide</a> to the 4.9 <a href=\"https://make.wordpress.org/core/tag/4.9+dev-notes/\">developer notes</a> on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p>This week’s haiku is courtesy of <a href=\'https://profiles.wordpress.org/melchoyce/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>melchoyce</a>:</p>\n<p><em>We squashed all the bugs <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f41b.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></em><br />\n<em>But uh, if not, let us know</em><br />\n<em>Also, test your stuff</em></p>\n<p>Thanks for your continued help testing out the latest versions of WordPress.</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:\"5047\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:33:\"\n \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: October 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2017/11/the-month-in-wordpress-october-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Nov 2017 12:02: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: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=5044\";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:\"While this month we focused on building new features for WordPress core, we advanced other areas of the project too. Read on to learn more about what the WordPress project accomplished during the month of October. Take the 2017 Annual WordPress User Survey The annual WordPress User Survey is a great opportunity for you to […]\";s: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:6180:\"\n<p>While this month we focused on building new features for WordPress core, we advanced other areas of the project too. Read on to learn more about what the WordPress project accomplished during the month of October.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Take the 2017 Annual WordPress User Survey</h2>\n\n\n\n<p>The annual WordPress User Survey is a great opportunity for you to provide your feedback about how you use WordPress. This year is no exception, as <a href=\"https://wordpressdotorg.polldaddy.com/s/wordpress-2017-survey\">the 2017 WordPress User Survey</a> is out now.</p>\n\n\n\n<p>The information collected in the survey is used to make informed decisions about improvements across the WordPress project, so your answers are incredibly valuable and help shape the future of the platform.</p>\n\n\n\n<h2>WordPress 4.8.3 Security Release</h2>\n\n\n\n<p>At the end of October, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-8-3-security-release/\">WordPress 4.8.3 was released</a> containing an important security fix for all previous versions of WordPress. If your WordPress installation has not updated automatically, please update it now to protect your site.</p>\n\n\n\n<p>This security issue was brought to light by a community member, so if you ever discover a security vulnerability in WordPress core, please do the same and <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">disclose it responsibly</a>.</p>\n\n\n\n<h2>WordPress 4.9 Nearly Ready for Release</h2>\n\n\n\n<p>WordPress 4.9 was in rapid development this month. We released four beta versions and published a <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-release-candidate/\">release candidate</a>. The target for shipping WordPress 4.9 is November 14 — just two short weeks away. With many new features, this is a hugely exciting release that improves WordPress’ user experience considerably. Notably, you’ll see <a href=\"https://make.wordpress.org/core/2017/10/24/a-new-themes-experience-in-the-customizer/\">improvements to the theme selection experience</a>, plenty of <a href=\"https://make.wordpress.org/core/2017/10/24/widget-improvements-in-wordpress-4-9/\">widget enhancements</a>, drastically improved <a href=\"https://make.wordpress.org/core/2017/10/22/code-editing-improvements-in-wordpress-4-9/\">code editing</a>, and much better <a href=\"https://make.wordpress.org/core/2017/10/15/improvements-for-roles-and-capabilities-in-4-9/\">user role management</a>.</p>\n\n\n\n<p>To get involved in building WordPress Core, jump into the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>, and follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>.</p>\n\n\n\n<h2>WordPress Charity Hackathons are Growing</h2>\n\n\n\n<p>For the last few years, the number of <a href=\"https://doaction.org/\">do_action series of WordPress charity hackathons</a> has grown around the world. What started as a community event to assist local nonprofit organizations, has become something many WordPress communities are replicating in an increasing number of cities.</p>\n\n\n\n<p>As of this month, do_action events have been hosted in Cape Town and Johannesburg, South Africa, Beirut, Lebanon, Austin, Texas, and Montréal, Canada. In addition, events are now scheduled for <a href=\"https://doaction.org/event/bristol-2018/\">Bristol, England</a> and <a href=\"https://doaction.org/event/zurich-2018/\">Zurich, Switzerland</a> in 2018.</p>\n\n\n\n<p>To get involved in organizing a do_action event locally, read <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/\">the do_action organizer’s handbook</a> and join the #community-events channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Gutenberg Development Advances</h2>\n\n\n\n<p>While work steadily continues on Gutenberg — the new editor for WordPress core — one update from this month addresses one of the primary concerns that some people shared about the project.</p>\n\n\n\n<p>Up until <a href=\"https://make.wordpress.org/core/2017/10/24/whats-new-in-gutenberg-24th-october/\">the release on October 24</a>, Gutenberg did not support the meta boxes that so many WordPress content creators rely on. The new editor now has initial support for meta boxes as well as a host of other critical features for content creation in WordPress.</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/\">Test out Gutenberg</a> right now and help develop it by joining the #core-editor channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a> and following the <a href=\"https://make.wordpress.org/core/\">Core team blog</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul>\n <li>DonateWC, a new initiative that assists people in attending WordCamps, <a href=\"https://donatewc.org/wordcamp-stories/wordcamp-cape-town-experience/\">sponsored Trust Nhokovedzo from Harare, Zimbabwe</a> to speak at WordCamp Cape Town, South Africa this month.</li>\n <li><a href=\"https://woocommerce.com/2017/10/saying-goodbye-to-canvas/\">The popular Canvas theme was retired</a> this month to allow WooCommerce to focus on moving their products forward more effectively.</li>\n <li>The next installment of Camp Press, the WordPress community retreat event, will take place <a href=\"https://camp.press/event/iceland2018/\">in Iceland</a>.</li>\n <li>If you run a WordPress meetup group, but are struggling to find content for your events, the WordPress Marketing team <a href=\"https://make.wordpress.org/community/2017/10/04/supporting-for-meetups-with-low-content/\">has put together some ideas</a> to help.</li>\n <li><a href=\"https://2017.us.wordcamp.org/\">WordCamp US 2017</a> is just around the corner — there’s still time to grab your tickets.</li>\n</ul>\n\n\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</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:\"5044\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:39:\"\n \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:32:\"WordPress 4.8.3 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2017/10/wordpress-4-8-3-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 31 Oct 2017 14:20: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"4.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:34:\"https://wordpress.org/news/?p=5035\";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:378:\"WordPress 4.8.3 is now available. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.8.2 and earlier are affected by an issue where $wpdb->prepare() can create unexpected and unsafe queries leading to potential SQL injection (SQLi). WordPress core is not directly vulnerable to […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gary Pendergast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1337:\"<p>WordPress 4.8.3 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.8.2 and earlier are affected by an issue where <code>$wpdb->prepare()</code> can create unexpected and unsafe queries leading to potential SQL injection (SQLi). WordPress core is not directly vulnerable to this issue, but we’ve added hardening to prevent plugins and themes from accidentally causing a vulnerability. Reported by <a href=\"https://twitter.com/ircmaxell\">Anthony Ferrara</a>.</p>\n<p>This release includes a change in behaviour for the <code>esc_sql()</code> function. Most developers will not be affected by this change, you can read more details in the <a href=\"https://make.wordpress.org/core/2017/10/31/changed-behaviour-of-esc_sql-in-wordpress-4-8-3/\">developer note</a>.</p>\n<p>Thank you to the reporter of this issue for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.8.3</a> or venture over to Dashboard → Updates and simply click “Update Now.” Sites that support automatic background updates are already beginning to update to WordPress 4.8.3.</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:\"5035\";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:36:\"\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:31:\"WordPress 4.9 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2017/10/wordpress-4-9-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 31 Oct 2017 04:42:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s: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=4963\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:329:\"The release candidate for WordPress 4.9 is now available. RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.9 on Tuesday, November 14, but we need your help to get there. If you haven’t tested 4.9 yet, […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Mel Choyce\";s: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:3275:\"<p>The release candidate for WordPress 4.9 is now available.</p>\n<p>RC means we think we’re done, but with millions of users and thousands of plugins and themes, it’s possible we’ve missed something. We hope to ship WordPress 4.9 on <strong>Tuesday, November 14</strong>, but we need your help to get there. If you haven’t tested 4.9 yet, now is the time!</p>\n<p>To test WordPress 4.9, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.9-RC1.zip\">download the release candidate here</a> (zip).</p>\n<p>We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&mode=stop_on_copy&rev=42049&stop_rev=42022&limit=100&sfp_email=&sfph_mail=\">almost 30 changes</a> since releasing Beta 4 last week. For more details about what’s new in version 4.9, check out the <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-3/\">Beta 3</a>, and <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-4/\">Beta 4</a> blog posts.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.9 and update your plugin’s <em>Tested up to</em> version in the readme to 4.9. If you find compatibility problems please be sure to post to the support forums so we can figure those out before the final release — we work hard to avoid breaking things. An in-depth field guide to developer-focused changes is coming soon on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>. In the meantime, you can review the <a href=\"https://make.wordpress.org/core/tag/4.9+dev-notes/\">developer notes for 4.9</a>.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p>This week’s haiku is courtesy of <a href=\'https://profiles.wordpress.org/pento/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>pento</a>:</p>\n<p><em>this is halloween <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f383.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></em><br />\n<em>scary, spooky, candy day <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f47b.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></em><br />\n<em>rc1 is sweet <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f36c.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></em></p>\n<p>Thanks for your continued help testing out the latest versions of WordPress.</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:\"4963\";s: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 Jan 2018 23:57:37 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:\"Thu, 04 Jan 2018 06:37:41 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:11:\"HIT lax 249\";}}s:5:\"build\";s:14:\"20130911090210\";}','no'),(13718,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1515153457','no'),(13719,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1515110257','no'),(13720,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1515153458','no'),(13721,'_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:25:\"Matt: Morten on Gutenberg\";s:7:\"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=47780\";s:7:\"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/2018/01/morten-on-gutenberg/\";s: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:211:\"<p>Morten Rand-Hendriksen's talk and demo on Gutenberg from WordCamp US is an excellent overview of where it is, where it could go, and some VR stuff thrown in there for fun. Definitely worth the watch.</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 Jan 2018 20: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: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: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:81:\"WPTavern: WPWeekly Episode 300 – Interview with Matt ‘Gutenbeard’ Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=77276&preview=true&preview_id=77276\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/wpweekly-episode-300-interview-with-matt-gutenbeard-mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1492:\"<p>In this the 300th episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I interview <a href=\"https://ma.tt/\">Matt ‘Gutenbeard’ Mullenweg</a>, co-creator of the WordPress project. We discuss a range of topics including, the somewhat controversial poetry reading that included a curse word prior to the State of the Word, the WordPress Foundation increasing its range of funding, and of course, Gutenberg.</p>\n<p>One of the big takeaways from this interview is learning that Gutenberg will not arrive at the flick of a switch. There will be a transition period and a considerable amount of effort to make it as smooth as possible. Unlike episode 296, Mullenweg’s internet is fantastic and we didn’t experience any audio issues. A transcription of this interview will be published in a few days.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, January 10th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #300:</strong><br />\n</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 Jan 2018 03:55:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:72:\"WPTavern: A Collection of Gutenberg Conversations, Resources, and Videos\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=77141\";s:7:\"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:81:\"https://wptavern.com/a-collection-of-gutenberg-conversations-resources-and-videos\";s: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:8714:\"<p>Since the conclusion of WordCamp US in early December, there have been a number of Gutenberg related items published to the web.</p>\n\n\n\n<p>The following is a collection of items related to Gutenberg that I came across throughout December. Feel free to add to this list in the comments below.</p>\n\n\n\n<h2>Resources</h2>\n\n\n\n<p><a href=\"https://gettingreadyforgutenberg.com/\">Getting Ready for Gutenberg</a> is a community-run initiative to help users and developers prepare for Gutenberg's inclusion in core. </p>\n\n\n\n<p>GitHub repo filled with <a href=\"https://github.com/WordPress/gutenberg-examples\">Gutenberg example blocks.</a></p>\n\n\n\n<p>Although it was published in August of last year, WordImpress has a good guide on <a href=\"https://wordimpress.com/a-pot-stirrer-amongst-chefs-contributing-to-gutenberg-without-code/\">how to contribute to Gutenberg without code</a>.</p>\n\n\n\n<p>Rich Tabor explains <a href=\"https://richtabor.com/add-wordpress-theme-styles-to-gutenberg/\">how to add WordPress theme styles</a> to Gutenberg. He's also created a <a href=\"https://wordpress.org/plugins/social-sharing-block-gutenberg/\">Gutenberg Social Sharing Block</a> plugin. <br /></p>\n\n\n\n<p>Human Made <a href=\"https://hmn.md/white-papers/gutenberg-the-new-wordpress-editor/\">published a Gutenberg White Paper</a> that introduces people to the project, goes over a number of blocks, and provides advice on how agencies can prepare for the transition. </p>\n\n\n\n<p><a href=\"https://frontenberg.tomjn.com/\">Frontenberg</a> is a new project by <a href=\"https://twitter.com/Tarendai/status/943531422861660169\">Tom Nowell </a>that brings Gutenberg to the front end. This allows people to try Gutenberg without logging into a site or installing a plugin.</p>\n\n\n\n<p>Ben Gilbanks has <a href=\"https://github.com/BinaryMoon/granule/commit/777cd2903c1e4a8ebfc6060e86a7f7a4ef2387da\">added basic support</a> for Gutenberg to his Granule starter theme.</p>\n\n\n\n<p>Andrew Taylor <a href=\"https://github.com/ataylorme/gutenberg-codepen-embed\">created a Gutenberg block</a> that enables embedding Pens from CodePen.</p>\n\n\n\n<p>Advanced Custom Fields <a href=\"https://www.advancedcustomfields.com/blog/acf-year-review-2017/\">announced</a> it will focus on making ACF compatible with Gutenberg in 2018. </p>\n\n\n\n<p>Meta Box has <a href=\"https://metabox.io/meta-box-2017-year-review-whats-next-2018/\">also announced</a> its Gutenberg compatibility plans. </p>\n\n\n\n<p>John Hawkins published a good post on the WebDevStudios blog on <a href=\"https://webdevstudios.com/2018/01/02/existing-content-affected-wordpress-gutenberg/\">how existing content will be affected by Gutenberg</a>. </p>\n\n\n\n<h2>Conversations</h2>\n\n\n\n<p>Kevin Hoffman <a href=\"https://github.com/WordPress/gutenberg/issues/3902\">started a conversation</a> on how plugin conflicts can be handled and communicated.</p>\n\n\n\n<p>Bridget Willard shared her concerns with the <a href=\"https://bridgetwillard.com/economic-impact-timeline-gutenberg-rollout/\">economic impact and timeline</a> of Gutenberg's roll out. She also <a href=\"https://github.com/WordPress/gutenberg/issues/3926\">created an issue</a> on GitHub.</p>\n\n\n\n<p>Amanda Rush <a href=\"https://www.customerservant.com/thoughts-gutenberg-wordpress-tomorrow/\">published her thoughts and concerns</a> related to Gutenberg's Accessibility. </p>\n\n\n\n<p>Morten Rand-Hendrisken published a series of articles on LinkedIn covering <a href=\"https://www.linkedin.com/pulse/wordpress-changing-here-3-things-you-need-know-morten-rand-hendriksen/\">things you need to know</a> about Gutenberg and the <a href=\"https://www.linkedin.com/pulse/gutenberg-future-wordpress-conditions-success-morten-rand-hendriksen/?published=t\">conditions for its success.</a></p>\n\n\n\n<p>Scott Kingsley Clark, of the PODS framework plugin, announced they're doing some cool things in the next release specifically for Gutenberg. </p>\n\n\n\n\n <blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">We’re doing some cool stuff in this next <a href=\"https://twitter.com/podsframework?ref_src=twsrc%5Etfw\">@podsframework</a> release for Gutenberg specifically. Lots to do, but I feel like there will be cases for meta boxes and cases for blocks. We’ll have a template editor too, which will be powered by Gutenberg itself <a href=\"https://twitter.com/hashtag/gutenception?src=hash&ref_src=twsrc%5Etfw\">#gutenception</a></p>— Scott Kingsley Clark (@scottkclark) <a href=\"https://twitter.com/scottkclark/status/940348072151977984?ref_src=twsrc%5Etfw\">December 11, 2017</a></blockquote>\n\n\n\n\n<p>Freemius takes a look at <a href=\"https://freemius.com/blog/gutenberg-commercial-wordpress-products/\">what Gutenberg means</a> for the future of commercial WordPress products. The post includes quotes from Beaver Builder, Elementor, and Visual Composer. </p>\n\n\n\n<p>In <a href=\"https://wptavern.com/wpweekly-episode-297-wordcamp-us-2017-recap\">episode 297 of WordPress Weekly</a>, Morten Rand-Hendriksen joined John James Jacoby and I in a detailed conversation about Gutenberg, its potential impacts, and the idea of forking WordPress.</p>\n\n\n\n<p>GiveWP is <a href=\"https://github.com/WordImpress/Give/issues/2456#issuecomment-351317017\">opening up its design process</a> for how its product will interface with Gutenberg. </p>\n\n\n\n<p>Beaver Builder<a href=\"https://www.wpbeaverbuilder.com/page-builders-gutenberg-world/?utm_content=buffer12b34&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer\"> takes a look</a> at Page Builders in a Gutenberg World, the future of WordPress, and how its product will embrace compatibility with Gutenberg. </p>\n\n\n\n<p>Eric Mann on <a href=\"https://ttmm.io/tech/gutenberg-and-the-road-ahead/\">Gutenberg and the road ahead</a>. Mann supports the idea of soft-forking WordPress to provide time and help for those who can't immediately update to 5.0. </p>\n\n\n\n<p>Help contribute to Gutenberg by <a href=\"https://make.wordpress.org/test/2017/12/15/help-us-analyse-the-wcus-gutenberg-usability-videos/\">processing the usability tests</a> from WordCamp US 2017. </p>\n\n\n\n<p>Michael Hebenstreit <a href=\"https://arrayinternet.com/blog/cost-gutenberg-transition-small-wordpress-businesses/\">details the potential costs</a> for small WordPress businesses and independent developers to transition to Gutenberg. </p>\n\n\n\n<p>WordCamp Miami 2018 is having a <a href=\"https://2018.miami.wordcamp.org/2017/12/19/developer-workshop-announcement-future-of-wordpress/\">developer workshop</a> focused on Gutenberg.</p>\n\n\n\n\n <blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I\'m seeing talk of how clients will be lost and users will leave <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> when <a href=\"https://twitter.com/hashtag/Gutenberg?src=hash&ref_src=twsrc%5Etfw\">#Gutenberg</a> drops. As a former freelancer, in-house developer, agency designer, custom theme developer, and now plugin developer, here\'s a practical look at how Gutenberg affects each.</p>— Kevin W. Hoffman (@kevinwhoffman) <a href=\"https://twitter.com/kevinwhoffman/status/943871967349886977?ref_src=twsrc%5Etfw\">December 21, 2017</a></blockquote>\n\n\n\n\n\n <blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I think we will look back at 2017 and see it as the year the <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> project started to fracture. As much as the community desperately wants to see WordPress as an enterprise CMS, projects like <a href=\"https://twitter.com/hashtag/Gutenberg?src=hash&ref_src=twsrc%5Etfw\">#Gutenberg</a> show it is anything but.</p>— Ben Furfie (@frontendben) <a href=\"https://twitter.com/frontendben/status/946296693926047744?ref_src=twsrc%5Etfw\">December 28, 2017</a></blockquote>\n\n\n\n\n<p>Tammie Lister <a href=\"https://tam.blog/2017/12/gutenberg-inspired-redesign/\">shared her experience</a> redesigning her site using the <a href=\"https://github.com/WordPress/gutenberg-theme\">Gutenberg theme</a> as a base. </p>\n\n\n\n<p>WP4Good explains how they're <a href=\"https://wp4good.org/getting-ready-for-gutenberg/\">preparing for Gutenberg</a>. </p>\n\n\n\n<h2>Videos</h2>\n\n\n\n<p>Riad Benguella <a href=\"https://riad.blog/2017/12/11/with-gutenberg-what-happens-to-my-custom-fields/\">published a visual example</a> that shows Meta Boxes mostly work in Gutenberg. Benguella created a sample plugin called Gutenberg Custom Fields that provides a similar user experience to existing Custom Fields plugins.</p>\n\n\n\n<p>A live demo of Gutenberg during the 2017 State of the Word. </p>\n\n\n\n\n \n\n\n\n\n<p>Gutenberg and the WordPress of Tomorrow by Morten Rand-Hendriksen</p>\n\n\n\n\n <div class=\"embed-wrap\"></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:\"Wed, 03 Jan 2018 21:04: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:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:11:\"\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:40:\"HeroPress: A Review Of HeroPress in 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=2387\";s:7:\"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:119:\"https://heropress.com/a-review-of-heropress-2017/#utm_source=rss&utm_medium=rss&utm_campaign=a-review-of-heropress-2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9508:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/01/010318-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: HeroPress is something WordPress people do for themselves. The world simply gets to watch.\" /><p><strong>FIRST</strong>: please leave a comment if HeroPress has inspired or impacted you this year. I’ve love for you to be a part of this post.</p>\n<p>With that out of the way, another year of HeroPress has come and gone. HeroPress is still young enough that we can’t really see multi-year trends, but I still find it interesting to look at them and try to guess things. In this post we’ll look at some stats, some things I tried that didn’t work, some things that did work, and some dreams for the future.</p>\n<h3>Statistics</h3>\n<h4>Diversity</h4>\n<p>Diversity has always been important to me. In 2015 and 2016 I had more men than women, by a pretty wide margin, and that bothered me. In 2017 I’m happy to say we had 32 women and 21 men. I didn’t work SUPER hard at that, it was just something I kind of kept in my head when I was looking for new folks.</p>\n<p>We also had great geographical diversity in our contributors, representing 26 different countries.</p>\n<table>\n<tbody>\n<tr>\n<th>Country</th>\n<th>No. of Essays</th>\n</tr>\n<tr>\n<td>Bangladesh</td>\n<td>1</td>\n</tr>\n<tr>\n<td>Cameroon</td>\n<td>1</td>\n</tr>\n<tr>\n<td>Croatia</td>\n<td>1</td>\n</tr>\n<tr>\n<td>Finland</td>\n<td>2</td>\n</tr>\n<tr>\n<td>France</td>\n<td>1</td>\n</tr>\n<tr>\n<td>Germany</td>\n<td>2</td>\n</tr>\n<tr>\n<td>India</td>\n<td>7</td>\n</tr>\n<tr>\n<td>Italy</td>\n<td>1</td>\n</tr>\n<tr>\n<td>Jamaica</td>\n<td>1</td>\n</tr>\n<tr>\n<td>Nepal</td>\n<td>1</td>\n</tr>\n<tr>\n<td>Netherlands</td>\n<td>2</td>\n</tr>\n<tr>\n<td>Nigeria</td>\n<td>1</td>\n</tr>\n<tr>\n<td>Norway</td>\n<td>1</td>\n</tr>\n<tr>\n<td>Poland</td>\n<td>1</td>\n</tr>\n<tr>\n<td>Romania</td>\n<td>1</td>\n</tr>\n<tr>\n<td>Russia</td>\n<td>1</td>\n</tr>\n<tr>\n<td>Scotland</td>\n<td>1</td>\n</tr>\n<tr>\n<td>Serbia</td>\n<td>1</td>\n</tr>\n<tr>\n<td>Somalia</td>\n<td>1</td>\n</tr>\n<tr>\n<td>South Africa</td>\n<td>1</td>\n</tr>\n<tr>\n<td>Spain</td>\n<td>1</td>\n</tr>\n<tr>\n<td>Sweden</td>\n<td>1</td>\n</tr>\n<tr>\n<td>Turkey</td>\n<td>1</td>\n</tr>\n<tr>\n<td>United Kingdom</td>\n<td>1</td>\n</tr>\n<tr>\n<td>United States</td>\n<td>13</td>\n</tr>\n<tr>\n<td>Yemen</td>\n<td>1</td>\n</tr>\n</tbody>\n</table>\n<p>The US and India had far more than any other country, which has been the trend since we started, but the US has far fewer in 2017 than 2016.</p>\n<h4>Readers</h4>\n<p>We had traffic from 175 countries this year.</p>\n<p><img class=\"aligncenter size-full wp-image-2388\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/01/country_traffic.png\" alt=\"World map showing HeroPress visitors\" width=\"951\" height=\"547\" /></p>\n<p>That said, HeroPress saw less traffic overall in 2017 than in 2016.</p>\n<p><img class=\"aligncenter size-full wp-image-2389\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/01/heropress_stats.png\" alt=\"Bar chart showing HeroPress stats\" width=\"692\" height=\"282\" /></p>\n<h4>The Important Stuff</h4>\n<p>As fun as stats are, it’s been pointed out to me many times that they’re meaningless. Someone asked me recently how I define success for HeroPress, and the answer was that at least one person is impacted for the better. The interesting twist to that is the hierarchy of people impacted positively by HeroPress. It goes like this:</p>\n<p><strong>Topher</strong>: Because he gets to see them all, AND behind the scenes. It’s heady stuff.</p>\n<p><strong>Contributors themselves</strong>: MANY people have told me that writing their story changed their life. The simple act of processing things from the past, and getting them out there, and being vulnerable is powerful.</p>\n<p><strong>Readers</strong>: Lot’s of people tell me it’s inspiring.</p>\n<p>What we learn from the above information is that HeroPress would be a success if we had zero readers. HeroPress is something WordPress people do for themselves. The world simply gets to watch.</p>\n<h3>Experiments</h3>\n<h4>The Scholarship</h4>\n<p>Last spring the folks from WPShout approached me about working together to offer a scholarship. They would offer the actual scholarship, and we would manage getting applicants and deciding who won.</p>\n<p>It was a huge success. We had tons of traffic, many great applicants, and the winners did great things with their scholarships. We’d love to do something like that again, so if you’re interested, drop us a note.</p>\n<h4>Commercial Support</h4>\n<p>This changed a bit in 2017. Most of the year was sponsored by Gravity Forms, which was great. That ended with only a few weeks left in the year, and I was surprised to find that there were a number of organizations that were interested in sponsoring a single week. That worked quite well, and I’m interested in looking into that more.</p>\n<p>At WordCamp US I spoke to an organization that was interested in sponsoring an entire quarter, which would be a first. It hasn’t happened yet, but I’m also looking into that some more.</p>\n<h4>Donations</h4>\n<p>This didn’t really work out. I put up the donation form at the request of a few people that wanted to give. Those people gave, and a few more, but after the third day or so there were no more. There could be many reasons, but I’m not too concerned. I’ll probably take the form down, and if I ask for donations again it’ll be a Public Radio style press-a-thon for a week or something. Lots of flash, and then it’s gone for a year.</p>\n<h3>Thanks</h3>\n<p>As always happens, I got some great advice this year and lots of donated services and software.</p>\n<p>Many thanks to Tine Haugen from XWP for her ongoing input from a Larger Company perspective.</p>\n<p>Thanks to <a href=\"https://pagely.com/\">Pagely</a> for hosting HeroPress.</p>\n<p>Thanks to these commercial plugin folk that donated licenses:</p>\n<ul>\n<li>Analytify – Google Analytics Dashboard</li>\n<li>Give – Donation Plugin</li>\n<li>Make Plus</li>\n<li>Maps Builder Pro</li>\n<li>Ninja Forms</li>\n<li>Postmatic & Postmatic Labs</li>\n</ul>\n<p>Thanks to these wonderful software developers who’ve released there work to the world for free:</p>\n<ul>\n<li>Akismet Anti-Spam</li>\n<li>Blog Time</li>\n<li>Jetpack by WordPress.com</li>\n<li>Post Type Archive Descriptions</li>\n<li>Public Post Preview</li>\n<li>Really Simple Series</li>\n<li>rtSocial</li>\n<li>Simple 301 Redirects</li>\n<li>Simply Exclude</li>\n<li>Widget Logic</li>\n<li>WP Custom Login Page Logo</li>\n<li>WP Retina 2x</li>\n<li>Yoast SEO</li>\n</ul>\n<p>Thanks to 2017’s commercial supporters:</p>\n<ul>\n<li><a href=\"https://eventespresso.com/\">Event Espresso</a></li>\n<li><a href=\"https://www.gowp.com/\">GoWP</a></li>\n<li><a href=\"https://www.gravityforms.com/\">Gravity Forms</a></li>\n<li><a href=\"https://rtcamp.com/\">rtCamp</a></li>\n</ul>\n<p><strong>MOST IMPORTANTLY</strong></p>\n<p>Thanks to our contributors. Without people willing to share of themselves, tell us their stories, make themselves vulnerable, HeroPress would not exist. Thank you SO SO much, all of you who’ve written.</p>\n<h3>Your Turn</h3>\n<p>As I mentioned at the top of the post, the rest of the post is to be written by you. How has HeroPress impacted you this year? What value is there besides numbers and charts and graphs?</p>\n<p>Please leave a comment.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: A Review Of HeroPress in 2017\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=A%20Review%20Of%20HeroPress%20in%202017&via=heropress&url=https%3A%2F%2Fheropress.com%2Fa-review-of-heropress-2017%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: A Review Of HeroPress in 2017\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fa-review-of-heropress-2017%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fa-review-of-heropress-2017%2F&title=A+Review+Of+HeroPress+in+2017\" rel=\"nofollow\" target=\"_blank\" title=\"Share: A Review Of HeroPress in 2017\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/a-review-of-heropress-2017/&media=https://heropress.com/wp-content/uploads/2018/01/010318-150x150.jpg&description=A Review Of HeroPress in 2017\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: A Review Of HeroPress in 2017\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/a-review-of-heropress-2017/\" title=\"A Review Of HeroPress in 2017\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/a-review-of-heropress-2017/\">A Review Of HeroPress in 2017</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 Jan 2018 17:49: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:\"\";}}}}}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:47:\"Dev Blog: The Month in WordPress: December 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5424\";s:7:\"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/2018/01/the-month-in-wordpress-december-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4742:\"<p>Activity slowed down in December in the WordPress community, particularly in the last two weeks. However, the month started off with a big event and work pushed forward in a number of key areas of the project. Read on to find out more about what transpired in the WordPress community as 2017 came to a close.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordCamp US 2017 Brings the Community Together</h2>\n\n\n\n<p>The latest edition of <a href=\"https://2017.us.wordcamp.org/\">WordCamp US</a> took place last month in Nashville on December 1-3. The event brought together over 1,400 WordPress enthusiasts from around the world, fostering a deeper, more engaged global community.</p>\n\n\n\n<p>While attending a WordCamp is always a unique experience, you can catch up on <a href=\"https://wordpress.tv/event/wordcamp-us-2017/\">the sessions on WordPress.tv</a> and look through <a href=\"https://www.facebook.com/pg/WordCampUSA/photos/?tab=albums\">the event photos on Facebook</a> to get a feel for how it all happened. Of course, <a href=\"https://wordpress.tv/2017/12/04/matt-mullenweg-state-of-the-word-2017/\">Matt Mullenweg’s State of the Word</a> talk is always one of the highlights at this event.</p>\n\n\n\n<p>The next WordCamp US will be held in Nashville again in 2018, but if you would like to see it hosted in your city in 2019 and 2020, then <a href=\"https://make.wordpress.org/community/2017/12/19/apply-to-host-wordcamp-us-2019-2020/\">you have until February 2 to apply</a>.</p>\n\n\n\n<h2>WordPress User Survey Data Is Published</h2>\n\n\n\n<p>Over the last few years, tens of thousands of WordPress users all over the world have filled out the annual WordPress user survey. The results of that survey are used to improve the WordPress project, but that data has mostly remained private. This has changed now and <a href=\"https://wordpress.org/news/2017/12/wordpress-user-survey-data-for-2015-2017/\">the results from the last three surveys are now publicly available</a> for everyone to analyze.</p>\n\n\n\n<p>The data will be useful to anyone involved in WordPress since it provides a detailed look at who uses WordPress and what they do with it — information that can help inform product development decisions across the board.</p>\n\n\n\n<h2>New WordPress.org Team for the Tide Project</h2>\n\n\n\n<p>As announced at WordCamp US, <a href=\"https://make.wordpress.org/tide/2017/12/02/new-home/\">the Tide project is being brought under the WordPress.org umbrella</a> to be managed and developed by the community.</p>\n\n\n\n<p>Tide is a series of automated tests run against every plugin and theme in the directory to help WordPress users make informed decisions about the plugins and themes that they choose to install.</p>\n\n\n\n<p>To get involved in developing Tide, jump into the #tide channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>, and follow <a href=\"https://make.wordpress.org/tide/\">the Tide team blog</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul>\n <li>If you’re following the development of Gutenberg, or if you want a primer on where it’s headed, then <a href=\"https://wordpress.tv/2017/12/10/morten-rand-hendriksen-gutenberg-and-the-wordpress-of-tomorrow/\">Morten Rand-Hendriksen’s talk from WordCamp US</a> is a must watch.</li>\n <li>The annual surveys for WordPress <a href=\"https://wordpressdotorg.polldaddy.com/s/2017-annual-meetup-member-survey\">meetup members</a> and <a href=\"https://wordpressdotorg.polldaddy.com/s/2017-annual-meetup-organizer-survey\">meetup organizers</a> are available for people to fill out — if you’re involved in or attend your local meetup group then be sure to complete those.</li>\n <li>10up has <a href=\"https://distributorplugin.com/\">a brand new plugin in beta</a> that will assist with powerful and flexible content publishing and syndication across WordPress sites.</li>\n <li><a href=\"https://make.wordpress.org/community/2017/12/07/should-we-change-the-default-wordcamp-theme-to-campsite-2017/\">The Community Team is exploring a move</a> to make the recently developed CampSite theme the default theme for all new WordCamp websites. This is the theme that was developed and employed for <a href=\"https://2017.europe.wordcamp.org\">WordCamp Europe 2017</a>.</li>\n <li>The team working on the multisite features of WordPress Core has recently published <a href=\"https://make.wordpress.org/core/2017/12/19/multisite-roadmap-published/\">their planned roadmap for development</a>.</li>\n</ul>\n\n\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</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 Jan 2018 10:00: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: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:\"\";}}}}}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:19:\"Matt: Books in 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=47744\";s:7:\"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:36:\"https://ma.tt/2017/12/books-in-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4679:\"<p>Here's what I ended up reading this year, in roughly chronological finishing order. (I usually have 3-4 books going on at once.)</p>\n\n\n\n<ul>\n <li><a href=\"https://www.amazon.com/dp/B01HSMRWNU/?tag=photomatt08-20\">Tools of Titans</a> by Tim Ferriss.</li>\n <li><a href=\"https://www.amazon.com/dp/B00JSRQSJS/?tag=photomatt08-20\">The Art of Stillness</a> by Pico Ayer.</li>\n <li><a href=\"https://www.amazon.com/dp/B0162WIRKY/?tag=photomatt08-20\">Out of Your Mind</a> by Alan Watts (audiobook, really a series of lectures).</li>\n <li><a href=\"https://www.amazon.com/dp/B007V3FHRU/?tag=photomatt08-20\">Book of Five Rings</a> by Miyamoto Mushashi (audiobook).</li>\n <li><a href=\"https://smile.amazon.com/dp/B01KKNM8UQ/?tag=photomatt08-20\">Do Not Say We Have Nothing</a> by Madeleine Thien.</li>\n <li><a href=\"https://www.amazon.com/dp/B01912QC5Y/?tag=photomatt08-20\">The Best American Short Stories 2016</a> edited by Junot Diaz.</li>\n <li><a href=\"https://www.amazon.com/dp/B00CVNLK3K/?tag=photomatt08-20\">Feynman</a> by Jim Ottaviani.</li>\n <li><a href=\"https://www.amazon.com/dp/8129137704/?tag=photomatt08-20\">My Gita</a> by Devdutt Pattanaik.</li>\n <li><a href=\"https://www.amazon.com/dp/B00DTO6LZ2/?tag=photomatt08-20\">From Plato to Post-modernism: Understanding the Essence of Literature and the Role of the Author</a> by Louis Markos (another lecture series).</li>\n <li><a href=\"https://www.amazon.com/dp/B01LZOV6R3/?tag=photomatt08-20\">The Rules Do Not Apply</a> by Ariel Levy.</li>\n <li><a href=\"https://www.amazon.com/dp/B01BSNQJDY/?tag=photomatt08-20\">The Story of a Brief Marriage</a> by Anuk Arudpragasam.</li>\n <li><a href=\"https://www.amazon.com/dp/B00DPM7TIG/?tag=photomatt08-20\">All the Light We Cannot See</a> by Anthony Doerr.</li>\n <li><a href=\"https://www.amazon.com/dp/B01NAG34EH/?tag=photomatt08-20\">Ikigai: The Japanese Secret to a Long and Happy Life</a> by Héctor García and Francesc Miralles.</li>\n <li><a href=\"https://www.amazon.com/dp/B00V3CE1M2/?tag=photomatt08-20\">When Hitler Took Cocaine and Lenin Lost His Brain: History's Unknown Chapters</a> by Giles Milton.</li>\n <li><a href=\"https://www.amazon.com/dp/184861098X/?tag=photomatt08-20\">Widow Basquiat: A Love Story</a> by Jennifer Clement.</li>\n <li><a href=\"https://www.amazon.com/dp/0812983068/?tag=photomatt08-20\">32 Yolks: From My Mother's Table to Working the Line</a> by Eric Ripert.</li>\n <li><a href=\"https://www.amazon.com/dp/B005LH08M2/?tag=photomatt08-20\">Identify: Basic Principles of Identity Design in the Iconic Trademarks</a> by Chermayeff & Geismar.</li>\n <li><a href=\"https://www.amazon.com/dp/B0024NP55G/?tag=photomatt08-20\">Catching the Big Fish: Meditation, Consciousness, and Creativity</a> by David Lynch (audiobook).</li>\n <li><a href=\"https://www.amazon.com/dp/B01HZFB3X0/?tag=photomatt08-20\">The Upstarts: How Uber, Airbnb, and the Killer Companies of the New Silicon Valley Are Changing the World</a> by Brad Stone.</li>\n <li><a href=\"https://www.amazon.com/dp/B01JKHTNCY/?tag=photomatt08-20\">The Leavers</a> by Lisa Ko.</li>\n <li><a href=\"https://www.amazon.com/dp/B002UZ5K4Y/?tag=photomatt08-20\">Wolf Hall</a> by Hilary Mantel.</li>\n <li><a href=\"https://www.amazon.com/dp/B013PKGT2O/?tag=photomatt08-20\">Girls on Fire</a> by Robin Wasserman.</li>\n <li><a href=\"https://www.amazon.com/dp/0195096444/?tag=photomatt08-20\">The Executive's Compass</a> by James O'Toole.</li>\n <li><a href=\"https://www.amazon.com/dp/B000SEGMAU/?tag=photomatt08-20\">Tuesdays with Morrie</a> by Mitch Albom.</li>\n <li><a href=\"https://www.amazon.com/dp/B06WLGYW83/?tag=photomatt08-20\">Dance of the Possible</a> by Scott Berkun.</li>\n <li><a href=\"https://subterraneanpress.com/magazine/fall_2010/fiction_the_lifecycle_of_software_objects_by_ted_chiang\">The Lifecycle of Software Objects</a> by Ted Chiang (short story).</li>\n <li><a href=\"https://www.amazon.com/dp/B071KJ7PTB/?tag=photomatt08-20\">Tribe of Mentors</a> by Tim Ferriss.</li>\n <li><a href=\"https://www.amazon.com/dp/B06XZSNB3W/?tag=photomatt08-20\">After On: A Novel of Silicon Valley</a> by Rob Reid.</li>\n <li><a href=\"https://www.amazon.com/gp/product/1501124021/?tag=photomatt08-20\">Principles</a> by Ray Dalio.</li>\n <li><a href=\"https://www.amazon.com/dp/B001H44FP4/?tag=photomatt08-20\">The Graveyard Book</a> by Neil Gaiman (audiobook).</li>\n <li><a href=\"https://www.amazon.com/dp/B0073X0GRO/?tag=photomatt08-20\">The Undiscovered Self: With Symbols and the Interpretation of Dreams</a> by C.G. Jung.</li>\n</ul>\n\n\n\n<p>A fairly random selection, and hopefully I can get a few more in next year.</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:\"Sun, 31 Dec 2017 23:19:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:54:\"WPTavern: WPWeekly Episode 299 – 2017 Year in Review\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=77120&preview=true&preview_id=77120\";s:7:\"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:61:\"https://wptavern.com/wpweekly-episode-299-2017-year-in-review\";s: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:19514:\"<p>In this episode, <a href=\"https://jjj.blog/\">John James Jacoby</a> and I review the WordPress news that made headlines on the Tavern in 2017. Among the stories we talk about more in-depth was Headway Themes, WP-CLI becoming a WordPress.org sanctioned project, and Disqus being acquired. We also talked about the future of comments in WordPress and what circumstances could lead to <a href=\"https://intensedebate.com/\">Intense Debate</a> being relevant again.</p>\n<p>Last but not least, we offered up our thoughts for the New Year. Shout out to <a href=\"https://gist.github.com/kevinwhoffman\">Kevin Hoffman</a> who submitted a five-star review for WP Weekly on <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">iTunes</a>. Thank you to all of the listeners who have and continue to listen to WordPress Weekly.</p>\n<h2>Stories Discussed:</h2>\n<h3>January</h3>\n<p><a href=\"https://wptavern.com/wp-cli-gets-official-wordpress-org-support\">WP-CLI Gets Official WordPress.org Support</a><br />\n<a href=\"https://wptavern.com/wordpress-4-7-1-fixes-eight-security-issues\">WordPress 4.7.1 Fixes Eight Security Issues</a><br />\n<a href=\"https://wptavern.com/automattic-releases-free-plugin-for-exporting-photos-from-lightroom-to-wordpress\">Automattic Releases Free Plugin for Exporting Photos from Lightroom to WordPress</a><br />\n<a href=\"https://wptavern.com/aaron-d-campbell-replaces-nikolay-bachiyski-as-wordpress-security-czar\">Aaron D. Campbell Replaces Nikolay Bachiyski as WordPress’ Security Czar</a><br />\n<a href=\"https://wptavern.com/postmatic-basic-rebrands-as-replyable-moves-two-way-email-commenting-to-saas-product\">Postmatic Basic Rebrands as Replyable, Moves Two-Way Email Commenting to SaaS Product</a><br />\n<a href=\"https://wptavern.com/jetpack-4-5-expands-monetization-with-wordads-integration\">Jetpack 4.5 Expands Monetization with WordAds Integration</a><br />\n<a href=\"https://wptavern.com/obama-foundation-launches-new-website-powered-by-wordpress\">Obama Foundation Launches New Website Powered by WordPress</a><br />\n<a href=\"https://wptavern.com/wix-removes-gpl-licensed-wordpress-code-from-mobile-app-forks-original-mit-library\">Wix Removes GPL-Licensed WordPress Code from Mobile App, Forks Original MIT Library</a></p>\n<h3>February</h3>\n<p><a href=\"https://wptavern.com/10up-unveils-elasticpress-io-elasticsearch-as-a-service-for-wordpress-sites\">10up Unveils ElasticPress.io: Elasticsearch as a Service for WordPress Sites</a><br />\n<a href=\"https://wptavern.com/matt-mullenweg-responds-to-security-rant-digital-signatures-for-wordpress-updates-are-important-but-not-a-priority\">Matt Mullenweg Responds to Security Rant: Digital Signatures for WordPress Updates Are Important but Not a Priority</a><br />\n<a href=\"https://wptavern.com/buddypress-2-8-boosts-minimum-php-requirement-adds-twenty-seventeen-companion-stylesheet\">BuddyPress 2.8 Boosts Minimum PHP Requirement, Adds Twenty Seventeen Companion Stylesheet</a><br />\n<a href=\"https://wptavern.com/wordpress-core-editor-team-publishes-ui-prototype-for-gutenberg-an-experimental-block-based-editor\">WordPress Core Editor Team Publishes UI Prototype for “Gutenberg,” an Experimental Block Based Editor</a><br />\n<a href=\"https://wptavern.com/zerif-lite-returns-to-wordpress-org-after-5-month-suspension-and-63-decline-in-revenue\">Zerif Lite Returns to WordPress.org after 5-Month Suspension and 63% Decline in Revenue</a><br />\n<a href=\"https://wptavern.com/cloudflare-memory-leak-exposes-private-data\">Cloudflare Memory Leak Exposes Private Data</a><br />\n<a href=\"https://wptavern.com/freemius-launches-insights-for-wordpress-themes\">Freemius Launches Insights for WordPress Themes</a><br />\n<a href=\"https://wptavern.com/hackerone-launches-free-community-edition-for-non-commercial-open-source-projects\">HackerOne Launches Free Community Edition for Non-Commercial Open Source Projects</a></p>\n<h3>March</h3>\n<p><a href=\"https://wptavern.com/web-annotations-are-now-a-w3c-standard-paving-the-way-for-decentralized-annotation-infrastructure\">Web Annotations are Now a W3C Standard, Paving the Way for Decentralized Annotation Infrastructure</a><br />\n<a href=\"https://wptavern.com/wordpress-4-7-3-patches-six-security-vulnerabilities-immediate-update-advised\">WordPress 4.7.3 Patches Six Security Vulnerabilities, Immediate Update Advised</a><br />\n<a href=\"https://wptavern.com/wefoster-launches-hosting-platform-catered-to-online-communities\">WeFoster Launches Hosting Platform Catered to Online Communities</a><br />\n<a href=\"https://wptavern.com/jetpack-introduces-theme-installation-from-wordpress-com-sparks-controversy-with-alternative-marketplace-for-free-themes\">Jetpack Introduces Theme Installation from WordPress.com, Sparks Controversy with Alternative Marketplace for Free Themes</a><br />\n<a href=\"https://wptavern.com/pressshack-forks-edit-flow-to-create-publishpress-aims-to-improve-multi-user-editorial-workflow-in-wordpress\">PressShack Forks Edit Flow to Create PublishPress, Aims to Improve Multi-User Editorial Workflow in WordPress</a><br />\n<a href=\"https://wptavern.com/yoast-seo-4-5-urges-users-to-upgrade-to-php-7\">Yoast SEO 4.5 Urges Users to Upgrade to PHP 7</a><br />\n<a href=\"https://wptavern.com/foxhound-is-the-first-rest-api-powered-theme-on-wordpress-org\">Foxhound Is the First REST API Powered Theme on WordPress.org</a><br />\n<a href=\"https://wptavern.com/godaddy-acquires-sucuri\">GoDaddy Acquires Sucuri</a><br />\n<a href=\"https://wptavern.com/wordpress-relaunches-plugin-directory-with-new-design-and-improved-search-algorithm\">WordPress Relaunches Plugin Directory with New Design and Improved Search Algorithm</a><br />\n<a href=\"https://wptavern.com/poopy-life-lets-you-create-free-unlimited-wordpress-test-installs\">Poopy.life Lets You Create Free, Unlimited WordPress Test Installs</a><br />\n<a href=\"https://wptavern.com/wordpress-community-support-shuts-down-wordcamp-netherlands-in-favor-of-city-based-wordcamps\">WordPress Community Support Shuts Down WordCamp Netherlands in Favor of City-Based WordCamps</a></p>\n<h3>April</h3>\n<p><a href=\"https://wptavern.com/woocommerce-3-0-brings-major-improvements-to-product-gallery-introduces-crud-classes-and-a-new-cli\">WooCommerce 3.0 Brings Major Improvements to Product Gallery, Introduces CRUD Classes and a New CLI</a><br />\n<a href=\"https://wptavern.com/jetpack-4-8-introduces-settings-redesign-adds-global-wordpress-com-toolbar\">Jetpack 4.8 Introduces Settings Redesign, Adds Global WordPress.com Toolbar</a><br />\n<a href=\"https://wptavern.com/yoast-seos-php-upgrade-nag-is-producing-a-significant-increase-in-sites-upgrading-to-php-7\">Yoast SEO’s PHP Upgrade Nag is Producing a Significant Increase in Sites Upgrading to PHP 7</a><br />\n<a href=\"https://wptavern.com/buddypress-2016-survey-results-show-54-of-respondents-are-on-php-7-0\">BuddyPress 2016 Survey Results Show 54% of Respondents are on PHP 7.0+</a><br />\n<a href=\"https://wptavern.com/wordpress-4-7-4-fixes-visual-editor-incompatibility-with-upcoming-version-of-chrome\">WordPress 4.7.4 Fixes 47 Issues</a><br />\n<a href=\"https://wptavern.com/headway-themes-appears-to-be-dying-a-slow-death\">Headway Themes Appears to be Dying a Slow Death</a><br />\n<a href=\"https://wptavern.com/shopify-discontinues-its-official-plugin-for-wordpress\">Shopify Discontinues Its Official Plugin for WordPress</a></p>\n<h3>May</h3>\n<p><a href=\"https://wptavern.com/10up-releases-wp-docker-an-open-source-docker-configuration-for-local-wordpress-development\">10up Releases WP Docker, an Open Source Docker Configuration for Local WordPress Development</a><br />\n<a href=\"https://wptavern.com/jetpack-4-9-introduces-eu-cookie-law-banner-widget\">Jetpack 4.9 Introduces EU Cookie Law Banner Widget</a><br />\n<a href=\"https://wptavern.com/weglot-multilingual-plugin-closes-450k-in-seed-funding\">Weglot Multilingual Plugin Closes €450K in Seed Funding</a><br />\n<a href=\"https://wptavern.com/wordpress-is-now-on-hackerone-launches-bug-bounties\">WordPress Is Now on HackerOne, Launches Bug Bounties</a><br />\n<a href=\"https://wptavern.com/hookr-plugin-rebrands-as-wp-inspect-project-to-shift-to-a-module-based-architecture\">Hookr Plugin Rebrands as WP Inspect, Project to Shift to a Module-Based Architecture</a><br />\n<a href=\"https://wptavern.com/wordpress-4-7-5-patches-six-security-issues-immediate-update-recommended\">WordPress 4.7.5 Patches Six Security Issues, Immediate Update Recommended</a><br />\n<a href=\"https://wptavern.com/storefront-2-2-0-released-includes-design-refresh-and-major-improvements-to-new-user-experience\">Storefront 2.2.0 Released, Includes Design Refresh and Major Improvements to New User Experience</a><br />\n<a href=\"https://wptavern.com/rainmaker-digital-to-partner-with-nimble-worldwide\">Rainmaker Digital to Partner with Nimble Worldwide</a><br />\n<a href=\"https://wptavern.com/wordpress-removes-hhvm-from-testing-infrastructure\">WordPress Removes HHVM from Testing Infrastructure</a><br />\n<a href=\"https://wptavern.com/wp-cli-1-2-0-released-project-unveils-new-logo\">WP-CLI 1.2.0 Released, Project Unveils New Logo</a></p>\n<h3>June</h3>\n<p><a href=\"https://wptavern.com/wpforms-acquires-wp-mail-smtp-plugin\">WPForms Acquires WP Mail SMTP Plugin</a><br />\n<a href=\"https://wptavern.com/versionpress-launches-versionpress-com-to-fund-open-source-project\">VersionPress Launches VersionPress.com to Fund Open Source Project</a><br />\n<a href=\"https://wptavern.com/wordpress-4-8-evans-released-featuring-nearby-wordpress-events-new-media-widgets-and-link-boundaries\">WordPress 4.8 “Evans” Released Featuring Nearby WordPress Events, New Media Widgets, and Link Boundaries</a><br />\n<a href=\"https://wptavern.com/imagely-acquires-teslathemes-is-seeking-other-acquisition-opportunities\">Imagely Acquires TeslaThemes, Is Seeking Other Acquisition Opportunities</a><br />\n<a href=\"https://wptavern.com/9seeds-acquires-web-savvy-marketings-genesis-theme-store\">9seeds Acquires Web Savvy Marketing’s Genesis Theme Store</a><br />\n<a href=\"https://wptavern.com/wordcamp-europe-2017-draws-1900-attendees-from-79-countries\">WordCamp Europe 2017 Draws 1900 Attendees from 79 Countries</a><br />\n<a href=\"https://wptavern.com/woocommerce-drops-50-renewal-discount-on-subscriptions\">WooCommerce Drops 50% Renewal Discount on Subscriptions</a><br />\n<a href=\"https://wptavern.com/wpshout-updates-and-acquires-wphierarchy-com\">WPShout Updates and Acquires WPHierarchy.com</a><br />\n<a href=\"https://wptavern.com/wordpress-new-gutenberg-editor-now-available-as-a-plugin-for-testing\">WordPress’ New Gutenberg Editor Now Available as a Plugin for Testing</a><br />\n<a href=\"https://wptavern.com/automattic-to-renew-efforts-on-underscores-retire-components-starter-theme-generator\">Automattic to Renew Efforts on Underscores, Retire Components Starter-Theme Generator</a><br />\n<a href=\"https://wptavern.com/woocommerce-3-1-adds-new-csv-product-importerexporter-improves-extension-management\">WooCommerce 3.1 Adds New CSV Product Importer/Exporter, Improves Extension Management</a><br />\n<a href=\"https://wptavern.com/clef-is-shutting-down-june-6th\">Clef Shuts Down</a></p>\n<h3>July</h3>\n<p><a href=\"https://wptavern.com/jesse-petersen-founder-of-genesis-the-me-passes-away\">Jesse Petersen, Founder of Genesis The.me Passes Away</a><br />\n<a href=\"https://wptavern.com/wangguard-plugin-author-shuts-down-splog-hunting-service-due-to-trauma-and-death-threats\">WangGuard Plugin Author Shuts Down Splog Hunting Service Due to Trauma and Death Threats</a><br />\n<a href=\"https://wptavern.com/lets-encrypt-passes-100-million-certificates-issued-will-offer-wildcard-certificates-in-january-2018\">Let’s Encrypt Passes 100 Million Certificates Issued, Will Offer Wildcard Certificates in January 2018</a><br />\n<a href=\"https://wptavern.com/10up-acquires-lift-ux\">10up Acquires Lift UX</a><br />\n<a href=\"https://wptavern.com/aj-morris-acquires-ithemes-exchange\">AJ Morris Acquires iThemes Exchange</a><br />\n<a href=\"https://wptavern.com/react-users-petition-facebook-to-re-license-react-js-after-apache-software-foundation-bans-bsdpatents-license-in-dependencies\">React Users Petition Facebook to Re-license React.js after Apache Software Foundation Bans BSD+Patents License in Dependencies</a><br />\n<a href=\"https://wptavern.com/sitelock-acquires-patchmans-malware-and-vulnerability-detection-technology-expands-wordpress-customer-base-to-4-million\">SiteLock Acquires Patchman’s Malware and Vulnerability Detection Technology, Expands WordPress Customer Base to 4 Million</a><br />\n<a href=\"https://wptavern.com/adobe-to-discontinue-flash-support-and-updates-in-2020\">Adobe to Discontinue Flash Support and Updates in 2020</a><br />\n<a href=\"https://wptavern.com/blog-passes-100000-registrations-66-5-of-purchased-domains-are-in-use\">.blog Passes 100,000 Registrations, 66.5% of Purchased Domains are in Use</a></p>\n<h3>August</h3>\n<p><a href=\"https://wptavern.com/jetpack-5-2-brings-major-improvements-to-the-contact-form-module\">Jetpack 5.2 Brings Major Improvements to the Contact Form Module</a><br />\n<a href=\"https://wptavern.com/wordpress-polyglots-team-fuels-international-community-growth-with-3rd-global-translation-day\">WordPress Polyglots Team Fuels International Community Growth with 3rd Global Translation Day</a><br />\n<a href=\"https://wptavern.com/wordpress-4-8-1-released-adds-custom-html-widget\">WordPress 4.8.1 Released, Adds Custom HTML Widget</a><br />\n<a href=\"https://wptavern.com/trademark-trial-and-appeal-board-dismisses-automattics-trademark-dispute-against-chris-pearson\">Trademark Trial and Appeal Board Dismisses Automattic’s Trademark Dispute Against Chris Pearson</a><br />\n<a href=\"https://wptavern.com/wordpress-coms-business-plan-gives-subscribers-a-way-to-tap-into-wordpress-orgs-third-party-ecosystem\">WordPress.com’s Business Plan Gives Subscribers a Way to Tap into WordPress.org’s Third-party Ecosystem</a><br />\n<a href=\"https://wptavern.com/maekit-acquires-wp-remote-plans-to-add-cloud-based-backup-services\">maekit Acquires WP Remote, Plans to Add Cloud-Based Backup Services</a><br />\n<a href=\"https://wptavern.com/wordpress-org-now-allows-plugin-authors-to-specify-a-minimum-php-version-requirement\">WordPress.org Now Allows Plugin Authors to Specify a Minimum PHP Version Requirement</a><br />\n<a href=\"https://wptavern.com/gutenberg-1-0-0-introduces-drag-and-drop-for-adding-image-blocks\">Gutenberg 1.0.0 Introduces Drag and Drop for Adding Image Blocks</a></p>\n<h3>September</h3>\n<p><a href=\"https://wptavern.com/jetpack-5-3-adds-php-7-1-compatibility-better-control-for-wordads-placement\">Jetpack 5.3 Adds PHP 7.1 Compatibility, Better Control for WordAds Placement</a><br />\n<a href=\"https://wptavern.com/wordpress-org-adds-new-support-rep-role-for-plugin-pages\">WordPress.org Adds New Support Rep Role for Plugin Pages</a><br />\n<a href=\"https://wptavern.com/wordpress-abandons-react-due-to-patents-clause-gutenberg-to-be-rewritten-with-a-different-library\">WordPress Abandons React due to Patents Clause, Gutenberg to be Rewritten with a Different Library</a><br />\n<a href=\"https://wptavern.com/wordpress-4-8-2-patches-eight-security-vulnerabilities\">WordPress 4.8.2 Patches Eight Security Vulnerabilities</a><br />\n<a href=\"https://wptavern.com/apply-filters-podcast-to-be-retired-after-83-episodes\">Apply Filters Podcast to be Retired after 83 Episodes</a><br />\n<a href=\"https://wptavern.com/wordpress-com-adds-google-photos-integration-available-now-for-jetpack-enabled-sites\">WordPress.com Adds Google Photos Integration, Available Now for Jetpack-Enabled Sites</a></p>\n<h3>October</h3>\n<p><a href=\"https://wptavern.com/poopy-life-launches-pro-version-at-wpsandbox-io-aimed-at-theme-and-plugin-developers\">Poopy.life Launches Pro Version at WPsandbox.io Aimed at Theme and Plugin Developers</a><br />\n<a href=\"https://wptavern.com/disqus-data-breach-affects-17-5-million-accounts\">Disqus Data Breach Affects 17.5 Million Accounts</a><br />\n<a href=\"https://wptavern.com/gitlab-raises-20-million-series-c-round-adds-matt-mullenweg-to-board-of-directors\">GitLab Raises $20 Million Series C Round, Adds Matt Mullenweg to Board of Directors</a><br />\n<a href=\"https://wptavern.com/woocommerce-3-2-adds-ability-to-apply-coupons-in-the-admin-introduces-pre-update-version-checks-for-extensions\">WooCommerce 3.2 Adds Ability to Apply Coupons in the Admin, Introduces Pre-Update Version Checks for Extensions</a><br />\n<a href=\"https://wptavern.com/postman-smtp-plugin-forked-after-removal-from-wordpress-org-for-security-issues\">Postman SMTP Plugin Forked after Removal from WordPress.org for Security Issues</a><br />\n<a href=\"https://wptavern.com/woocommerce-retires-canvas-theme-recommends-customers-migrate-to-storefront-theme\">WooCommerce Retires Canvas Theme, Recommends Customers Migrate to Storefront Theme</a><br />\n<a href=\"https://wptavern.com/goodnight-firebug\">Firebug is Retired</a></p>\n<h3>November</h3>\n<p><a href=\"https://wptavern.com/wordpress-4-8-3-a-security-release-six-weeks-in-the-making\">WordPress 4.8.3, A Security Release Six Weeks in the Making</a><br />\n<a href=\"https://wptavern.com/press-this-removed-from-wordpress-4-9-in-favor-of-a-plugin\">Press This Removed from WordPress 4.9 in Favor of a Plugin</a><br />\n<a href=\"https://wptavern.com/bianca-welds-awarded-kim-parsell-travel-scholarship\">Bianca Welds Awarded Kim Parsell Travel Scholarship</a><br />\n<a href=\"https://wptavern.com/jetpack-5-5-removes-syntax-highlighting-and-gallery-widget-for-compatibility-with-upcoming-wordpress-4-9-release\">Jetpack 5.5 Removes Syntax Highlighting and Gallery Widget for Compatibility</a><br />\n<a href=\"https://wptavern.com/wordpress-4-9-released-with-major-improvements-to-customizer-workflow-updated-code-editors-and-new-core-gallery-widget\">WordPress 4.9 Released with Major Improvements to Customizer Workflow, Updated Code Editors, and New Core Gallery Widget</a><br />\n<a href=\"https://wptavern.com/tailor-page-builder-plugin-discontinued-owners-cite-funding-gutenberg-and-competition\">Tailor Page Builder Plugin Discontinued, Owners Cite Funding, Gutenberg, and Competition</a><br />\n<a href=\"https://wptavern.com/wordpress-4-9-1-released-fixes-page-template-bug\">WordPress 4.9.1 Released, Fixes Page Template Bug</a><br />\n<a href=\"https://wptavern.com/wpweekly-episode-296-gutenberg-telemetry-calypso-and-more-with-matt-mullenweg\">WPWeekly Episode 296 – Gutenberg, Telemetry, Calypso, and More With Matt Mullenweg</a></p>\n<h3>December</h3>\n<p><a href=\"https://wptavern.com/storify-to-close-may-16-2018-wordpress-plugin-discontinued\">Storify to Close May 16, 2018, WordPress Plugin Discontinued</a><br />\n<a href=\"https://wptavern.com/jetpack-5-6-1-increases-security-of-the-contact-form-module\">Jetpack 5.6.1 Increases Security of the Contact Form Module</a><br />\n<a href=\"https://wptavern.com/wp-site-care-acquires-wp-radius\">WP Site Care Acquires WP Radius<b></b></a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, January 3rd at 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p><strong>Listen To Episode #299:</strong><br />\n</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 Dec 2017 02:08:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:94:\"HeroPress: My Journey from being a Dyslexic kid to becoming A Co-organiser For WordCamp Mumbai\";s:7:\"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=2369\";s:7:\"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:190:\"https://heropress.com/essays/journey-dyslexic-kid-becoming-co-organiser-wordcamp-mumbai/#utm_source=rss&utm_medium=rss&utm_campaign=journey-dyslexic-kid-becoming-co-organiser-wordcamp-mumbai\";s: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:16513:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/122717-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: My WordPress journey over the last two years has been excellent, filled with beautiful surprises.\" /><p>In my early childhood, my parents were told that I had <a href=\"https://en.wikipedia.org/wiki/Dyslexia\">dyslexia</a> and <a href=\"https://en.wikipedia.org/wiki/Dyscalculia\">dyscalculia</a>. They were told that with this drawback, I would never achieve anything constructive in my life. My parents were a little shocked as they had no clue what was dyslexia and dyscalculia and how to handle the situation. They never gave up on me and believe that I could reach great success in life. They found a tutor for me who was able to train me to do better and gave me the same treatment as other students.</p>\n<p>As a student suffering from dyslexia and dyscalculia, I had an option to skip Maths and opt for an additional subject in in 8th grade. Computer as an additional subject was introduced to me. It was the first time I was introduced to the world of internet. I started researching what internet has to offer and how it works. Those days email and website were all new and fascinating. My father bought our first desktop so I can do my research at home.</p>\n<blockquote><p>My father wanted to turn my love for the computer into something more constructive to help me in my future.</p></blockquote>\n<p>After 12th standard, my father enrolled me in a short computer course from NIIT to develop new skills and polish my old skills. Once the course was over, my teacher was so impressed with my performance that she advised my father to enroll me in a 3 years Software Development course. This course was carried out in parallel with my regular college. I would become both a graduate and a software developer at the same time. My father happily enrolled me.</p>\n<p>(PS: I was a bit disappointed as I had to juggle 2 courses together during my college days. I thought it would be very difficult to concentrate on both things. BUT to be honest today when I look back, I feel that I enjoyed doing both college and NIIT together.)</p>\n<p>During the 3 year period, I learned different languages like C Sharp, C, C++, Java, and dotNet.</p>\n<p>After I completed my graduation and NIIT course, I was confused which field to select and apply for a job. There was a rule in NIIT, I had to complete 1 year of internship after my course. If due to any circumstance I could not complete, I would not get the certificate. My parents had spent a lot of money on my course and I didn’t want their hard earned money to go down the drain so I started going for different interviews in the IT field. My father had advised me that if after one year I was not happy with my IT job, I can quit and pursue Banking career.</p>\n<blockquote><p>In 2009 on my birthday to my surprise and good fortune, I passed an interview and joined a company. On the first day, I was introduced to WordPress.</p></blockquote>\n<p>I got an assignment to change the look and feel of WordPress dashboard. This assignment had to be completed within the next 6 hours. I had no clue what WordPress was. I was looking at the whiteboard in front of me and thinking this assignment is not possible to complete within 6 hours. I thought my boss was joking (Bosses generally joke with interns).</p>\n<p>Guess who came to the rescue. GOOGLE. <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n<p>I started researching about WordPress on how it works and how to use it. After 2 hours, when I was comfortable using WordPress, I started searching how to change look and feel of WordPress Admin Dashboard. Thankfully, I found a plugin which can change the look and feel of the WordPress Dashboard. I learned how to install and work with it. After trying different combinations of color and style, I finally completed the assignment with 2 hours to spare. My boss was happy.</p>\n<p>Unfortunately after 4 days of working with WordPress, I was shifted to another CMS. I started working with the other CMS for so long that I completely forgot about WordPress. I worked with that particular CMS for 5 years.</p>\n<h3>Coming Back To WordPress</h3>\n<p>After 5 years, my office got an international project in WordPress. My boss told me to lead the project. I was hesitant since I had lost touch with WordPress. But I decided this is a great opportunity to become a team leader and lead from front. I decided to update my WordPress skills. Google GOD came to my rescue again. I updated my skills and also taught my junior team members all about WordPress. My juniors team members who never knew anything about WordPress, started to love and use WordPress frequently after my training. My team completed the project in 2 weeks. This project got me back in WordPress for good.</p>\n<p>As a team leader, one needs to help juniors to solve issues and guide them wherever necessary. I never always had the answer to their problems. I did not have any friends from the WordPress world who I can just talk to and discuss things. All my friends were either in dotNet OR commerce fields. For this reason, I was in look out for some kind group which would help me expand my scope of knowledge in WordPress.</p>\n<h3>Finding the Community</h3>\n<p>In 2015, when I was browsing Facebook, I came across an ad about WordCamp Mumbai. I missed out on the event by 2 days. Somehow I found the meetup website and joined the WordPress Mumbai meetup group.</p>\n<p>At the beginning, I didn’t have time and there wasn’t any topic that interested or motivated me to attend the meetup. It was either clashing with shopping or work or outing with friends or something or the other. Finally, after months I found one interesting topic, and in the comments section, they had mentioned that it will be a beginner level workshop. Finally I decided attend the meetup at any cost. I rescheduled all my plans so I could attend the meetup.</p>\n<p>I remember I was on my way to the meetup and was talking to my best friend on phone. I was a bit nervous as I didn’t know anyone there. I could not find the place for the meetup. I told my friend that I am taking a U-turn and going home. BUT to my disadvantage, I finally found the venue and I decided to attend the meetup. In the first 15 mins of the meetup I realized that it’s not a beginners topics. Once the meetup ended, I got up from my seat and left immediately. I was unhappy with the way it was presented.</p>\n<blockquote><p>After a few months, another great topic was announced in the meetup group. My heart told me to take a chance again.</p></blockquote>\n<p>Thankfully this time I knew the venue (same as last time). I attend the meetup and was happy with the way it was presented and learnt a few important tips. After the meetup was over the speaker took time and spoke to individual attendees. When he come to me, I took the opportunity and asked a couple of issues I had with one of my project. He sweetly gave me tips how to deal with my issues.</p>\n<p>The next day to my surprise I receive a message from the team leader Alexander Gounder. He asked me if I want to speak at a meetup. I politely declined the offer as I was not confident. After this, for a couple of the next meetup, I attended and got to know a few people. During that period, there were talks about WordCamp Mumbai 2016.</p>\n<h3>Taking Part In WordCamp</h3>\n<p>I showed an interest to be a part of the team who handles WordCamp Mumbai. I thought WordCamp was a conference where 100 or more people attend it. On the first day of WordCamp Mumbai, I was surprised to see so many WordCamp enthusiastic attending and enjoying this event.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/wcmumbai16-group_photo.jpg\"><img class=\"wp-image-2374 size-full\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/wcmumbai16-group_photo.jpg\" alt=\"WordCamp Mumbai 2016\" width=\"1000\" height=\"358\" /></a>WordCamp Mumbai 2016\n<p> </p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/wcmumbai16-localhost-min.jpg\"><img class=\"wp-image-2382 size-full\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/wcmumbai16-localhost-min.jpg\" alt=\"\" width=\"1000\" height=\"664\" /></a>WordCamp Mumbai 2016\n<p>After seeing a successful WordCamp 2016, I try to attend as many meetups as possible.</p>\n<p>I started with an entry-level role with basic responsibilities in my first WordCamp 2016. Gradually I started taking an active part in volunteering taking over more responsibilities. In WordCamp 2017 I handled speaker profiles and social media promotions. In WordCamp 2018, I am getting to know more about what all an organiser needs to do from planning to execution, to make the event the WordCamp an successful event.</p>\n<p><b>WordCamp Mumbai 2017</b></p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/wcmumbai2017-1.jpg\"><img class=\"size-full wp-image-2375\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/wcmumbai2017-1.jpg\" alt=\"WordCamp Mumbai 2017\" width=\"668\" height=\"337\" /></a>WordCamp Mumbai 2017\n<p>After spending 3 years with WordPress Mumbai Community, I am glad to be part of this amazing team. My WordPress journey over the last two years has been excellent, filled with beautiful surprises.</p>\n<p>I have been interviewed twice. Never in my wildest dreams did I ever thought that someone would interview me. <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /> My first ever interview was with <a href=\"https://www.wpwatercooler.com/video/community-connections-wordpress-at-home-in-india-w-meher-bala/\">Bridget and Jen for Community Connections by WPwatercooler</a>. Second was with <a href=\"https://courses.wpshout.com/\">David Hayes for WPShout on WordPress Security</a>.</p>\n<p>Some highlights events are as below:</p>\n<ol>\n<li>Introduced to Rosie pins – Wapuu for Women Who WordPress.</li>\n<li>Travelled to different cities across India, just to attended wordcamps.</li>\n<li>Made many new friends locally and international.</li>\n<li>Conducted a meetup on “Contributing to WordPress”.</li>\n<li>Conducted a panel discussion at WC Nashik 2017.</li>\n<li>Running a FB group especially for Indian WordPress Women Community.</li>\n<li>Writing an article for HeroPress.</li>\n<li>Contributing my part in the Marketing Team WordPress .</li>\n</ol>\n<table border=\"0\">\n<tbody>\n<tr>\n<td>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/speaker-badge.jpg\"><img class=\"wp-image-2376\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/speaker-badge-215x300.jpg\" alt=\"Speaker Badge - WC Nashik 2017\" width=\"300\" height=\"418\" /></a>Speaker Badge – WC Nashik 2017</td>\n<td>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/panel-discussion-selfie.jpg\"><img class=\"wp-image-2377\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/panel-discussion-selfie-300x225.jpg\" alt=\"Panel Group Selfie - WC Nashik 2017\" width=\"400\" height=\"300\" /></a>Panel Group Selfie – WC Nashik 2017</td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/wp-profile.png\"><img class=\"size-medium wp-image-2378\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/wp-profile-300x132.png\" alt=\"Different Badges - WordPress Profile\" width=\"300\" height=\"132\" /></a>Different Badges – WordPress Profile</td>\n<td>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/presentation-my-talk.jpg\"><img class=\"wp-image-2379\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/presentation-my-talk-300x153.jpg\" alt=\"Conducted my first meetup - WordPress Mumbai\" width=\"400\" height=\"204\" /></a>Conducted my first meetup – WordPress Mumbai</td>\n</tr>\n</tbody>\n</table>\n<p><b>My wish list for 2018:</b></p>\n<ol>\n<li>Apply as a speaker in at least one the WordCamp.</li>\n<li>Attend and volunteer at an International WordCamp.</li>\n<li>Attend and volunteer at WordCamp US 2018.</li>\n<li>Meeting Matt Mullenweg hopefully (Fingers crossed!).</li>\n<li>Meeting all my lovely international virtual friends at one of the WordCamps.</li>\n</ol>\n<p>One of my biggest dreams would be to lead WordCamp Mumbai as a lead organiser.</p>\n<blockquote><p>My advice to all who earn their livelihood from WordPress is to try and give back to the WordPress community in any way possible.</p></blockquote>\n<p>I am sure you will either learn something new <b>or</b> teach something new to someone else <b>or</b> just make new friendships.</p>\n<p>At the end of the article, I take the opportunity to thank my grantparents, parents and my sister for always standing by me and believing me. I thank my teacher Ms. Amita, my boss Mr. Ivan Bayross, my WordPress friends, and my virtual international friends for always guiding and motivating me to stay focussed and to keep learning new things in life.</p>\n<p>A big thank you to Topher for giving me an opportunity to write about my life journey.</p>\n<p>Being dyslexic I still make mistakes and I know that I’m not perfect. But I know for sure there is no harm in making mistakes. You need to learn from them and grow your skills. Don’t let your disabilities get in the way of your success. If you are reading this article and can connect with my story, do let me know in the comment section. I would love to hear from you.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: My Journey from being a Dyslexic kid to becoming A Co-organiser For WordCamp Mumbai\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=My%20Journey%20from%20being%20a%20Dyslexic%20kid%20to%20becoming%20A%20Co-organiser%20For%20WordCamp%20Mumbai&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fjourney-dyslexic-kid-becoming-co-organiser-wordcamp-mumbai%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: My Journey from being a Dyslexic kid to becoming A Co-organiser For WordCamp Mumbai\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fjourney-dyslexic-kid-becoming-co-organiser-wordcamp-mumbai%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fjourney-dyslexic-kid-becoming-co-organiser-wordcamp-mumbai%2F&title=My+Journey+from+being+a+Dyslexic+kid+to+becoming+A+Co-organiser+For+WordCamp+Mumbai\" rel=\"nofollow\" target=\"_blank\" title=\"Share: My Journey from being a Dyslexic kid to becoming A Co-organiser For WordCamp Mumbai\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/journey-dyslexic-kid-becoming-co-organiser-wordcamp-mumbai/&media=https://heropress.com/wp-content/uploads/2018/12/122717-150x150.jpg&description=My Journey from being a Dyslexic kid to becoming A Co-organiser For WordCamp Mumbai\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: My Journey from being a Dyslexic kid to becoming A Co-organiser For WordCamp Mumbai\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/journey-dyslexic-kid-becoming-co-organiser-wordcamp-mumbai/\" title=\"My Journey from being a Dyslexic kid to becoming A Co-organiser For WordCamp Mumbai\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/journey-dyslexic-kid-becoming-co-organiser-wordcamp-mumbai/\">My Journey from being a Dyslexic kid to becoming A Co-organiser For WordCamp Mumbai</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, 27 Dec 2017 02:23: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:10:\"Meher Bala\";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:29:\"Matt: NORAD’s Santa Tracker\";s:7:\"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:43:\"https://ma.tt/2017/12/norads-santa-tracker/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://ma.tt/2017/12/norads-santa-tracker/\";s: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:432:\"<p>Politico has <a href=\"https://www.politico.com/amp/story/2017/12/24/norads-crazy-santa-cause-260254\">a lovely story on the history and present of the NORAD Santa Tracker</a>, which started because a 1955 Sears department store ad had “a digit wrong — and was instead the direct line into the secret military nerve center in Colorado Springs, Colo., where the Pentagon was on the lookout to prevent nuclear war.”</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:\"Sun, 24 Dec 2017 14:25: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: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: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:50:\"Dev Blog: WordPress User Survey Data for 2015-2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5310\";s:7:\"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://wordpress.org/news/2017/12/wordpress-user-survey-data-for-2015-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:61756:\"<p>For many years, we’ve invited folks to tell us how they use WordPress by filling out an annual survey. In the past, interesting results from this survey have been shared in the annual <a href=\"https://ma.tt/2017/12/state-of-the-word-2017/\">State of the Word</a> address. This year, for the first time, the results of the 2017 survey are being published on WordPress News, along with the results of the 2015 and 2016 survey.</p>\n<p>So that information from the survey doesn’t reveal anything that respondents might consider private, we do not publish a full export of the raw data. We’d love to make this information as accessible as possible, though, so if you have a suggestion for an OS project or tool we can put the data into that allows people to play with it that still protects individual response privacy, please leave a comment on this post!</p>\n<h4>Major Groups</h4>\n<p>This survey features multiple groups, dividing respondents at the first question:</p>\n<blockquote><p>Which of the following best describes how you use WordPress? (<em>Mandatory</em>)</p></blockquote>\n<p>Those who selected “I’m a designer or developer, or I work for a company that designs/develops websites; I use WordPress to build websites and/or blogs for others. (This might include theme development, writing plugins, or other custom work.)” were served questions from what we’ll call the “WordPress Professionals” group.</p>\n<p>This “WordPress Professionals” group is further divided into WordPress Company and WordPress Freelancer/Hobbyist groups, based on how the respondent answered the question, “Which of the following best describes your involvement with WordPress? (2015) / Do you work for a company, or on your own? (2016-17).”</p>\n<p>Those who selected “I own, run, or contribute to a blog or website that is built with WordPress.” were served questions in what we’re calling the “WordPress Users” group.</p>\n<p>The relevant survey group is noted in each table below. In the case of questions that were served to different groups in 2015 but then served to all respondents in 2016 and 2017, the group responses from 2015 have been consolidated into one set of data for easier comparison between years.</p>\n<h4>Survey results</h4>\n<p><a href=\"https://wordpress.org/news/feed/#pro\">Jump to answers from WordPress Professionals</a></p>\n<p><a href=\"https://wordpress.org/news/feed/#user\">Jump to answers from WordPress Users</a></p>\n<p><a href=\"https://wordpress.org/news/feed/#all\">Jump to answers from All Respondents</a></p>\n<p><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></p>\n<h3>Which of the following best describes how you use WordPress? (Mandatory)</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td>Number of responses (since this question was mandatory, the number of responses here is the total number for the survey)</td>\n<td>45,995</td>\n<td></td>\n<td>15,585</td>\n<td></td>\n<td>16,029</td>\n<td></td>\n</tr>\n<tr>\n<td>I’m a designer or developer, or I work for a company that designs/develops websites; I use WordPress to build websites and/or blogs for others. (This might include theme development, writing plugins, other custom work.)</td>\n<td>26,662</td>\n<td>58%</td>\n<td>8,838</td>\n<td>57%</td>\n<td>9,099</td>\n<td>57%</td>\n</tr>\n<tr>\n<td>I own, run, or contribute to a blog or website that is built with WordPress.</td>\n<td>16,130</td>\n<td>35%</td>\n<td>5,293</td>\n<td>34%</td>\n<td>5,625</td>\n<td>35%</td>\n</tr>\n<tr>\n<td>Neither of the above.</td>\n<td>3,204</td>\n<td>7%</td>\n<td>1,460</td>\n<td>9%</td>\n<td>1,306</td>\n<td>8%</td>\n</tr>\n</tbody>\n</table>\n<h2 id=\"pro\">WordPress Professionals</h2>\n<h3><strong>Which of the following best describes your involvement with WordPress? (Mandatory, 2015) / Do you work for a company, or on your own? (Mandatory, 2016-17)</strong></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>26,699</td>\n<td></td>\n<td>8,838</td>\n<td></td>\n<td>9,101</td>\n<td></td>\n</tr>\n<tr>\n<td>My primary job is working for a company or organization that uses WordPress.</td>\n<td>9,505</td>\n<td>36%</td>\n<td>3,529</td>\n<td>40%</td>\n<td>3,660</td>\n<td>40%</td>\n</tr>\n<tr>\n<td>My primary job is as a self-employed designer or developer that uses WordPress.</td>\n<td>9,310</td>\n<td>35%</td>\n<td>3,188</td>\n<td>36%</td>\n<td>3,440</td>\n<td>38%</td>\n</tr>\n<tr>\n<td>I earn money from part-time or occasional freelance work involving WordPress.</td>\n<td>5,954</td>\n<td>22%</td>\n<td>1,633</td>\n<td>18%</td>\n<td>1,590</td>\n<td>17%</td>\n</tr>\n<tr>\n<td>Work that I do involving WordPress is just a hobby, I don’t make money from it.</td>\n<td>1,930</td>\n<td>7%</td>\n<td>491</td>\n<td>6%</td>\n<td>411</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>How does your company or organization work with WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,342</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Build/design and/or maintain websites or blogs for other people, companies, or organizations.</td>\n<td>7,772</td>\n<td>27%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Develop or customize themes.</td>\n<td>5,404</td>\n<td>19%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Build/design and/or maintain websites or blogs for my own use.</td>\n<td>4,733</td>\n<td>16%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Host websites for customers.</td>\n<td>4,397</td>\n<td>15%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Develop or distribute plugins.</td>\n<td>3,181</td>\n<td>11%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Provide educational resources to help others to use WordPress.</td>\n<td>1,349</td>\n<td>5%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Sponsor and/or attend WordCamps.</td>\n<td>1,127</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Contribute bug reports and/or patches to WordPress core.</td>\n<td>914</td>\n<td>3%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>182</td>\n<td> 1%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>3,457</td>\n<td></td>\n<td>3,598</td>\n<td></td>\n</tr>\n<tr>\n<td>We make websites for others.</td>\n<td></td>\n<td></td>\n<td>2,695</td>\n<td>24%</td>\n<td>2,722</td>\n<td>23%</td>\n</tr>\n<tr>\n<td>We make websites for ourselves.</td>\n<td></td>\n<td></td>\n<td>2,355</td>\n<td>21%</td>\n<td>2,470</td>\n<td>21%</td>\n</tr>\n<tr>\n<td>We develop or customize themes.</td>\n<td></td>\n<td></td>\n<td>1,866</td>\n<td>16%</td>\n<td>1,910</td>\n<td>16%</td>\n</tr>\n<tr>\n<td>We host websites for others.</td>\n<td></td>\n<td></td>\n<td>1,564</td>\n<td>14%</td>\n<td>1,595</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>We develop or distribute plugins.</td>\n<td></td>\n<td></td>\n<td>1,283</td>\n<td>11%</td>\n<td>1,342</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>We provide educational resources to help others to use WordPress.</td>\n<td></td>\n<td></td>\n<td>581</td>\n<td>5%</td>\n<td>631</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>We sponsor and/or attend WordCamps.</td>\n<td></td>\n<td></td>\n<td>561</td>\n<td>5%</td>\n<td>579</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>We contribute bug reports and/or patches to WordPress core.</td>\n<td></td>\n<td></td>\n<td>444</td>\n<td>4%</td>\n<td>468</td>\n<td>4%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td></td>\n<td></td>\n<td>98</td>\n<td>1%</td>\n<td>96</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<p><strong>How would you describe the business of your typical client(s)? (2015) / How would you describe the business of your typical client/customer? (2016, 2017)</strong></p>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,154</td>\n<td></td>\n<td>3,317</td>\n<td></td>\n<td>3,498</td>\n<td></td>\n</tr>\n<tr>\n<td>Small business</td>\n<td>6,893</td>\n<td>32%</td>\n<td>2,398</td>\n<td>31%</td>\n<td>2,510</td>\n<td>31%</td>\n</tr>\n<tr>\n<td>Large business or Enterprise</td>\n<td>3,635</td>\n<td>17%</td>\n<td>1,361</td>\n<td>18%</td>\n<td>1,447</td>\n<td>18%</td>\n</tr>\n<tr>\n<td>Non-profit</td>\n<td>2,644</td>\n<td>12%</td>\n<td>934</td>\n<td>12%</td>\n<td>992</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>Individual</td>\n<td>2,600</td>\n<td>12%</td>\n<td>888</td>\n<td>12%</td>\n<td>1,022</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>Education</td>\n<td>2,344</td>\n<td>11%</td>\n<td>854</td>\n<td>11%</td>\n<td>966</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>Website development (sub-contracting)</td>\n<td>2,065</td>\n<td>10%</td>\n<td>637</td>\n<td>8%</td>\n<td>677</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>Government</td>\n<td>1,410</td>\n<td>6%</td>\n<td>524</td>\n<td>7%</td>\n<td>552</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>127</td>\n<td>1%</td>\n<td>66</td>\n<td>1%</td>\n<td>64</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<p><strong>How does your company or organization use WordPress when developing websites? (2015) / When making websites, how does your company or organization use WordPress? (2016, 2017)</strong></p>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,078</td>\n<td></td>\n<td>3,369</td>\n<td></td>\n<td>3,552</td>\n<td></td>\n</tr>\n<tr>\n<td>Mostly as a content management system (CMS)</td>\n<td>6,361</td>\n<td>70%</td>\n<td>2,482</td>\n<td>74%</td>\n<td>2,640</td>\n<td>74%</td>\n</tr>\n<tr>\n<td>About half the time as a blogging platform and half the time as a CMS</td>\n<td>1,222</td>\n<td>13%</td>\n<td>370</td>\n<td>11%</td>\n<td>383</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Mostly as a blogging platform</td>\n<td>721</td>\n<td>8%</td>\n<td>137</td>\n<td>4%</td>\n<td>129</td>\n<td>4%</td>\n</tr>\n<tr>\n<td>Mostly as an application framework</td>\n<td>629</td>\n<td>7%</td>\n<td>303</td>\n<td>9%</td>\n<td>303</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>145</td>\n<td>2%</td>\n<td>78</td>\n<td>2%</td>\n<td>97</td>\n<td>3%</td>\n</tr>\n</tbody>\n</table>\n<h3>How much is your average WordPress site customized from the original WordPress installation?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,054</td>\n<td></td>\n<td>3,302</td>\n<td></td>\n<td>3,473</td>\n<td></td>\n</tr>\n<tr>\n<td>A lot of work has been done, the front end is unrecognizable, but the Dashboard still looks like the usual WordPress interface.</td>\n<td>5,651</td>\n<td>62%</td>\n<td>2,025</td>\n<td>61%</td>\n<td>2,105</td>\n<td>61%</td>\n</tr>\n<tr>\n<td>There’s a different theme and some plugins have been added.</td>\n<td>2,230</td>\n<td>25%</td>\n<td>799</td>\n<td>24%</td>\n<td>905</td>\n<td>26%</td>\n</tr>\n<tr>\n<td>Not at all, it’s still pretty much the same as the original download.</td>\n<td>756</td>\n<td>8%</td>\n<td>302</td>\n<td>9%</td>\n<td>298</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>You’d never know this was a WordPress installation, everything (including the admin) has been customized.</td>\n<td>417</td>\n<td>5%</td>\n<td>177</td>\n<td>5%</td>\n<td>165</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>Roughly how many currently active WordPress sites has your company or organization built?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>8,801</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>200 +</td>\n<td>1,074</td>\n<td>12%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>51 – 200</td>\n<td>1,721</td>\n<td>20%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>21 – 50</td>\n<td>1,718</td>\n<td>20%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>11 – 20</td>\n<td>1,284</td>\n<td>15%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>6 – 10</td>\n<td>1,109</td>\n<td>13%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>2 – 5</td>\n<td>1,418</td>\n<td>16%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>1</td>\n<td>390</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>0</td>\n<td>87</td>\n<td>1%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>3,358</td>\n<td></td>\n<td>3,540</td>\n<td></td>\n</tr>\n<tr>\n<td>Thousands.</td>\n<td></td>\n<td></td>\n<td>291</td>\n<td>9%</td>\n<td>331</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Hundreds.</td>\n<td></td>\n<td></td>\n<td>770</td>\n<td>23%</td>\n<td>894</td>\n<td>25%</td>\n</tr>\n<tr>\n<td>Fewer than a hundred.</td>\n<td></td>\n<td></td>\n<td>1,144</td>\n<td>34%</td>\n<td>1,177</td>\n<td>33%</td>\n</tr>\n<tr>\n<td>Just a few, but they are really great.</td>\n<td></td>\n<td></td>\n<td>926</td>\n<td>28%</td>\n<td>896</td>\n<td>25%</td>\n</tr>\n<tr>\n<td>Prefer not to answer.</td>\n<td></td>\n<td></td>\n<td>228</td>\n<td>7%</td>\n<td>242</td>\n<td>7%</td>\n</tr>\n</tbody>\n</table>\n<h3>How many person-hours (of your company’s work) does the typical site take to complete?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,091</td>\n<td></td>\n<td>3,353</td>\n<td></td>\n<td>3,522</td>\n<td></td>\n</tr>\n<tr>\n<td>More than 200</td>\n<td>939</td>\n<td>10%</td>\n<td>309</td>\n<td>9%</td>\n<td>325</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>100 – 200</td>\n<td>1080</td>\n<td>12%</td>\n<td>329</td>\n<td>10%</td>\n<td>367</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>60 – 100</td>\n<td>1541</td>\n<td>17%</td>\n<td>527</td>\n<td>16%</td>\n<td>513</td>\n<td>15%</td>\n</tr>\n<tr>\n<td>40 – 60</td>\n<td>1854</td>\n<td>20%</td>\n<td>583</td>\n<td>17%</td>\n<td>620</td>\n<td>18%</td>\n</tr>\n<tr>\n<td>20 – 40</td>\n<td>2066</td>\n<td>23%</td>\n<td>691</td>\n<td>21%</td>\n<td>685</td>\n<td>19%</td>\n</tr>\n<tr>\n<td>Fewer than 20</td>\n<td>1611</td>\n<td>18%</td>\n<td>479</td>\n<td>14%</td>\n<td>519</td>\n<td>15%</td>\n</tr>\n<tr>\n<td>Prefer not to answer (2016, 2017)</td>\n<td></td>\n<td></td>\n<td>436</td>\n<td>13%</td>\n<td>493</td>\n<td>14%</td>\n</tr>\n</tbody>\n</table>\n<h3>Roughly what percentage of your company or organization’s output is based around WordPress (as opposed to other platforms or software)?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>8,950</td>\n<td></td>\n<td>3,345</td>\n<td></td>\n<td>3,503</td>\n<td></td>\n</tr>\n<tr>\n<td>100 %</td>\n<td>1,089</td>\n<td>12%</td>\n<td>438</td>\n<td>13%</td>\n<td>480</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>90 %</td>\n<td>1,043</td>\n<td>12%</td>\n<td>417</td>\n<td>12%</td>\n<td>459</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>80 %</td>\n<td>955</td>\n<td>11%</td>\n<td>367</td>\n<td>11%</td>\n<td>424</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>70 %</td>\n<td>831</td>\n<td>9%</td>\n<td>305</td>\n<td>9%</td>\n<td>344</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>60 %</td>\n<td>534</td>\n<td>6%</td>\n<td>246</td>\n<td>7%</td>\n<td>226</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>50 %</td>\n<td>973</td>\n<td>11%</td>\n<td>335</td>\n<td>10%</td>\n<td>338</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>40 %</td>\n<td>613</td>\n<td>7%</td>\n<td>245</td>\n<td>7%</td>\n<td>202</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>30 %</td>\n<td>877</td>\n<td>10%</td>\n<td>335</td>\n<td>10%</td>\n<td>310</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>20 %</td>\n<td>806</td>\n<td>9%</td>\n<td>242</td>\n<td>7%</td>\n<td>280</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>10 %</td>\n<td>1,039</td>\n<td>12%</td>\n<td>344</td>\n<td>10%</td>\n<td>348</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>0 %</td>\n<td>190</td>\n<td>2%</td>\n<td>72</td>\n<td>2%</td>\n<td>92</td>\n<td>3%</td>\n</tr>\n</tbody>\n</table>\n<h3>In which of the following ways do you work with WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>17,009</td>\n<td></td>\n<td>5,221</td>\n<td></td>\n<td>5,425</td>\n<td></td>\n</tr>\n<tr>\n<td>Build/design and/or maintain websites or blogs for other people, companies, or organizations</td>\n<td>15,342</td>\n<td>34%</td>\n<td>4,795</td>\n<td>34%</td>\n<td>5,064</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Develop or customize themes</td>\n<td>10,549</td>\n<td>24%</td>\n<td>2,997</td>\n<td>21%</td>\n<td>3,021</td>\n<td>20%</td>\n</tr>\n<tr>\n<td>Host websites for customers</td>\n<td>8,142</td>\n<td>18%</td>\n<td>2,466</td>\n<td>17%</td>\n<td>2,728</td>\n<td>18%</td>\n</tr>\n<tr>\n<td>Develop or distribute plugins</td>\n<td>4,125</td>\n<td>9%</td>\n<td>1,395</td>\n<td>10%</td>\n<td>1,416</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Provide educational resources to help others to use WordPress</td>\n<td>3,276</td>\n<td>7%</td>\n<td>1,187</td>\n<td>8%</td>\n<td>1,308</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Sponsor and/or attend WordCamps</td>\n<td>1,559</td>\n<td>4%</td>\n<td>648</td>\n<td>5%</td>\n<td>724</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>Contribute bug reports and/or patches to WordPress core</td>\n<td>1,107</td>\n<td>2%</td>\n<td>381</td>\n<td>3%</td>\n<td>393</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>389</td>\n<td>1%</td>\n<td>243</td>\n<td>2%</td>\n<td>299</td>\n<td>2%</td>\n</tr>\n</tbody>\n</table>\n<h3>How would you describe the business of your typical client(s)?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,863</td>\n<td></td>\n<td>5,151</td>\n<td></td>\n<td>5,353</td>\n<td></td>\n</tr>\n<tr>\n<td>Small business</td>\n<td>14,185</td>\n<td>35%</td>\n<td>4,342</td>\n<td>35%</td>\n<td>4,622</td>\n<td>36%</td>\n</tr>\n<tr>\n<td>Individual</td>\n<td>8,513</td>\n<td>21%</td>\n<td>2,581</td>\n<td>21%</td>\n<td>2,583</td>\n<td>20%</td>\n</tr>\n<tr>\n<td>Non-profit</td>\n<td>6,585</td>\n<td>16%</td>\n<td>2,004</td>\n<td>16%</td>\n<td>2,113</td>\n<td>16%</td>\n</tr>\n<tr>\n<td>Website development (sub-contracting)</td>\n<td>4,301</td>\n<td>11%</td>\n<td>1,258</td>\n<td>10%</td>\n<td>1,216</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Education</td>\n<td>3,458</td>\n<td>8%</td>\n<td>1,049</td>\n<td>8%</td>\n<td>1,139</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Large business or Enterprise</td>\n<td>2,391</td>\n<td>6%</td>\n<td>805</td>\n<td>6%</td>\n<td>857</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>Government</td>\n<td>1,150</td>\n<td>3%</td>\n<td>300</td>\n<td>2%</td>\n<td>329</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>173</td>\n<td>0%</td>\n<td>101</td>\n<td>1%</td>\n<td>99</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>How do you use WordPress in your development?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,768</td>\n<td></td>\n<td>5,145</td>\n<td></td>\n<td>5,372</td>\n<td></td>\n</tr>\n<tr>\n<td>Mostly as a content management system (CMS)</td>\n<td>11,754</td>\n<td>70%</td>\n<td>3,641</td>\n<td>71%</td>\n<td>3,959</td>\n<td>74%</td>\n</tr>\n<tr>\n<td>About half the time as a blogging platform and half the time as a CMS</td>\n<td>2,825</td>\n<td>17%</td>\n<td>812</td>\n<td>16%</td>\n<td>721</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>Mostly as an application framework</td>\n<td>1,012</td>\n<td>6%</td>\n<td>343</td>\n<td>7%</td>\n<td>344</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Mostly as a blogging platform</td>\n<td>992</td>\n<td>6%</td>\n<td>246</td>\n<td>5%</td>\n<td>226</td>\n<td>4%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>185</td>\n<td>1%</td>\n<td>105</td>\n<td>2%</td>\n<td>122</td>\n<td>2%</td>\n</tr>\n</tbody>\n</table>\n<h3>How much is your average WordPress site customized from the original WordPress installation?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,699</td>\n<td></td>\n<td>5,131</td>\n<td></td>\n<td>5,317</td>\n<td></td>\n</tr>\n<tr>\n<td>A lot of work has been done, the front end is unrecognizable, but the Dashboard still looks like the usual WordPress interface.</td>\n<td>9,457</td>\n<td>57%</td>\n<td>2,837</td>\n<td>55%</td>\n<td>2,998</td>\n<td>56%</td>\n</tr>\n<tr>\n<td>There’s a different theme and some plugins have been added.</td>\n<td>5,526</td>\n<td>33%</td>\n<td>1,694</td>\n<td>33%</td>\n<td>1,781</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Not at all, it’s still pretty much the same as the original download.</td>\n<td>977</td>\n<td>6%</td>\n<td>341</td>\n<td>7%</td>\n<td>310</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>You’d never know this was a WordPress installation, everything (including the admin) has been customized.</td>\n<td>739</td>\n<td>4%</td>\n<td>261</td>\n<td>5%</td>\n<td>228</td>\n<td>4%</td>\n</tr>\n</tbody>\n</table>\n<h3>How many currently active WordPress sites have you built? (2015) / Roughly how many currently active WordPress sites have you built? (2016, 2017)</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,690</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>200 +</td>\n<td>514</td>\n<td>3%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>51 – 200</td>\n<td>1,728</td>\n<td>10%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>21 – 50</td>\n<td>3,000</td>\n<td>18%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>11 – 20</td>\n<td>3,146</td>\n<td>19%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>6 – 10</td>\n<td>3,405</td>\n<td>20%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>2 – 5</td>\n<td>3,838</td>\n<td>23%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>1</td>\n<td>698</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>0</td>\n<td>361</td>\n<td>2%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>5,165</td>\n<td></td>\n<td>5367</td>\n<td></td>\n</tr>\n<tr>\n<td>Thousands.</td>\n<td></td>\n<td></td>\n<td>110</td>\n<td>2%</td>\n<td>104</td>\n<td>2%</td>\n</tr>\n<tr>\n<td>Hundreds.</td>\n<td></td>\n<td></td>\n<td>603</td>\n<td>12%</td>\n<td>713</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>Fewer than a hundred.</td>\n<td></td>\n<td></td>\n<td>2,264</td>\n<td>44%</td>\n<td>2,457</td>\n<td>46%</td>\n</tr>\n<tr>\n<td>Just a few, but they are really great.</td>\n<td></td>\n<td></td>\n<td>1,871</td>\n<td>36%</td>\n<td>1,813</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Prefer not to answer.</td>\n<td></td>\n<td></td>\n<td>319</td>\n<td>6%</td>\n<td>280</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>Roughly what percentage of your working time is spent working with WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,658</td>\n<td></td>\n<td>5,039</td>\n<td></td>\n<td>5,241</td>\n<td></td>\n</tr>\n<tr>\n<td>100 %</td>\n<td>949</td>\n<td>6%</td>\n<td>459</td>\n<td>9%</td>\n<td>461</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>90 %</td>\n<td>1,300</td>\n<td>8%</td>\n<td>527</td>\n<td>10%</td>\n<td>540</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>80 %</td>\n<td>1,784</td>\n<td>11%</td>\n<td>637</td>\n<td>13%</td>\n<td>711</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>70 %</td>\n<td>1,850</td>\n<td>11%</td>\n<td>608</td>\n<td>12%</td>\n<td>627</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>60 %</td>\n<td>1,313</td>\n<td>8%</td>\n<td>438</td>\n<td>9%</td>\n<td>465</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>50 %</td>\n<td>2,095</td>\n<td>13%</td>\n<td>612</td>\n<td>12%</td>\n<td>639</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>40 %</td>\n<td>1,438</td>\n<td>9%</td>\n<td>391</td>\n<td>8%</td>\n<td>384</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>30 %</td>\n<td>2,076</td>\n<td>12%</td>\n<td>530</td>\n<td>11%</td>\n<td>511</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>20 %</td>\n<td>1,743</td>\n<td>10%</td>\n<td>445</td>\n<td>9%</td>\n<td>429</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>10 %</td>\n<td>1,819</td>\n<td>11%</td>\n<td>342</td>\n<td>7%</td>\n<td>419</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>0 %</td>\n<td>291</td>\n<td>2%</td>\n<td>52</td>\n<td>1%</td>\n<td>55</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>How many hours of your work does the typical site take to complete? (2015) / How many hours of work does your typical WordPress project take to launch? (2016, 2017)</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,670</td>\n<td></td>\n<td>5,164</td>\n<td></td>\n<td>5,378</td>\n<td></td>\n</tr>\n<tr>\n<td>More than 200</td>\n<td>503</td>\n<td>3%</td>\n<td>222</td>\n<td>4%</td>\n<td>245</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>100 – 200</td>\n<td>973</td>\n<td>6%</td>\n<td>386</td>\n<td>7%</td>\n<td>393</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>60 – 100</td>\n<td>2,277</td>\n<td>14%</td>\n<td>788</td>\n<td>15%</td>\n<td>815</td>\n<td>15%</td>\n</tr>\n<tr>\n<td>40 – 60</td>\n<td>3,896</td>\n<td>23%</td>\n<td>1,153</td>\n<td>22%</td>\n<td>1,216</td>\n<td>23%</td>\n</tr>\n<tr>\n<td>20 – 40</td>\n<td>6,068</td>\n<td>36%</td>\n<td>1,487</td>\n<td>29%</td>\n<td>1,582</td>\n<td>29%</td>\n</tr>\n<tr>\n<td>Fewer than 20</td>\n<td>2,953</td>\n<td>18%</td>\n<td>712</td>\n<td>14%</td>\n<td>751</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>418</td>\n<td>8%</td>\n<td>376</td>\n<td>7%</td>\n</tr>\n</tbody>\n</table>\n<h3>Which of the following have you done with WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" /> </colgroup>\n</table>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional (Company/Freelancer/Hobbyist)</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>20,687</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve written a theme from scratch.</td>\n<td>11,894</td>\n<td>25%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve written a plugin.</td>\n<td>9,719</td>\n<td>21%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve answered a question in the WordPress forum.</td>\n<td>8,805</td>\n<td>19%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve attended a WordPress meetup.</td>\n<td>4,062</td>\n<td>9%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve submitted a WordPress bug report.</td>\n<td>4,062</td>\n<td>9%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve attended a WordCamp.</td>\n<td>3,571</td>\n<td>8%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve contributed to WordPress documentation.</td>\n<td>1,778</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>1,739</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve contributed a WordPress core patch.</td>\n<td>1,055</td>\n<td>2%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n<h3>What’s the best thing about WordPress?<a href=\"https://wordpress.org/news/feed/#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>22,718</td>\n<td></td>\n<td>7,891</td>\n<td></td>\n<td>8,267</td>\n<td></td>\n</tr>\n<tr>\n<td>Easy/simple/user-friendly</td>\n<td>9,450</td>\n<td>42%</td>\n<td>3,454</td>\n<td>44%</td>\n<td>3,852</td>\n<td>47%</td>\n</tr>\n<tr>\n<td>Customizable/extensible/modular/plugins/themes</td>\n<td>8,601</td>\n<td>38%</td>\n<td>3,116</td>\n<td>39%</td>\n<td>3,555</td>\n<td>43%</td>\n</tr>\n<tr>\n<td>Community/support/documentation/help</td>\n<td>3,806</td>\n<td>17%</td>\n<td>1,211</td>\n<td>15%</td>\n<td>1,340</td>\n<td>16%</td>\n</tr>\n<tr>\n<td>Free/open/open source</td>\n<td>2,291</td>\n<td>10%</td>\n<td>802</td>\n<td>10%</td>\n<td>908</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Popular/ubiquitous</td>\n<td>249</td>\n<td>1%</td>\n<td>86</td>\n<td>1%</td>\n<td>187</td>\n<td>2%</td>\n</tr>\n</tbody>\n</table>\n<h3> What’s the most frustrating thing about WordPress?<a href=\"https://wordpress.org/news/feed/#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>21,144</td>\n<td></td>\n<td>7,294</td>\n<td></td>\n<td>7,691</td>\n<td></td>\n</tr>\n<tr>\n<td>Plugins & themes (abandoned/conflicts/coding standards)</td>\n<td>6,122</td>\n<td>29%</td>\n<td>2,194</td>\n<td>30%</td>\n<td>2,187</td>\n<td>28%</td>\n</tr>\n<tr>\n<td>Security/vulnerabilities/hacks</td>\n<td>2,321</td>\n<td>11%</td>\n<td>712</td>\n<td>10%</td>\n<td>829</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Updates</td>\n<td>1,544</td>\n<td>7%</td>\n<td>422</td>\n<td>6%</td>\n<td>508</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>Nothing/I don’t know/can’t think of anything</td>\n<td>1,276</td>\n<td>6%</td>\n<td>344</td>\n<td>5%</td>\n<td>476</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Speed/performance/slow/heavy</td>\n<td>1,196</td>\n<td>6%</td>\n<td>644</td>\n<td>9%</td>\n<td>516</td>\n<td>7%</td>\n</tr>\n</tbody>\n</table>\n<h3>WordPress is as good as, or better than, its main competitors.</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (this question was not asked in the 2015 survey)</td>\n<td></td>\n<td></td>\n<td>8,672</td>\n<td></td>\n<td>9,059</td>\n<td></td>\n</tr>\n<tr>\n<td>Agree</td>\n<td></td>\n<td></td>\n<td>7551</td>\n<td>87%</td>\n<td>7836</td>\n<td>87%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>754</td>\n<td>9%</td>\n<td>795</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Disagree</td>\n<td></td>\n<td></td>\n<td>370</td>\n<td>4%</td>\n<td>428</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h2 id=\"user\">WordPress Users</h2>\n<h3>Which of the following describes how you use WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>15,169</td>\n<td></td>\n<td>5,043</td>\n<td></td>\n<td>5,521</td>\n<td></td>\n</tr>\n<tr>\n<td>My personal blog (or blogs) uses WordPress.</td>\n<td>9,395</td>\n<td>36%</td>\n<td>3,117</td>\n<td>36%</td>\n<td>3,424</td>\n<td>36%</td>\n</tr>\n<tr>\n<td>My company or organization’s website is built with WordPress software.</td>\n<td>7,480</td>\n<td>29%</td>\n<td>2,519</td>\n<td>29%</td>\n<td>2,841</td>\n<td>30%</td>\n</tr>\n<tr>\n<td>I have a hobby or side project that has a website built with WordPress.</td>\n<td>6,112</td>\n<td>23%</td>\n<td>1,973</td>\n<td>23%</td>\n<td>2,200</td>\n<td>23%</td>\n</tr>\n<tr>\n<td>I write (or otherwise work) for an online publication that uses WordPress.</td>\n<td>2,329</td>\n<td>9%</td>\n<td>806</td>\n<td>9%</td>\n<td>821</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>872</td>\n<td>3%</td>\n<td>234</td>\n<td>3%</td>\n<td>288</td>\n<td>3%</td>\n</tr>\n</tbody>\n</table>\n<h3>Who installed your WordPress website?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>15,055</td>\n<td></td>\n<td>5,020</td>\n<td></td>\n<td>5,523</td>\n<td></td>\n</tr>\n<tr>\n<td>I did.</td>\n<td>11,216</td>\n<td>66%</td>\n<td>3,659</td>\n<td>73%</td>\n<td>4,129</td>\n<td>75%</td>\n</tr>\n<tr>\n<td>My hosting provider</td>\n<td>2,236</td>\n<td>13%</td>\n<td>667</td>\n<td>13%</td>\n<td>767</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>An external company</td>\n<td>909</td>\n<td>5%</td>\n<td>182</td>\n<td>4%</td>\n<td>178</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>An internal web person/team or a colleague</td>\n<td>874</td>\n<td>5%</td>\n<td>178</td>\n<td>4%</td>\n<td>191</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>A friend or family member</td>\n<td>787</td>\n<td>5%</td>\n<td>192</td>\n<td>4%</td>\n<td>172</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>I don’t know</td>\n<td>502</td>\n<td>3%</td>\n<td>145</td>\n<td>3%</td>\n<td>87</td>\n<td>2%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>345</td>\n<td>2%</td>\n<td>n/a</td>\n<td>n/a</td>\n<td>n/a</td>\n<td>n/a</td>\n</tr>\n</tbody>\n</table>\n<h3>How much has the site been customized from the original WordPress installation?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>14,789</td>\n<td></td>\n<td>4,997</td>\n<td></td>\n<td>5,494</td>\n<td></td>\n</tr>\n<tr>\n<td>There’s a different theme and some plugins have been added.</td>\n<td>7,465</td>\n<td>50%</td>\n<td>2,337</td>\n<td>47%</td>\n<td>2,660</td>\n<td>48%</td>\n</tr>\n<tr>\n<td>A lot of work has been done, the site itself is unrecognizable from the original theme, but the Dashboard still looks like the usual WordPress interface.</td>\n<td>4,715</td>\n<td>32%</td>\n<td>1,707</td>\n<td>34%</td>\n<td>1,872</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Not at all, it’s still pretty much the same as it was when I started out.</td>\n<td>1,841</td>\n<td>12%</td>\n<td>635</td>\n<td>13%</td>\n<td>673</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>You’d never know this was a WordPress installation, everything has been customized.</td>\n<td>768</td>\n<td>5%</td>\n<td>321</td>\n<td>6%</td>\n<td>290</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>What’s the best thing about WordPress?<a href=\"https://wordpress.org/news/feed/#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>14,328</td>\n<td></td>\n<td>4,613</td>\n<td></td>\n<td>5,076</td>\n<td></td>\n</tr>\n<tr>\n<td>Easy/simple/user-friendly</td>\n<td>7,391</td>\n<td>52%</td>\n<td>2,276</td>\n<td>49%</td>\n<td>2,511</td>\n<td>49%</td>\n</tr>\n<tr>\n<td>Customizable/extensible/modular/plugins/themes</td>\n<td>4,219</td>\n<td>29%</td>\n<td>1,569</td>\n<td>34%</td>\n<td>1,632</td>\n<td>32%</td>\n</tr>\n<tr>\n<td>Free/open/open source</td>\n<td>1,586</td>\n<td>11%</td>\n<td>493</td>\n<td>11%</td>\n<td>538</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Community/support/documentation/help</td>\n<td>1,085</td>\n<td>8%</td>\n<td>388</td>\n<td>8%</td>\n<td>458</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Popular/ubiquitous</td>\n<td>223</td>\n<td>2%</td>\n<td>74</td>\n<td>2%</td>\n<td>48</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>What’s the most frustrating thing about WordPress?<a href=\"https://wordpress.org/news/feed/#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>13,681</td>\n<td></td>\n<td>4,287</td>\n<td></td>\n<td>4,758</td>\n<td></td>\n</tr>\n<tr>\n<td>Plugins & themes (abandoned/conflicts/coding standards)</td>\n<td>2,531</td>\n<td>19%</td>\n<td>1,183</td>\n<td>28%</td>\n<td>1,300</td>\n<td>27%</td>\n</tr>\n<tr>\n<td>Customization/design/look/template</td>\n<td>1,273</td>\n<td>9%</td>\n<td>381</td>\n<td>9%</td>\n<td>408</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Code/coding/PHP</td>\n<td>931</td>\n<td>7%</td>\n<td>306</td>\n<td>7%</td>\n<td>277</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Updates</td>\n<td>926</td>\n<td>7%</td>\n<td>209</td>\n<td>5%</td>\n<td>296</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Security/vulnerabilites/hacks</td>\n<td>785</td>\n<td>6%</td>\n<td>255</td>\n<td>6%</td>\n<td>292</td>\n<td>6%</td>\n</tr>\n</tbody>\n</table>\n<h3>WordPress is as good as, or better than, its main competitors.</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>5,026</td>\n<td></td>\n<td>5,498</td>\n<td></td>\n</tr>\n<tr>\n<td>Agree</td>\n<td></td>\n<td></td>\n<td>4,038</td>\n<td>80%</td>\n<td>4,462</td>\n<td>81%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>737</td>\n<td>15%</td>\n<td>782</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>Disagree</td>\n<td></td>\n<td></td>\n<td>254</td>\n<td>5%</td>\n<td>255</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h2 id=\"all\">All Respondents</h2>\n<h3>Can you (truthfully!) say “I make my living from WordPress”?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (combination of all three groups from 2015; this question was not broken out by group in 2016-2017)</td>\n<td>42,236</td>\n<td></td>\n<td>14,906</td>\n<td></td>\n<td>15,616</td>\n<td></td>\n</tr>\n<tr>\n<td>Not really, but I do get some or all of my income as a result of working with WordPress.</td>\n<td>16,607</td>\n<td>39%</td>\n<td>5,408</td>\n<td>36%</td>\n<td>5,702</td>\n<td>37%</td>\n</tr>\n<tr>\n<td>Yes.</td>\n<td>9,635</td>\n<td>23%</td>\n<td>4,791</td>\n<td>32%</td>\n<td>5,033</td>\n<td>32%</td>\n</tr>\n<tr>\n<td>No.</td>\n<td>15,995</td>\n<td>38%</td>\n<td>4,713</td>\n<td>32%</td>\n<td>4,882</td>\n<td>31%</td>\n</tr>\n</tbody>\n</table>\n<h3>Which devices do you access WordPress on?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (combination of all three groups from 2015; this question was not broken out by group in 2016-2017)</td>\n<td>42,433</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Web</td>\n<td>40,503</td>\n<td>95%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Android phone</td>\n<td>15,396</td>\n<td>36%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>iPhone</td>\n<td>12,353</td>\n<td>29%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>iPad</td>\n<td>11,748</td>\n<td>28%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Android tablet</td>\n<td>9,223</td>\n<td>22%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Desktop app, like MarsEdit</td>\n<td>6,018</td>\n<td>14%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>1837</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (this question was not broken out by group in 2016-2017)</td>\n<td></td>\n<td></td>\n<td>14,840</td>\n<td></td>\n<td>15,597</td>\n<td></td>\n</tr>\n<tr>\n<td>Web browser on a desktop or laptop</td>\n<td></td>\n<td></td>\n<td>14,160</td>\n<td>54%</td>\n<td>15,052</td>\n<td>55%</td>\n</tr>\n<tr>\n<td>Web browser on a mobile device (tablet or phone)</td>\n<td></td>\n<td></td>\n<td>7,952</td>\n<td>30%</td>\n<td>8,248</td>\n<td>30%</td>\n</tr>\n<tr>\n<td>An app on a mobile device (table or phone)</td>\n<td></td>\n<td></td>\n<td>3,309</td>\n<td>13%</td>\n<td>3,311</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>A desktop app like MarsEdit</td>\n<td></td>\n<td></td>\n<td>517</td>\n<td>2%</td>\n<td>498</td>\n<td>2%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td></td>\n<td></td>\n<td>282</td>\n<td>1%</td>\n<td>240</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>WordPress now updates minor & security releases automatically for you. Check all that apply: (question not asked in 2016, 2017)</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (combination of all three groups)</td>\n<td>39,726</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I love auto-updates.</td>\n<td>17,367</td>\n<td>44%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’d like to see auto-updates for plugins.</td>\n<td>12,796</td>\n<td>32%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Initially, I was nervous about auto updates.</td>\n<td>11,868</td>\n<td>30%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Auto updates still make me nervous.</td>\n<td>10,809</td>\n<td>27%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Auto updates don’t make me nervous now.</td>\n<td>10,708</td>\n<td>27%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’d like to see auto-updates for themes.</td>\n<td>10,449</td>\n<td>26%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’d like to see auto updates for major versions of WordPress.</td>\n<td>10,225</td>\n<td>26%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>This is the first I’ve heard of auto-updates.</td>\n<td>8,660</td>\n<td>22%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I hate auto-updates.</td>\n<td>3,293</td>\n<td>8%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n<h3>What is your gender?<a href=\"https://wordpress.org/news/feed/#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All respondents (This question was not asked in the 2015 survey.)</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>13,953</td>\n<td></td>\n<td>14,680</td>\n<td></td>\n</tr>\n<tr>\n<td>Male</td>\n<td></td>\n<td></td>\n<td>10,978</td>\n<td>78.68%</td>\n<td>11,570</td>\n<td>78.81%</td>\n</tr>\n<tr>\n<td>Female</td>\n<td></td>\n<td></td>\n<td>2,340</td>\n<td>16.77%</td>\n<td>2,511</td>\n<td>21.70%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>601</td>\n<td>4.31%</td>\n<td>562</td>\n<td>3.83%</td>\n</tr>\n<tr>\n<td>Transgender</td>\n<td></td>\n<td></td>\n<td>11</td>\n<td>0.08%</td>\n<td>8</td>\n<td>0.05%</td>\n</tr>\n<tr>\n<td>Nonbinary</td>\n<td></td>\n<td></td>\n<td>8</td>\n<td>0.06%</td>\n<td>17</td>\n<td>0.12%</td>\n</tr>\n<tr>\n<td>Genderqueer</td>\n<td></td>\n<td></td>\n<td>4</td>\n<td>0.03%</td>\n<td>3</td>\n<td>0.02%</td>\n</tr>\n<tr>\n<td>Androgynous</td>\n<td></td>\n<td></td>\n<td>6</td>\n<td>0.04%</td>\n<td>5</td>\n<td>0.03%</td>\n</tr>\n<tr>\n<td>Fluid</td>\n<td></td>\n<td></td>\n<td>3</td>\n<td>0.02%</td>\n<td>4</td>\n<td>0.03%</td>\n</tr>\n<tr>\n<td>Demimale</td>\n<td></td>\n<td></td>\n<td>2</td>\n<td>0.01%</td>\n<td>0</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n<h3>Where are you located?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All respondents (This question was not asked in the 2015 survey.)</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>14,562</td>\n<td></td>\n<td>15,343</td>\n<td></td>\n</tr>\n<tr>\n<td>United States</td>\n<td></td>\n<td></td>\n<td>3,770</td>\n<td>25.89%</td>\n<td>4,067</td>\n<td>26.51%</td>\n</tr>\n<tr>\n<td>India</td>\n<td></td>\n<td></td>\n<td>1,456</td>\n<td>10.00%</td>\n<td>1,424</td>\n<td>9.28%</td>\n</tr>\n<tr>\n<td>United Kingdom</td>\n<td></td>\n<td></td>\n<td>810</td>\n<td>5.56%</td>\n<td>900</td>\n<td>5.87%</td>\n</tr>\n<tr>\n<td>Germany</td>\n<td></td>\n<td></td>\n<td>555</td>\n<td>3.81%</td>\n<td>729</td>\n<td>4.75%</td>\n</tr>\n<tr>\n<td>Canada</td>\n<td></td>\n<td></td>\n<td>511</td>\n<td>3.51%</td>\n<td>599</td>\n<td>3.90%</td>\n</tr>\n<tr>\n<td>Australia</td>\n<td></td>\n<td></td>\n<td>389</td>\n<td>2.67%</td>\n<td>460</td>\n<td>3.00%</td>\n</tr>\n<tr>\n<td>Italy</td>\n<td></td>\n<td></td>\n<td>298</td>\n<td>2.05%</td>\n<td>356</td>\n<td>2.32%</td>\n</tr>\n<tr>\n<td>Netherlands</td>\n<td></td>\n<td></td>\n<td>343</td>\n<td>2.36%</td>\n<td>350</td>\n<td>2.28%</td>\n</tr>\n<tr>\n<td>France</td>\n<td></td>\n<td></td>\n<td>232</td>\n<td>1.59%</td>\n<td>283</td>\n<td>1.84%</td>\n</tr>\n<tr>\n<td>Bangladesh</td>\n<td></td>\n<td></td>\n<td>257</td>\n<td>1.76%</td>\n<td>263</td>\n<td>1.71%</td>\n</tr>\n<tr>\n<td>Spain</td>\n<td></td>\n<td></td>\n<td>271</td>\n<td>1.86%</td>\n<td>252</td>\n<td>1.64%</td>\n</tr>\n<tr>\n<td>Brazil</td>\n<td></td>\n<td></td>\n<td>239</td>\n<td>1.64%</td>\n<td>251</td>\n<td>1.64%</td>\n</tr>\n<tr>\n<td>Pakistan</td>\n<td></td>\n<td></td>\n<td>254</td>\n<td>1.74%</td>\n<td>240</td>\n<td>1.56%</td>\n</tr>\n<tr>\n<td>Indonesia</td>\n<td></td>\n<td></td>\n<td>230</td>\n<td>1.58%</td>\n<td>226</td>\n<td>1.47%</td>\n</tr>\n<tr>\n<td>Iran, Islamic Republic of</td>\n<td></td>\n<td></td>\n<td>190</td>\n<td>1.30%</td>\n<td>173</td>\n<td>1.13%</td>\n</tr>\n<tr>\n<td>Sweden</td>\n<td></td>\n<td></td>\n<td>144</td>\n<td>0.99%</td>\n<td>173</td>\n<td>1.13%</td>\n</tr>\n<tr>\n<td>Nigeria</td>\n<td></td>\n<td></td>\n<td>196</td>\n<td>1.35%</td>\n<td>172</td>\n<td>1.12%</td>\n</tr>\n<tr>\n<td>South Africa</td>\n<td></td>\n<td></td>\n<td>193</td>\n<td>1.33%</td>\n<td>172</td>\n<td>1.12%</td>\n</tr>\n<tr>\n<td>Russian Federation</td>\n<td></td>\n<td></td>\n<td>181</td>\n<td>1.24%</td>\n<td>151</td>\n<td>0.98%</td>\n</tr>\n<tr>\n<td>Poland</td>\n<td></td>\n<td></td>\n<td>129</td>\n<td>0.89%</td>\n<td>137</td>\n<td>0.89%</td>\n</tr>\n<tr>\n<td>Romania</td>\n<td></td>\n<td></td>\n<td>144</td>\n<td>0.99%</td>\n<td>132</td>\n<td>0.86%</td>\n</tr>\n<tr>\n<td>Switzerland</td>\n<td></td>\n<td></td>\n<td>122</td>\n<td>0.84%</td>\n<td>130</td>\n<td>0.85%</td>\n</tr>\n<tr>\n<td>Philippines</td>\n<td></td>\n<td></td>\n<td>92</td>\n<td>0.63%</td>\n<td>125</td>\n<td>0.81%</td>\n</tr>\n<tr>\n<td>China</td>\n<td></td>\n<td></td>\n<td>136</td>\n<td>0.93%</td>\n<td>123</td>\n<td>0.80%</td>\n</tr>\n<tr>\n<td>Austria</td>\n<td></td>\n<td></td>\n<td>89</td>\n<td>0.61%</td>\n<td>122</td>\n<td>0.80%</td>\n</tr>\n<tr>\n<td>Ukraine</td>\n<td></td>\n<td></td>\n<td>105</td>\n<td>0.72%</td>\n<td>118</td>\n<td>0.77%</td>\n</tr>\n<tr>\n<td>Denmark</td>\n<td></td>\n<td></td>\n<td>107</td>\n<td>0.73%</td>\n<td>114</td>\n<td>0.74%</td>\n</tr>\n<tr>\n<td>Greece</td>\n<td></td>\n<td></td>\n<td>120</td>\n<td>0.82%</td>\n<td>114</td>\n<td>0.74%</td>\n</tr>\n<tr>\n<td>Portugal</td>\n<td></td>\n<td></td>\n<td>94</td>\n<td>0.65%</td>\n<td>109</td>\n<td>0.71%</td>\n</tr>\n<tr>\n<td>Vietnam</td>\n<td></td>\n<td></td>\n<td>101</td>\n<td>0.69%</td>\n<td>108</td>\n<td>0.70%</td>\n</tr>\n<tr>\n<td>Mexico</td>\n<td></td>\n<td></td>\n<td>94</td>\n<td>0.65%</td>\n<td>105</td>\n<td>0.68%</td>\n</tr>\n<tr>\n<td>Nepal</td>\n<td></td>\n<td></td>\n<td>76</td>\n<td>0.52%</td>\n<td>97</td>\n<td>0.63%</td>\n</tr>\n<tr>\n<td>Ireland</td>\n<td></td>\n<td></td>\n<td>72</td>\n<td>0.49%</td>\n<td>94</td>\n<td>0.61%</td>\n</tr>\n<tr>\n<td>Israel</td>\n<td></td>\n<td></td>\n<td>78</td>\n<td>0.54%</td>\n<td>94</td>\n<td>0.61%</td>\n</tr>\n<tr>\n<td>New Zealand</td>\n<td></td>\n<td></td>\n<td>77</td>\n<td>0.53%</td>\n<td>91</td>\n<td>0.59%</td>\n</tr>\n<tr>\n<td>Finland</td>\n<td></td>\n<td></td>\n<td>63</td>\n<td>0.43%</td>\n<td>90</td>\n<td>0.59%</td>\n</tr>\n<tr>\n<td>Turkey</td>\n<td></td>\n<td></td>\n<td>91</td>\n<td>0.62%</td>\n<td>86</td>\n<td>0.56%</td>\n</tr>\n<tr>\n<td>Malaysia</td>\n<td></td>\n<td></td>\n<td>91</td>\n<td>0.62%</td>\n<td>81</td>\n<td>0.53%</td>\n</tr>\n<tr>\n<td>Belgium</td>\n<td></td>\n<td></td>\n<td>84</td>\n<td>0.58%</td>\n<td>79</td>\n<td>0.51%</td>\n</tr>\n<tr>\n<td>Norway</td>\n<td></td>\n<td></td>\n<td>66</td>\n<td>0.45%</td>\n<td>79</td>\n<td>0.51%</td>\n</tr>\n<tr>\n<td>Argentina</td>\n<td></td>\n<td></td>\n<td>65</td>\n<td>0.45%</td>\n<td>76</td>\n<td>0.50%</td>\n</tr>\n<tr>\n<td>Bulgaria</td>\n<td></td>\n<td></td>\n<td>74</td>\n<td>0.51%</td>\n<td>72</td>\n<td>0.47%</td>\n</tr>\n<tr>\n<td>Japan</td>\n<td></td>\n<td></td>\n<td>61</td>\n<td>0.42%</td>\n<td>68</td>\n<td>0.44%</td>\n</tr>\n<tr>\n<td>Thailand</td>\n<td></td>\n<td></td>\n<td>69</td>\n<td>0.47%</td>\n<td>67</td>\n<td>0.44%</td>\n</tr>\n<tr>\n<td>Czech Republic</td>\n<td></td>\n<td></td>\n<td>76</td>\n<td>0.52%</td>\n<td>66</td>\n<td>0.43%</td>\n</tr>\n<tr>\n<td>Serbia</td>\n<td></td>\n<td></td>\n<td>89</td>\n<td>0.61%</td>\n<td>63</td>\n<td>0.41%</td>\n</tr>\n<tr>\n<td>Kenya</td>\n<td></td>\n<td></td>\n<td>58</td>\n<td>0.40%</td>\n<td>62</td>\n<td>0.40%</td>\n</tr>\n<tr>\n<td>Colombia</td>\n<td></td>\n<td></td>\n<td>39</td>\n<td>0.27%</td>\n<td>59</td>\n<td>0.38%</td>\n</tr>\n<tr>\n<td>Egypt</td>\n<td></td>\n<td></td>\n<td>40</td>\n<td>0.27%</td>\n<td>52</td>\n<td>0.34%</td>\n</tr>\n</tbody>\n</table>\n<h3>What is your age?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (This question was not asked in 2015.)</td>\n<td></td>\n<td></td>\n<td>14,944</td>\n<td></td>\n<td>15,636</td>\n<td></td>\n</tr>\n<tr>\n<td>60 and over</td>\n<td></td>\n<td></td>\n<td>1,139</td>\n<td>8%</td>\n<td>1,641</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>50-59</td>\n<td></td>\n<td></td>\n<td>1,537</td>\n<td>10%</td>\n<td>1,996</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>40-49</td>\n<td></td>\n<td></td>\n<td>2,205</td>\n<td>15%</td>\n<td>2,643</td>\n<td>17%</td>\n</tr>\n<tr>\n<td>30-39</td>\n<td></td>\n<td></td>\n<td>3,914</td>\n<td>26%</td>\n<td>3,972</td>\n<td>25%</td>\n</tr>\n<tr>\n<td>20-29</td>\n<td></td>\n<td></td>\n<td>5,013</td>\n<td>34%</td>\n<td>4,444</td>\n<td>28%</td>\n</tr>\n<tr>\n<td>Under 20</td>\n<td></td>\n<td></td>\n<td>1142</td>\n<td>8%</td>\n<td>941</td>\n<td>6%</td>\n</tr>\n</tbody>\n</table>\n<p>Thank you to everyone who made time to fill out the survey — we’re so happy you use WordPress, and we’re very grateful that you’re willing to share your experiences with us! Thanks also to everyone who spread the word about this survey, and to those of you who read all the way to the bottom of this post. <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f609.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n<p><small><a id=\"text\"></a>*Text Field Questions: Each survey included some questions that could be answered only by filling out a text field. In the case of the questions “What is the best thing about WordPress?” and “What is the most frustrating thing about WordPress?” we listed the five most common responses, aggregated when applicable. In the case of the question “What is your gender?” in the 2016 and 2017 surveys, we aggregated responses as best we could. Responses meant to obscure respondents’ gender entirely are aggregated in “prefer not to answer.”</small></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 Dec 2017 21:40:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Andrea Middleton\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:82:\"WPTavern: WPWeekly Episode 298 – GDPR, User Privacy, and More With Heather Burns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=77110&preview=true&preview_id=77110\";s:7:\"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:87:\"https://wptavern.com/wpweekly-episode-298-gdpr-user-privacy-and-more-with-heather-burns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2570:\"<p>In this episode, <a href=\"https://jjj.blog/\">John James Jacoby</a> and I are joined by <a href=\"https://twitter.com/webdevlaw?lang=en\">Heather Burns</a>, Founder of <a href=\"https://webdevlaw.uk/\">WebDevLaw</a>. We have a lengthy discussion about <a href=\"https://www.eugdpr.org/\">GDPR</a> (General Data Protection Regulation), what it is, what’s at stake, and its potential impacts on the WordPress ecosystem. We also discuss the cultural differences between the North American and European views on user privacy.</p>\n<p>When asked what she hopes to see as we approach May of 2018, Burns replied:</p>\n<p>“I want to see all hands on deck making WordPress a force for good, that people can trust, and that people can be empowered to change for the better. Don’t let the fact that it involves law put you off. GDPR is a toolkit for empowerment, it’s a means for protecting and safeguarding your users in these quite scary times we’re living in. And it will make you a better developer and site administrator in the end.”</p>\n<p>For questions related to GDPR or how to make your site or WordPress plugins compliant, <a href=\"https://webdevlaw.uk/\">please get in touch with Burns</a>. You can also <a href=\"https://videopress.com/v/JkKwb2zi\">view her presentation</a> on WordPress.TV from WordCamp Belfast, 2016.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/wp-site-care-acquires-wp-radius\">WP Site Care Acquires WP Radius</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://frontenberg.tomjn.com/\">Frontenberg</a> by Tom J. Nowell is a new site that displays Gutenberg to the frontend of WordPress. It allows visitors to tinker with Gutenberg without having to login to a site or install a plugin.</p>\n<p>John gave props to <a href=\"https://github.com/renatonascalves\">Renato Alves</a> who has been working on adding WP-CLI support for <a href=\"https://github.com/bbpress/wp-cli-bbpress\">bbPress</a> and <a href=\"https://github.com/buddypress/wp-cli-buddypress\">BuddyPress</a>.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, December 27th 18th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p><strong>Listen To Episode #298:</strong><br />\n</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 Dec 2017 01:21:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:24:\"Matt: Design in Kentucky\";s:7:\"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=47730\";s:7:\"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/2017/12/design-in-kentucky/\";s: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:352:\"<p>Fast Company Design has written <a href=\"https://www.fastcodesign.com/90154530/tech-has-a-diversity-problem-so-this-designer-went-to-kentucky\">Tech Has A Diversity Problem–So This Designer Went To Kentucky</a>, about John Maeda's work pairing some of the top designers in the world with students in Paintsville, Kentucky. </p>\n\n\n\n<p></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 Dec 2017 21:17:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:41:\"WPTavern: WP Site Care Acquires WP Radius\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=77086\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wptavern.com/wp-site-care-acquires-wp-radius\";s: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:1407:\"<p><a href=\"https://www.wpsitecare.com\">WP Site Care</a>, a WordPress management and maintenance service provider<a href=\"https://www.wpsitecare.com/weve-acquired-wp-radius/\"> has acquired</a> <a href=\"https://www.wpradius.com/\">WP Radius</a>. Ryan Sullivan, Founder of WP Site Care, says the acquisition has been in the works for some time. </p>\n\n\n\n<p>\"We’ve been working toward growing our customer base and learning about new business models in the WordPress support space for quite some time, and the WP Radius acquisition allows us to accomplish both of those goals,\" he said.<br /></p>\n\n\n\n<p>The move increases WP Site Care's customer base by 20% and will allow it to experiment with <a href=\"https://www.wpradius.com/plans/\">an unlimited jobs model</a>, something that set WP Radius apart. </p>\n\n\n\n<p>\"We’ve been very interested in the unlimited jobs model and what that really means from an operations standpoint for quite some time, and whether or not it’s <em>actually</em> better for customers, so this move will allow us to learn a lot more about how that all plays out in the real world,\" Sullivan said.</p>\n\n\n\n<p>WP Radius will continue to operate as a separate entity and will eventually be consolidated into the WP Site Care brand. </p>\n\n\n\n<p>WP Radius was founded in 2015 by Todd Schwartzfarb and Brandon Yanofsky. Financial details of the acquisition were not disclosed. </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 Dec 2017 19:38: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:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:51:\"HeroPress: WordPress allowed me to have a Dream Job\";s:7:\"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=2357\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"https://heropress.com/essays/wordpress-allowed-dream-job/#utm_source=rss&utm_medium=rss&utm_campaign=wordpress-allowed-dream-job\";s: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:13902:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/121917-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: You know that you should never stop dreaming, right?\" /><p>I was always interested in computers but I did not know I would become a developer. As a kid, a dream job, was playing and reviewing video games. I believe, many kids had a similar dream job. I guess, that’s where I started seeing a dream job would be a job where you would be happy to go to and maybe even sad when going from it.</p>\n<p>Today, I see myself as having a dream job. Let me tell you how I got to my current situation.</p>\n<h3>Programming was not for me</h3>\n<p>While going to high school, I was introduced to programming. We did some Turbo C++ and I could not understand a thing. Even a simple for-loop was hard for me. I would rather play Counter-Strike with friends who attended that class. After that, as I did not understand programming, I chose not to follow such career path. I did not want my parents to pay for my college expenses since I would have to go to another city. Especially since I realised I don’t understand how to code.</p>\n<p>Since I live in Croatia, I did not have access to a high speed internet. At that time, a high speed internet was an ADSL with a download speed of 200kb/s.</p>\n<blockquote><p>I was using the 56k modem which was too expensive so I had only 2 hours per week to spend on it.</p></blockquote>\n<p>I used those 2 hours for playing games instead of learning.</p>\n<p>Once I got the ADSL, somewhere near the end of high school, I was able to get my hands on Photoshop and learned how to manipulate images. After high school, I went to the Maritime College but soon after I knew I did not want to spend years and years working on ships, not seeing my family or friends. That was not my dream job.</p>\n<h3>Second Try</h3>\n<p>I decided to give another chance to programming, but with a different learning path. Since I already knew how to use Photoshop, I realized there was an option “Slice for Web..”. That was my first introduction to web development.</p>\n<p>I knew having a web page composed of images from Photoshop was not how it should be done. I was used to 56k modem and I knew how a page like that would take long to load.</p>\n<p>The luck was on my side now since I had ADSL and I could spend hours and hours weekly search the Internet. I searched how to slice images and prepare them for web pages by reading PSD Tuts+. Back then there were only PSD and Net TutsPlus sites in their network.</p>\n<p>I learned a lot on PSD to HTML and how to use CSS to style your web sites. After that, I wanted to learn how do blogging sites work. How do they show those articles. I mean, it couldn’t be that for each article, they would open one HTML file and edit it. That’s just too much work. So, I found about PHP and MySQL and got some courses on Lynda on that.</p>\n<p>I learned about creating a blog using PHP and MySQL. I also learned a little on advanced coding and I was really happy with my knowledge. All that was just a month or two from where I knew nothing on programming.</p>\n<h3>Looking for a CMS</h3>\n<p>With my knowledge, I knew how to build various types of sites. I asked other businesses if I could build a site for them in return of a favour or even product. Some of them were up to that. I didn’t want to charge since I knew I still had a lot to learn.</p>\n<p>After a while, I was a bit tired (read: lazy) of building SQL tables and all the base functions for each project. I wanted to see if there are some tools I could use for a faster development. Something that would give me a starting point with basic functionalities such as content, users, settings etc.</p>\n<p>After reading a lot of tutorials on PHP, I also read about Joomla, WordPress and similar. So I went for both. I was so confused by Joomla and how everything I wanted to do required me several clicks. After that, I tried WordPress. I loved it. Joomla had articles, which you could set as pages. WordPress had Posts and Pages. I really loved how everything was so easy to setup. At that time, there were no custom post types or featured images, but I did not need them yet. I was just beginning my journey with WordPress.</p>\n<p>From there forward I downloaded many themes and plugins just to read their code and learn how they’ve been developed.</p>\n<h3>The First Breadcrumbs & Disappointments</h3>\n<p>Even though I did not know too much, I did know how to develop something, how to use a library and integrate it into my own and so on.</p>\n<blockquote><p>The first time I realised that WordPress could help me have a dream job is when I created a simple Dropbox plugin for my own needs.</p></blockquote>\n<p>Once I’ve built it and scanned through CodeCanyon, I saw there was nothing like that (now there are several). So I went and uploaded it there. It went live after a week or so.</p>\n<p>I did not expect much from it. I could gather around $300 from it after several months. As a college student who didn’t work on a side job, such income was really great for me.</p>\n<p>That is where it all started for me. I decided to use WordPress for any new projects and build custom ones to learn more.</p>\n<p>Don’t get me wrong. It was not so easy to get new projects. I did get a job as a student which was a failure in the sense that I did not get paid for it. I also had another freelancing experience that was not good. But that did not let me down.</p>\n<p>You WILL get those clients from hell. It is something I think most of us get to know. But in time, you will learn how to identify such clients and pass on such projects.</p>\n<p>Fast forward a year and I got a job where I did not use WordPress. But I did not intend to leave it. I joined Elance (now Upwork) so I could earn some side money using WordPress.</p>\n<p>I did not earn anything on Elance and on my daily job, for a year, I was getting only 60% of the monthly paycheck because the Company did not have enough money. Somehow they did get the other 40% by the end of the month.</p>\n<p>But can you imagine how stressful was that? You can never know if you can travel or save some money. I could not afford purchasing a course which could improve my knowledge.</p>\n<p>I had a job where I liked to work, but the money situation was really stressful and I did not want to rely just on the company. WordPress to the rescue!</p>\n<h3>WordPress Community</h3>\n<p>Not long after, I learned about WordPress Croatia. Before that, I never used social media for such discussions and networking. That Facebook group was the first group I joined to discuss about WordPress and help each other.</p>\n<p>That was really a great experience. I learned about WordCamps and Meetups and that group pushed me into making my first eBook on WordPress. Another product I was able to earn some side money which involved WordPress. My mindset started to change.</p>\n<blockquote><p>By helping others through teaching and discussion, I can also help the WordPress Community.</p></blockquote>\n<p>My first experience on public speaking was on a WordPress Meetup in Zagreb. I would never go if I was not invited by Emanuel Blagonić. A great guy who with his brother Lucijan and several other folks really started a WordPress movement in Croatia.</p>\n<p>I never seen anything like that before. People helping each others, going so much to take their own free time to fix or at least investigate a bug on someone else’s site. I really liked it and wanted to be a part of such a community.</p>\n<p>Even if such a community does not help you directly to land a job or get a new gig, it really does help you indirectly with all the knowledge that is shared (from development to business).</p>\n<h3>Teaching & Job Opportunities</h3>\n<p>Because of the WordPress community in Croatia, I wanted to help by teaching others. So I also started a site where I have written a lot of tutorials on WordPress development. That site was in Croatian so people can start much sooner (even if they don’t know English).</p>\n<p>I used to sleep only for 2 to 3 hours so I could get up much earlier and start to write tutorials or make videos. I did not have a microphone at first, so I used a webcam as a microphone. You can imagine how awful the audio was. Even if it’s in Croatian, you can check the quality of it on <a href=\"https://www.youtube.com/channel/UCzcRclnBSnJRPM5h4PfnqWw\">YouTube</a>.</p>\n<blockquote><p>But I was really happy I could help someone who knows less than me.</p></blockquote>\n<p>By teaching, I have learned a lot and I am so thankful to the community which was one of the reasons I kept going like that. I also got invited to several WordPress projects just because people saw me as someone who understands WordPress.</p>\n<h3>WordCamps & WebCamps</h3>\n<p>You can make friends there. Seems a bit odd maybe, but you can. Due to the community I made some friends such as Ana & Marko from <a href=\"https://www.anarieldesign.com/\">anarieldesign.com</a> and Goran Jakovljević from <a href=\"https://wpgens.com/\">wpgens.com</a>.</p>\n<p>We have become friends through the community on social media. I’ve met them all just after a year or so on WordCamp Zagreb 2017. But we talked as if we were friends for years and years. I’ve seen how people from all over the world talk to each other and how a friendly and welcoming this WordPress Community is.</p>\n<p>Even today, I frequently talk to all of them and we help each other as we can. That is something that you can’t have everywhere.</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/codeable.png\"><img class=\"alignleft size-medium wp-image-2359\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/codeable-300x270.png\" alt=\"Codeable sticker on a ski helmet\" width=\"300\" height=\"270\" /></a>My dream job progress came after WebCamp Zagreb 2016 where I met other people from the IT community. I got introduced to Toptal and just a month from it, I joined Toptal. Codeable was also something I wanted to try and I did. As if those platform communicated together, I got invited into <a href=\"https://codeable.io/\">Codeable</a> a week after I joined <a href=\"https://www.toptal.com/\">Toptal</a>.</p>\n<p>That is where it all has started getting real to me. I was able to freelance as much as I wanted and when I wanted. It was the first time I could go do my hobbies without worrying about money.</p>\n<h3>The Dream Job we all seek</h3>\n<p>My definition of a dream job is the feeling when you’re waking up happy and not sad because you have to go to work. Such job should also challenge you so you learn something new. Sometimes it may even get you out of your comfort zone, but you’ll be a better person because of it.</p>\n<p>I still have an occupied day, working on a daily job and then working with my own clients. It may not suit all. But I am finally able to feel somehow financially free, going happy to work and making friends while doing it. Even if I don’t have any side projects, I am working on my plugins and writing tutorials on my own site (I love it).</p>\n<p>Today, for the first time, I am planning to go to a WordCamp outside Croatia.</p>\n<p><strong>That is all thanks to WordPress.</strong></p>\n<p>You know that you should never stop dreaming, right?</p>\n<p>I guess, I wanted to let you know that WordPress can help you get a dream job! It can be something totally different, but as long as it involves Internet, I think WordPress can help you with it.</p>\n<p><strong>WordPress would not be where it is today if it was not to the whole WordPress Community. So, thanks to all involved in it!</strong></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: WordPress allowed me to have a Dream Job\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=WordPress%20allowed%20me%20to%20have%20a%20Dream%20Job&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-allowed-dream-job%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: WordPress allowed me to have a Dream Job\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-allowed-dream-job%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-allowed-dream-job%2F&title=WordPress+allowed+me+to+have+a+Dream+Job\" rel=\"nofollow\" target=\"_blank\" title=\"Share: WordPress allowed me to have a Dream Job\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/wordpress-allowed-dream-job/&media=https://heropress.com/wp-content/uploads/2017/12/121917-150x150.jpg&description=WordPress allowed me to have a Dream Job\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: WordPress allowed me to have a Dream Job\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/wordpress-allowed-dream-job/\" title=\"WordPress allowed me to have a Dream Job\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/wordpress-allowed-dream-job/\">WordPress allowed me to have a Dream Job</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 Dec 2017 07:00: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:11:\"Igor Benić\";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:71:\"Akismet: Version 4.0.2 of the Akismet WordPress Plugin Is Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=1982\";s:7:\"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:99:\"https://blog.akismet.com/2017/12/18/version-4-0-2-of-the-akismet-wordpress-plugin-is-now-available/\";s: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:1161:\"<p>Version 4.0.2 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available.</p>\n<p>4.0.2 contains a few helpful changes:</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Fixed a bug that could cause Akismet to recheck a comment that has already been manually approved or marked as spam.</span></li>\n<li class=\"p1\"><span class=\"s1\">Fixed a bug that could cause Akismet to claim that some comments are still waiting to be checked when no comments are waiting to be checked.</span></li>\n</ul>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1982/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1982/\" /></a> <img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1982&subd=akismet&ref=&feed=1\" width=\"1\" height=\"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:\"Mon, 18 Dec 2017 16:56:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Stephane Daury\";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:69:\"WPTavern: Jetpack 5.6.1 Increases Security of the Contact Form Module\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=77061\";s:7:\"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:80:\"https://wptavern.com/jetpack-5-6-1-increases-security-of-the-contact-form-module\";s: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:575:\"<p>Jetpack has <a href=\"https://jetpack.com/2017/12/14/jetpack-5-6-1/\">released version 5.6.1</a> which hardens the Contact Form module by improving permissions checking when updating a form's settings. In addition to security fixes, the character count for when Publicize publishes content to Twitter has been increased to 280. </p>\n\n\n\n<p>This release also fixes a bug that disabled the ability to save widgets after removing a Widget Visibility rule. Users are encouraged to update as soon as possible, especially if you make heavy use of the Contact Form module. </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 Dec 2017 22:49:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:57:\"WPTavern: WPWeekly Episode 297 – WordCamp US 2017 Recap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=77042&preview=true&preview_id=77042\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wptavern.com/wpweekly-episode-297-wordcamp-us-2017-recap\";s: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:2715:\"<p>In this episode, <a href=\"https://jjj.blog/\">John James Jacoby</a> and I are joined by <a href=\"https://mor10.com/\">Morten Rand-Hendriksen</a>. We have an engaging conversation about WordCamp US 2017, Gutenberg, and what it’s going to take for it to succeed. Rand-Hendriksen shared what he thinks are <a href=\"https://mor10.com/gutenberg-and-the-future-of-wordpress-conditions-for-success/\">the three conditions</a> that need to be met before Gutenberg can be shipped.</p>\n<p>Near the end of the show, we discuss the possible impacts Gutenberg’s timeline may have on the WordPress economy. Jacoby and I round out the show by reviewing the 2017 State of the Word and our picks of the week.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/storify-to-close-may-16-2018-wordpress-plugin-discontinued\">Storify to Close May 16, 2018, WordPress Plugin Discontinued</a><br />\n<a href=\"https://wptavern.com/gutenberg-and-the-wordpress-of-tomorrow-by-morten-rand-hendriksen\" rel=\"bookmark\">Gutenberg and the WordPress of Tomorrow by Morten Rand-Hendriksen</a><br />\n<a href=\"https://bridgetwillard.com/economic-impact-timeline-gutenberg-rollout/\">The Economic Impact of the Timeline of the Gutenberg Rollout</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://www.copytrans.net/copytransheic/\">CopyTrans</a> is a plugin for Windows to view HEIC files. In iOS 11, Apple started using HEIC/HEIF. HEIF stands for High Efficiency Image Format, and, as the name suggests, is a more streamlined way to store image files. It allows digital photographs to be created in smaller files sizes while retaining higher image quality than its JPEG alternative. The image format is currently not supported in Windows 7, 8, and 10.</p>\n<p>CopyTrans HEIC for Windows is a simple Windows plugin that allows you to open HEIC files using Windows Photo Viewer. This format is also <a href=\"https://core.trac.wordpress.org/ticket/42775\">not compatible with WordPress.</a></p>\n<p><a href=\"http://github.com/10up/wpsnapshots\">WP Snapshots</a> is a command line interface (CLI) tool by 10Up that empowers engineering teams to quickly share WordPress projects, including files and the database.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, December 20th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p><strong>Listen To Episode #297:</strong> </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 Dec 2017 00:59:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:48:\"HeroPress: Finding My Way Out Of My Comfort Zone\";s:7:\"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=2341\";s:7:\"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:122:\"https://heropress.com/essays/finding-way-comfort-zone/#utm_source=rss&utm_medium=rss&utm_campaign=finding-way-comfort-zone\";s: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:20331:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/121317-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: As web developers, programmers, people who speak English, people who have internet access to read this article, are incredibly, very, very, very lucky.\" /><p>I don’t remember when we had a computer for the first time. I practically grew up with them. Hungary was a communist country when I was born in ’84, so while everyone had a job, no one could really do their own thing. Everything was state owned.</p>\n<p>In 1989-1990 there was a change of regime which followed the collapse of the Berlin wall, and suddenly the country became a democracy, and people were free to start and own companies. Yes, the era also had other problems, like 35% inflation at one point, but at least we were “free”.</p>\n<p>My parents started out by importing computers from Hong Kong. That was a huge thing. We had one of the first of those, a 286 with a whopping speed of 8 Mhz which went up to 16 if I pressed the Turbo button! I had no idea what that meant though besides the number being higher.</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/young_gabor.jpg\"><img class=\"aligncenter size-large wp-image-2343\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/young_gabor-1024x576.jpg\" alt=\"Gabor about age 3, at a computer\" width=\"960\" height=\"540\" /></a></p>\n<p>It was a good time of Sim City, Prince of Persia, and Sokoban.</p>\n<h3>Finding the Web</h3>\n<p>My first “website” was one my grandmother asked me to make for her Quaker group. I was 12. I created it with tables and inline styling (CSS wasn’t a thing back then), but never got it live – hosting wasn’t something I really knew about.</p>\n<p>Fast forward to 2003 when I started university studying architecture in Budapest. It was fun, I loved physics, I loved drawing, I loved math, I <em>especially</em> loved descriptive geometry! The latter is pretty much “how to represent a 3d thing on a sheet of paper”. Incidentally that brought me my first high paying consulting job. As a student in 2nd year I coached a student in first year in descriptive geometry – he had broken his leg so couldn’t actually make the classes, but he had to pass that subject to advance. So every week I would go to their house and spend about 3 hours helping him draw and figure out how to draw what to draw and why to draw those things that way. That experience taught him everything he needed to know to pass with a 4 (on a scale of 5, 5 being best), which translates to around 80%. I had my first satisfied customer. <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n<p>It also taught me two very important things:</p>\n<ol>\n<li>if you’re good at it, they will overlook the fact that you’re not actually “qualified” to do the thing (I wasn’t a TA / lecturer. I was merely another student in an upper class. An upperclassman. 先輩)</li>\n<li>if you’re good at it, you can charge people a lot more than you otherwise think. I got paid about 3x the standard hourly wage of adults working the majority of hourly jobs, and as a student, that was awesome!</li>\n</ol>\n<p>For context though, there is no tuition fee for your first degree (i.e.: it’s paid for by the government for you which gets that money from taxes).</p>\n<p>The second formative experience was between 2004-2006. I joined an extracurricular architecture club. Basically students who don’t just want to bumble through the university but actually get good! Like, REALLY GOOD. We pitched to host EASA – European Architecture Students’ Assembly – in Budapest in 2006. For that we needed a website, both an internal forum, and a public facing site for sponsors / attendees / workshops / visitors / everyone.</p>\n<p>I knew nothing besides basic html.</p>\n<p>So naturally I volunteered.</p>\n<h3>Leveling up</h3>\n<p>I learned PHP, MySQL, and Flash from books: learn php in 24 hours, PHP 4 reference, learn mysql in 24 hours, learn flash in 24 hours, etc. I had one guy over the internet who helped me figure out things in PHP, but other than that I was all alone. Stack Overflow wasn’t a thing either. Wild times. From memory I could probably exploit that engine in one of 284 ways today. I’m glad it’s not online any more. The flash site is, it’s somewhat broken, but here you go: <a href=\"https://javorszky.github.io/ancientflashsite/\" rel=\"nofollow\">https://javorszky.github.io/ancientflashsite/</a></p>\n<p>I built a forum engine and a full actionscript site. We also had a requirement that whoever applies to host whatever workshop, we need to judge the workshop on its own merit, not on who submits it, so I built the submit form in such a way that it took the files, and renamed them, scrubbed the email addresses that reached the judging committee, and we made it a rule that if there’s any identifying information ON the pdf, it’s immediately disqualified. The year is 2005.</p>\n<p>Looking back, I realized two things:</p>\n<ol>\n<li>learn to learn on the job, and learn to enjoy not knowing stuff. Nobody does, really</li>\n<li>biases are real. Mitigate them. Even the ones you don’t know about. Especially the ones you don’t know about! Or at least have a framework by which you acknowledge if you’re called out</li>\n</ol>\n<h3>Moving On</h3>\n<p>I then decided to not continue my studies there. I was failed in one class where I expected a strong pass. We were split into 12 groups, and groups 1 and 2 got mostly failed, and groups 3-12 got overwhelmingly passed. Something wasn’t right, I spoke up, but I was a student, and they were faculty. I left because I didn’t feel like fighting and losing my soul over it.</p>\n<blockquote><p>Something wasn’t right, I spoke up, but I was a student, and they were faculty. I left because I didn’t feel like fighting and losing my soul over it.</p></blockquote>\n<p>I continued making websites for myself and got introduced to WordPress around this time. I don’t remember my first project. I <em>think</em> it was a site I built for myself in 8 hours for a competition which led me to my first paying website job, which I totally screwed up.</p>\n<p>In 2010 I decided to move countries with 3 friends I went to university with, at the time I was studying International Tourism Management, and I could transfer to Oxford Brookes University (not the one you heard about).</p>\n<p>I missed the application deadline.</p>\n<p>Which meant that I had to find work. When I bought my plane ticket I decided that whatever it takes, I will make it work. Staying in Hungary was not an option for me: I didn’t like the politics, I didn’t like where the country was heading economically, and I longed for a more cheerful society to surround me. Movement rights and language I can speak and other people going the same way helped me decide on the UK.</p>\n<h3>Restarting</h3>\n<p>So I made it work: I accepted the first full time job that I got offered. I worked as a wait staff at the restaurant of one of the luxury hotels in the city. It had very little to do with computers, but I had income, I could pay back the help I got from my friends (and by extension, their families), and I could actually take control of my own life instead of just bumping into furniture.</p>\n<blockquote><p>It had very little to do with computers, but I had income, I could pay back the help I got from my friends (and by extension, their families), and I could actually take control of my own life […]</p></blockquote>\n<p>I’ve learned a lot from working there. Chef taught me that literally no one cares WHY there was a mistake at that time in putting through an order – what’s important is what the error was, what’s needed to correct it. Everything else is wasting everyone’s time. Of course we’d go through these after the service.</p>\n<p>I’ve learned that to work in hospitality, you have to leave your ego at the door. Doesn’t mean you should take abuse, but there you’re part of a – hopefully – finely tuned, oiled machinery, and keeping the whole thing operating is the number one goal. Turns out that’s also applicable to working in teams in general.</p>\n<p>A year goes by, and we need to move out of the house we’re renting. In a break between morning and evening shifts I look at the job postings in the local newspaper: someone’s looking for a developer! It was a Wednesday. I got an interview for Friday, and started on Monday. I had to talk to my supervisor to move me to evening-only shifts because I have a second desk job. My days: 9am – 4:45pm developer, 5pm – 2am (ish, whenever we finished) waiting tables. Rinse and repeat.</p>\n<p>Working 60-80 hours could only go on for so long. After about 3 months I had a very sharp chest pain while on shift at the restaurant. Had to walk home (normally I cycle), and then made my way to the emergency room where after having waited 5 hours, I got an X-ray, and EKG, and the doctor determined there’s nothing wrong, so here’s some Ibuprofen (3×1) and some Paracetamol (1×1).</p>\n<blockquote><p>Kids, don’t work 60-80 hours a week.</p></blockquote>\n<p>“Uh, which one should I take on a day?” “Oh… both!”</p>\n<p>I went home, took the first dose, and slept for 22 hours. I handed in my resignation 2 days later at the restaurant because I needed to not work that much. My manager pleaded me to stay at least on part time, which I did, because they were genuinely lovely people.</p>\n<p>Kids, don’t work 60-80 hours a week.</p>\n<h3>Back to the web with full steam</h3>\n<p>After a year at the development agency + restaurant combo, I got hired to a WordPress agency through recruiters. My new boss asked me why I haven’t applied to them directly, even though I saw their ad, why I waited to go through a recruiter. I said I didn’t think I was good enough. That decision ended up costing him a few thousand pounds in recruitment fees.</p>\n<p>I quit my restaurant job for good. I also learned a lesson to actually trust myself.</p>\n<p>Something that during the 2,5 years with them I would question a lot of times. There have been instances when I made mistakes that were incredibly easy to avoid had I just taken 5 more minutes to think. But every time it was something we could correct fairly fast (shoutout to hospitality experience!) and then I had a postmortem, and changed the way I work to avoid similar problems.</p>\n<p>I had the privilege to work on some seriously challenging WordPress sites while with them. That was my first actual commercial experience with it. We built blogs from Oxford University (the one you heard about) to eCommerce site migrations from Magento using Jigoshop and later WooCommerce.</p>\n<p>I’ve had to disassemble how WooCommerce worked fairly fast because of some of the client requirements, and I got pretty good at it.</p>\n<p>In November 2014 I got hired to one of the product companies around WooCommerce and spent a year and a half with them maintaining their plugins, answering customer queries and helping them fix their sites occasionally. That was my first help desk experience.</p>\n<p>I got access to some incredibly large eCommerce stores and I quickly discovered where the bottlenecks were in our plugins, WordPress, and WooCommerce itself. Some of the customers had access to New Relic, which I could use to help me find what’s taking so long.</p>\n<p>From then on it was just a case of finding what’s slow, following it back, reading the documentation and code on why it’s slow, and coming up with ideas on how to fix it.</p>\n<p>I got really good at this.</p>\n<h3>The Freelance Days</h3>\n<p>At the end of July 2016 our ways parted, and I had a buffer of about 3 months when I didn’t need to worry about having to find another job. While trying to figure out what to do, where next, I started getting requests to work on some projects. They asked me my hourly rate. I said a number I was slightly uncomfortable with, they said yeah, and off I went.</p>\n<blockquote><p>[…] I started getting requests to work on some projects. They asked me my hourly rate. I said a number I was slightly uncomfortable with, they said yeah […]</p></blockquote>\n<p>It also helped that I was at the time known for my love of hard problems and actually figuring out why things break and fixing them.</p>\n<p>I thought “hey, if I can command that much hourly rate, I could make this work!”</p>\n<p>I took on clients, and managed to make things work for… a surprisingly long time. Having GREAT accountants is a must for self employment.</p>\n<p>I suddenly also had time to pursue some of my other interests: I learned how to ride a motorcycle.</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/gabor_motorcycle.jpg\"><img class=\"aligncenter size-large wp-image-2344\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/gabor_motorcycle-1024x576.jpg\" alt=\"Gabor standing by a sporty motorcycle\" width=\"960\" height=\"540\" /></a></p>\n<p>I started learning Japanese! I got back onto the slackline.</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/gabor_slackline.jpg\"><img class=\"aligncenter size-large wp-image-2345\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/gabor_slackline-1024x768.jpg\" alt=\"Gabor balancing on a narrow strap hung between two trees\" width=\"960\" height=\"720\" /></a></p>\n<p>I got to speak at WordCamp Brighton in 2017!</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/gabor_wordcamp.jpg\"><img class=\"aligncenter wp-image-2346 size-large\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/gabor_wordcamp-1024x683.jpg\" alt=\"Gabor, on stage at WordCamp Brighton\" width=\"960\" height=\"640\" /></a></p>\n<p>Until very recently, it was a game of “how long can I be self employed before I need to look for a job?” Turns out I couldn’t answer this, because an opportunity came up to join Mindsize as a lead backend developer.</p>\n<p>When I heard about them starting up a few months prior, I had two thoughts:</p>\n<ol>\n<li>they are probably the only company I would stop doing freelance work for</li>\n<li>I’m not good enough to work with them yet</li>\n</ol>\n<p>Statement 1 was true :).</p>\n<h3>Catching up with the present</h3>\n<p>This brings us into the very recent present. It’s maybe a month old development at the time of publication. Since then I’ve been working really hard to reclaim my time of about 40 hours worked a week. With the holiday push of the clients I had as a freelancer, there was a transition phase where I had to work 60-80 hours.</p>\n<p>Don’t work 60-80 hours a week, kids!</p>\n<p>Looking back it was incredibly humbling experience so far, but also exciting, and full of challenges, and learnings. I’ve made a lot of excellent friends, and luckily very few enemies. I am grateful for each and every one of them.</p>\n<p>I don’t know where life takes me. For the foreseeable future I’ll be with Mindsize and will make eCommerce sites awesome, and will make awesome eCommerce sites. But I’ll also try and pass on some of the things I’ve learned by helping people new to the industry.</p>\n<p>There are a lot more things I could say, but they aren’t necessarily part of my journey, so I’ll save them for some other time.</p>\n<h3>On privilege</h3>\n<blockquote><p>We, as web developers, programmers, people who speak English, people who have internet access to read this article, are incredibly, very, very, very lucky.</p></blockquote>\n<p>Except for one thing. When I worked at the WordPress agency, Twitter, and by extension, society, started the “check your privilege” trend. It took a while to understand what it was all about, but it’s something I wish everyone did.</p>\n<p>We, as web developers, programmers, people who speak English, people who have internet access to read this article, are incredibly, very, very, very lucky. I’ve realized that my journey wouldn’t have been possible had I been born to less fortunate circumstances:</p>\n<p>If my parents didn’t make the decision to start teaching me English when I was 3.</p>\n<p>If I didn’t have the financial stability in my family to be able to just explore what I like to do.</p>\n<p>If I didn’t have the financial stability to just drop out of university after 3 years because “I didn’t like it”. And another one after a semester. And never finish my Tourism Management course.</p>\n<p>If I didn’t live in a developed nation with easy access and high standards of living.</p>\n<p>This brings into mind one of my favorite tweets:</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Your job, lucky person, is to help others less lucky than you to improve their odds.</p>\n<p>— Dylan Wilbanks, Human Grumpy Cat (@dylanw) <a href=\"https://twitter.com/dylanw/status/522060876304486400?ref_src=twsrc%5Etfw\">October 14, 2014</a></p></blockquote>\n<p></p>\n<p>Not everyone has these opportunities and every day I am conscious of it.</p>\n<p>Humans are hard. Interpersonal skills are hard. Treating each other with dignity, respect, and grace is hard if you haven’t been brought up with those values as a kid. It’s been a challenge for me to shed the “boys will be boys” upbringing I was carrying.</p>\n<p>Let’s use our power and means and help the less fortunate walk their own paths. Let’s lessen marginalization with the view of ending it. Let’s be excellent to each other!</p>\n<p>And don’t use “guys” to mean everyone!</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Finding My Way Out Of My Comfort Zone\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Finding%20My%20Way%20Out%20Of%20My%20Comfort%20Zone&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Ffinding-way-comfort-zone%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Finding My Way Out Of My Comfort Zone\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Ffinding-way-comfort-zone%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Ffinding-way-comfort-zone%2F&title=Finding+My+Way+Out+Of+My+Comfort+Zone\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Finding My Way Out Of My Comfort Zone\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/finding-way-comfort-zone/&media=https://heropress.com/wp-content/uploads/2017/12/121317-150x150.jpg&description=Finding My Way Out Of My Comfort Zone\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Finding My Way Out Of My Comfort Zone\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/finding-way-comfort-zone/\" title=\"Finding My Way Out Of My Comfort Zone\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/finding-way-comfort-zone/\">Finding My Way Out Of My Comfort Zone</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, 13 Dec 2017 08:00:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gabor Javorszky\";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:70:\"WPTavern: Storify to Close May 16, 2018, WordPress Plugin Discontinued\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=76992\";s:7:\"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:79:\"https://wptavern.com/storify-to-close-may-16-2018-wordpress-plugin-discontinued\";s: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:2906:\"<p><a href=\"https://storify.com/\">Storify</a>, a service that launched in 2010 and opened to the public in 2013 has announced that it is shutting down version one of its service on May 16th, 2018. Concurrently, its WordPress plugin that is actively installed on more than 2,000 sites has been <a href=\"https://wordpress.org/plugins/storify/\">discontinued</a>. </p>\n\n\n\n<img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/12/StorifyPluginDiscontinued.png?w=627&ssl=1\" />\n Storify Plugin is Discontinued\n\n\n\n\n<p>Storify enabled journalists and others to build stories and timelines similar to Twitter and other social networks. The service <a href=\"https://techcrunch.com/2013/09/09/livefyre-acquires-storify/\">was acquired</a> by <a href=\"http://www.livefyre.com\">Livefyre</a> in 2013 and became part of Adobe when it <a href=\"https://techcrunch.com/2016/05/03/adobe-acquires-livefyre/\">acquired Livefyre</a> in 2016. </p>\n\n\n\n<p>Storify has disabled new accounts from being created and will delete stories and accounts on May 16th, 2018. Existing users who want to move to Storify 2, a paid feature of Livefyre, will need to purchase a license. The service has <a href=\"https://storify.com/faq-eol\">published a FAQ</a> that includes directions on how to export content. </p>\n\n\n\n<h2>New Plugin Opportunity</h2>\n\n\n\n<p>According to some users, the export process is cumbersome, providing an excellent opportunity for a prospecting developer to create a WordPress plugin that makes the process easier. A search of the WordPress plugin directory for Storify Export produces zero results. <br /></p>\n\n\n\n\n <blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">A fantastic <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> dev opportunity: <a href=\"https://twitter.com/Storify?ref_src=twsrc%5Etfw\">@Storify</a> just announced its \"End of Life\" for May 2018. The export is kinda lame. If I could import a story from Storify into a WordPress Post/Page that would be fabulous! I have a few stories that I wouldn\'t want to lose. <a href=\"https://twitter.com/hashtag/biz?src=hash&ref_src=twsrc%5Etfw\">#biz</a></p>— Birgit Pauli-Haack (@bph) <a href=\"https://twitter.com/bph/status/940706045449703424?ref_src=twsrc%5Etfw\">December 12, 2017</a></blockquote>\n\n\n\n\n\n <blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I have a lot of Storify stories I\'d hate to lose, too. If you hear of someone doing this, I\'d love to know about it.</p>— Deborah Edwards-Onoro (@redcrew) <a href=\"https://twitter.com/redcrew/status/940729186469253120?ref_src=twsrc%5Etfw\">December 12, 2017</a></blockquote>\n\n\n\n\n<p>If you know of any methods or plugins that eases the process of exporting content from Storify and importing it to WordPress, please share them in the comments. Also feel free to let us know if you create a plugin that performs this task. </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 Dec 2017 07:30:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:75:\"WPTavern: Gutenberg and the WordPress of Tomorrow by Morten Rand-Hendriksen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=76959\";s:7:\"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:86:\"https://wptavern.com/gutenberg-and-the-wordpress-of-tomorrow-by-morten-rand-hendriksen\";s: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:1054:\"<p>While attending WordCamp US 2017, there were a number of sessions that stood out to me. <a href=\"https://wordpress.tv/2017/12/10/morten-rand-hendriksen-gutenberg-and-the-wordpress-of-tomorrow/\">Gutenberg and the WordPress of Tomorrow</a> by Morten Rand-Hendriksen was one of them. </p>\n\n\n\n<p>Hendriksen explains the state of WYSIWYG in WordPress and how it doesn't really exist but Gutenberg provides opportunities to change that. He explores developing sites without being confined to a small view port. He also performs a live demo of Gutenberg showing off its capabilities.</p>\n\n\n\n<p>An interesting outcome from his presentation is the amount of optimism and excitement it generated from the audience. During the question and answer session, a member of the audience commented on how far Gutenberg has advanced in the last three months and that it looks cool to use now. </p>\n\n\n\n<p>To gain insight into how Gutenberg can moonshot WordPress over its competition, watch Hendriksen's presentation. </p>\n\n\n\n\n <div class=\"embed-wrap\"></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 Dec 2017 20:57:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:26:\"Matt: Post-Verbal Language\";s:7:\"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=47705\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://ma.tt/2017/12/post-verbal-language/\";s: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:1800:\"<p>James Beshara has a <a href=\"https://jjbeshara.com/2017/12/09/a-post-verbal-world/\">really interesting read on how communication will change and evolve in a post-verbal world</a>, namely one where human/brain interfaces like <a href=\"https://waitbutwhy.com/2017/04/neuralink.html\">Neuralink</a> can more directly transmit thought between people than the medium of language allows today. </p>\n\n\n\n<p>After reading the essay I wonder if people's thoughts or the neural pathways they activate, if they could be directly transmitted into another brain, would actually make any sense to someone else with a unique internal set of pathways and framework for parsing and understanding the world. The essay assumes we'd understand and have more empathy with each other, but that seems like a leap. It seems likely the neural link would need it own set of abstractions, perhaps even unique per person, similar to how <a href=\"https://www.newscientist.com/article/2114748-google-translate-ai-invents-its-own-language-to-translate-with/\">Google Translate AI invented its own meta-language</a>. </p>\n\n\n\n<p>Today <a href=\"https://www.economist.com/news/leaders/21730871-facebook-google-and-twitter-were-supposed-save-politics-good-information-drove-out\">idea-viruses that cause outrage (outrageous?) in today's discourse have been weaponized by algorithms optimizing for engagement</a>, and directly brain-transmitted memes seem especially risky for appealing to our base natures or causing <a href=\"https://en.wikipedia.org/wiki/Amygdala_hijack\">amygdala hijack</a>. But perhaps a feature of these neural interface devices could counteract that, with a command like \"tell me this piece of news but suppress my confirmation bias and tribal emotional reactions while I'm taking it in.\"</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 Dec 2017 03:09:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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: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:26:\"Matt: iPhone Fast Charging\";s:7:\"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=47682\";s:7:\"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/2017/12/iphone-charging/\";s: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:382:\"<p>I love USB, cables, and charging things. <a href=\"https://www.macrumors.com/guide/iphone-x-fast-charging-speeds-compared/\">So MacRumors comparison of different wired and wireless charging options and speed for the iPhone X is my catnip</a>. tl; dr: USB-C + USB-C-to-Lightning cable gives you far and away the fastest times. I've found this true for the iPad Pro as well.</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, 07 Dec 2017 16:51:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:29:\"Matt: State of the Word, 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=47687\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://ma.tt/2017/12/state-of-the-word-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:524:\"<p>I really enjoyed connecting with the WordPress community in Nashville this previous weekend. On Saturday I delivered the State of the Word presentation alongside <a href=\"https://choycedesign.com/\">Mel</a>, <a href=\"https://weston.ruter.net/\">Weston</a>, and <a href=\"https://matiasventura.com/\">Matías</a>. There's always a post-event buzz but I definitely noticed a change in tenor of people's thoughts on Gutenberg after the presentation and demo. The video is above, check it out when you get a chance.</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, 06 Dec 2017 23:38:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:37:\"HeroPress: Remote Work Brings Freedom\";s:7:\"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=2324\";s:7:\"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:126:\"https://heropress.com/essays/remote-work-brings-freedom/#utm_source=rss&utm_medium=rss&utm_campaign=remote-work-brings-freedom\";s: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:21046:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/120617-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress is not just a CMS, it\'s a Community of lovely people!\" /><p><a href=\"http://heropress.com/feed/#gujarati\">આ નિબંધ ગુજરાતીમાં પણ ઉપલબ્ધ છે</a></p>\n<p>First of all, I want to say thank you to HeroPress for reaching out and letting so many people share their stories. I am a follower of HeroPress and read new stories every week! A few months ago my friend <a href=\"https://heropress.com/essays/wordpress-good-indian-women/\">Juhi Patel shared her great WordPress story</a>, and I was inspired by her to share my own and how it has changed my way of working.</p>\n<blockquote><p>I am that guy who hates theory and loves to do practical programming.</p></blockquote>\n<p>After completing my bachelor of engineering with Information Technology in 2013, I was looking for a job. I found that there were many different kinds of programming language jobs that were available. I was really not sure which one I needed or wanted to choose. After getting advice from a senior, I started training for PHP because it was easy and quick to learn. A few days before I had completed Training, I got selected in small company (5 Employees) as a PHP Developer. I was making websites there using PHP codeigniter framework.</p>\n<p>I was belong from a small town, and everyday it took me around 3 hours to travel to my job. After about 2 months, I applied for a job at another big company and was selected as Web Developer. There I was working on CMS Framework (not WordPress <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f600.png\" alt=\"?\" class=\"wp-smiley\" /> ) for website projects. After a few days, I made my personal site using WordPress in my free time.</p>\n<blockquote><p>At that time, I was not aware of themes and plugins. I was just playing with theme files and editor to make changes on my website! <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f61c.png\" alt=\"?\" class=\"wp-smiley\" /></p></blockquote>\n<p>After a month, my team leader got to know about that I was interested in WordPress. I got the opportunity to learn WordPress. I learned and explored WordPress with some demo projects by understanding how plugins and themes work. After 3 weeks of learning WordPress, I worked on my first WordPress project. This project took around 4 months to complete <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f600.png\" alt=\"?\" class=\"wp-smiley\" /> After this successful project, the whole CMS Team migrated to WordPress.</p>\n<blockquote><p>I realized that, WordPress is so easy to learn, get help and work on it!</p></blockquote>\n<p>After around 1 year and 3 months of working with that company, I was told to work after working hours due to heavy requirements from our projects. I felt really stressed and frustrated at work and during that time…</p>\n<blockquote><p>I got to know about “Remote” work. But I didn’t know what that was or how it works?</p></blockquote>\n<p>I explored about remote work and found that this is a career that you can work from your home, workplace or anywhere you like. I saw that many people in world are doing remote work happily. I decided to switch my job from Office Job to Remote Job. My parents, family and relatives advised me to not leave office job because they believed Remote Job is not as secure as an Office Job. But I stuck with my decision. In March 2015, I resigned from my job without notice period with the condition of no experience letter would be provided to me of this job.</p>\n<blockquote><p>At the initial stage it was hard to be freelancer. But I was trying and trying to get that started.</p></blockquote>\n<p>I had registered in one popular freelancer marketplace. After 1 week of trying very hard I got my first project. It was just for $5 to make an HTML page with a countdown timer. I did it successfully and got the best review. After that I had also completed many projects successfully. That’s it! I was done with my decision. Within the first few weeks I made a website for one US Client. They were impressed by my work and hired me as Full time Web Developer for their company in April 2015. I am remotely working with them happily still today from my home!</p>\n<blockquote><p>Everything is going smoothly. I am enjoying Work from Home, Freedom and Quality time with Family.</p></blockquote>\n<p>In October 2016, I learned about WordCamp. I attended my first WordCamp Nashik 2016. I met many WordPress Developers, Freelancers, Professionals, Users and many other people at this WordCamp. After that, I became a fan of WordCamp. We started organizing Meetups in our City. Within the last year, I have attended, volunteered and contributed as a friend and sponsor at more than 6 WordCamps. Currently I am active member of Ahmedabad WordPress Community.</p>\n<blockquote><p>I am a WordCamp Lover. WordCamp is a way to meet new people, learn and share knowledge!</p></blockquote>\n<p>In October 2017, we successfully organized WordCamp in our city. I have been speaking about how remote job can be a good opportunity as a career to students and newbie in panel discussion of WordCamp Ahmedabad.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/wcahmedabad-panel-discussion.jpg\"><img class=\"size-large wp-image-2325\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/wcahmedabad-panel-discussion-1024x683.jpg\" alt=\"4 men on a couch at the front of a room.\" width=\"960\" height=\"640\" /></a>Panel Discussion – WordCamp Ahmedabad 2017 (PC. Meher Bala)\n<blockquote><p>WordPress is not just a CMS, It’s a community of lovely people!</p></blockquote>\n<hr />\n<h1 id=\"gujarati\">રિમોટ કામ સ્વતંત્રતા લાવે છે.</h1>\n<blockquote><p>“મને હીરોપ્રેસ સ્ટોરીમાં ભાગ લેવામાં કેવી રીતે પ્રેરણા મળી?”</p></blockquote>\n<p>સૌ પ્રથમ, ઘણા લોકો સુધી પહોંચીને અને તેમની વાર્તાઓ કહેવા માટે હું હીરોપ્રેસનો ખુબ જ આભાર માનું છું. હું હિરોપ્રેસનો અનુયાયી છું અને દર અઠવાડિયે નવી વાર્તાઓ વાંચું છું! થોડા મહિના પહેલા મારી મિત્ર જુહી પટેલે તેની વર્ડપ્રેસની રસપ્રદ વાર્તા હીરોપ્રેસ પર કહી હતી. તે વાંચીને મને, મારા પોતાની વાર્તા, મારા કામ કરવાની રીત કઇ રીતે બદલાઈ તે કહેવા માટે પ્રેરણા મળી હતી.</p>\n<blockquote><p>“હું તે વ્યક્તિ છું જે થિયોરીને નફરત કરે છે અને પ્રાયોગિક પ્રોગ્રામિંગ કરવા માટે પ્રેમ કરે છે. “</p></blockquote>\n<p>2013 માં ઇન્ફોર્મેશન ટેકનોલોજી સાથે મારી સ્નાતક એન્જિનિયરિંગ પૂર્ણ કર્યા પછી, હું નોકરી શોધી રહ્યો હતો ત્યારે મેં જોયું કે અહીં ઘણી બધી પ્રોગ્રામિંગ ભાષાની નોકરીઓ ઉપલબ્ધ છે. ત્યારે હું ચોક્કસ ન હતો કે મારે કઈ પ્રોગ્રામિંગ ભાષા પસંદ કરવાની જરૂર છે? વરિષ્ઠ પાસેથી સલાહ મેળવ્યા પછી, મેં PHP માટે તાલીમ શરૂ કરી, કારણ કે તે શીખવા માટે સરળ અને ઝડપી હતી. તાલીમ પૂર્ણ થયાના થોડા દિવસો પહેલાં, મારી નાની કંપની (5 કર્મચારીઓ) માં PHP ડેવલપર તરીકે પસંદગી થઇ. હું PHP Codeigniter ફ્રેમવર્કનો ઉપયોગ કરીને ત્યાં વેબસાઇટ્સ બતાવતો હતો.</p>\n<p>હું એક નાનકડા શહેરમાંથી આવતો હતો, અને દરરોજ મને મારી નોકરી પર મુસાફરી કરવા માટે 3 કલાક જેવા થતા હતા. લગભગ 2 મહિના પછી, મેં બીજી મોટી કંપનીમાં નોકરી માટે અરજી કરી હતી અને ત્યાં મારી વેબ ડેવલપર તરીકે પસંદગી કરવામાં આવી હતી. ત્યાં હું વેબસાઇટ સંબંધિત પ્રોજેક્ટ્સ માટે સીએમએસ ફ્રેમવર્ક (વર્ડપ્રેસ સિવાયની <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f600.png\" alt=\"?\" class=\"wp-smiley\" />) પર કામ કરતો હતો. થોડા દિવસો પછી, મેં મારી વ્યક્તિગત વેબસાઈટને મારા સ્વતંત્ર સમય દરમિયાન વર્ડપ્રેસની મદદથી બનાવી.</p>\n<blockquote><p>“તે સમયે, હું થીમ્સ અને પ્લગિન્સથી વાકેફ ન હતો. હું મારી વેબસાઇટ પર ફેરફારો કરવા માટે માત્ર થીમ ફાઇલો અને એડિટર સાથે રમી રહ્યો હતો! <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f61c.png\" alt=\"?\" class=\"wp-smiley\" />”</p></blockquote>\n<p>એક મહિના પછી, મારી ટીમના આગેવાનને જાણવા મળ્યું કે મને વર્ડપ્રેસમાં રસ હતો. ત્યારે મને વર્ડપ્રેસ શીખવાની તક મળી. વર્ડપ્રેસ થીમ્સ અને પ્લગીંસ કેવી રીતે કામ કરે છે એ સમજવા, મેં જાતે શીખીને કેટલાક ડેમો પ્રોજેક્ટસ બનાવ્યા. વર્ડપ્રેસ શીખવાના 3 અઠવાડિયા પછી, મેં મારા પ્રથમ વર્ડપ્રેસ લાઈવ પ્રોજેક્ટ પર કામ કર્યું હતું. આ પ્રોજેક્ટ પૂર્ણ કરવા માટે મને લગભગ 4 મહિના લાગ્યા હતા <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f600.png\" alt=\"?\" class=\"wp-smiley\" /> આ સફળ પ્રોજેક્ટ પછી, સમગ્ર સીએમએસ ટીમ વર્ડપ્રેસમાં જોડાઈ ગઈ.</p>\n<blockquote><p>“મેં અનુભવ કર્યો કે, વર્ડપ્રેસ શીખવું, સહાય મેળવવી અને તેના પર કાર્ય કરવુ ખૂબ જ સરળ છે!”</p></blockquote>\n<p>લગભગ 1 વર્ષ અને 3 મહિના તે કંપની સાથે કામ કર્યા પછી, મને અમારા પ્રોજેક્ટ્સની ભારે આવશ્યકતાના કારણે કામના કલાકો પછી પણ વધારે રોકાઈને કામ કરવા કહેવામાં આવતું હતું અને તે 2 સપ્તાહથી વધુ ચાલુ રહ્યું. ત્યારે મને કામ કરવું ખરેખર ભારયુક્ત અને નિરાશાજનક લાગવા લાગ્યું, તે સમય દરમિયાન ..</p>\n<blockquote><p>“મને “રિમોટ” કામ વિશે જાણવા મળ્યું. પરંતુ મને ખબર નહોતી કે તે કે તે કેવી રીતે કાર્ય કરે છે?”</p></blockquote>\n<p>મેં રિમોટ કામ વિશે તપાસ કરી અને જાણવા મળ્યું કે આ એક કારકિર્દી છે જે તમે તમારા ઘર, કાર્યસ્થળ અથવા તમને પસંદ હોય એ જગ્યાએથી કામ કરી શકો છો. મેં જોયું કે દુનિયામાં ઘણા લોકો રિમોટ કામ ખુબ જ ખુશીથી કરી રહ્યા હતા. મેં ઑફિસ જોબ છોડીને રિમોટ કામ કરવાનું નક્કી કર્યું. મારા માતાપિતા, કુટુંબીજનો અને સંબંધીઓએ મને ઓફિસની નોકરી ના છોડવાની સલાહ આપી કારણ કે તેઓ માનતા હતા કે રિમોટ કામ એ ઓફિસ જોબ જેટલું સુરક્ષિત નથી. પરંતુ હું મારા નિર્ણય સાથે જોડાઈ રહ્યો. માર્ચ 2015 માં, મેં નોટિસના સમયગાળા વગર મારા કામમાંથી રાજીનામું આપ્યું હતું અને શરત હતી કે આ નોકરીનો કોઈપણ અનુભવ પત્ર મને પૂરો પાડવામાં આવશે નહીં.</p>\n<blockquote><p>“પ્રારંભિક તબક્કે ફ્રીલાન્સર બનવું મુશ્કેલ હતું. પરંતુ હું તે ગમે તેમ કરીને શરૂ કરવાનો ખુબ જ પ્રયાસ કરી રહ્યો હતો.”</p></blockquote>\n<p>મેં એક લોકપ્રિય ફ્રીલાન્સર માર્કેટપ્લેસમાં રજીસ્ટર કર્યું હતું. 1 અઠવાડિયાના સખત પ્રયાસ કાર્ય પછી મને પહેલો પ્રોજેક્ટ મળ્યો. આ પ્રોજેક્ટ કાઉન્ટડાઉન ટાઈમર સાથે એક HTML પેજ બનાવવા માટે મને માત્ર $5 મળ્યા હતા. મેં એ પ્રોજેક્ટ સફળતાપૂર્વક પૂરો કર્યો અને શ્રેષ્ઠ રિવ્યૂ મેળવ્યો. તે પછી મેં ઘણા પ્રોજેક્ટ્સ પણ સફળતાપૂર્વક પૂર્ણ કર્યા હતા. બસ આ જ! મને મારો નિર્ણય સાચો પુરવાર થયો. પ્રથમ થોડા અઠવાડિયાની અંદર મેં એક યુએસ ક્લાયન્ટ માટે વેબસાઇટ બનાવી. તેઓ મારા કામથી પ્રભાવિત થયા હતા અને એપ્રિલ 2015 માં મને તેમની કંપની માટે સંપૂર્ણ સમય માટે વેબ ડેવલપર તરીકે નિયુક્ત કર્યો. હું આજે પણ તેમની સાથે ખુબ જ ખુશીપૂર્વક મારા ઘરેથી રિમોટ કામ કરું છું!</p>\n<blockquote><p>“બધું સરળતાપૂર્વક જઈ રહ્યું છે. હું ઘરેથી કામ કરીને સ્વતંત્રતા અને પરિવાર સાથે ગુણવત્તાભર્યો સમય પસાર કરવાનો આનંદ અનુભવું છું.”</p></blockquote>\n<p>ઑક્ટોબર 2016 માં, મને વર્ડકેમ્પ વિશે જાણવા મળ્યું. મેં મારી પહેલી વર્ડકેમ્પ નાસિક 2016 માં હાજરી આપી હતી. હું ઘણા વર્ડપ્રેસ ડેવલપર્સ, ફ્રીલાન્સર્સ, પ્રોફેશનલ્સ, યુઝર્સ અને ઘણા અન્ય લોકોને આ વર્ડકેમ્પ પર મળ્યો હતો. તે પછી, હું વર્ડકેમ્પ નો ચાહક બની ગયો. અમે અમારા શહેરમાં મીટપનું નું આયોજન કરવાનું શરૂ કર્યું. છેલ્લા વર્ષમાં, 6 થી વધુ વર્ડકેમ્પ પર મેં હાજરી આપીને, સ્વયંસેવક અને મિત્ર સ્પોન્સર તરીકે ફાળો આપ્યો છે. હાલમાં હું અમદાવાદ વર્ડપ્રેસ સમુદાયનો સક્રિય સભ્ય છું</p>\n<blockquote><p>“હું વર્ડકેમ્પનો પ્રેમી છું. વર્ડકેમ્પ નવા લોકોને મળવાનો, પોતાના જ્ઞાનની આપ-લે કરવાનો એક માર્ગ છે!”</p></blockquote>\n<p>ઓક્ટોબર 2017 માં, અમે અમારા શહેરમાં સફળતાપૂર્વક વર્ડકૅમ્પનું આયોજન કર્યું હતું. વર્ડકૅમ્પ અમદાવાદની પેનલ ચર્ચામાં મેં વિદ્યાર્થીઓ અને વપરાશકર્તાઓ માટે રિમોટ કામ કેવી રીતે સારી કારકિર્દી હોઈ શકે તે વિશે ચર્ચા કરી હતી.</p>\n<blockquote><p>“વર્ડપ્રેસ ફક્ત સીએમએસ નથી, પણ તે શ્રેષ્ઠ લોકોનો સમુદાય છે.”</p></blockquote>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Remote Work Brings Freedom\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Remote%20Work%20Brings%20Freedom&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fremote-work-brings-freedom%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Remote Work Brings Freedom\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fremote-work-brings-freedom%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fremote-work-brings-freedom%2F&title=Remote+Work+Brings+Freedom\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Remote Work Brings Freedom\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/remote-work-brings-freedom/&media=https://heropress.com/wp-content/uploads/2017/12/120617-150x150.jpg&description=Remote Work Brings Freedom\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Remote Work Brings Freedom\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/remote-work-brings-freedom/\" title=\"Remote Work Brings Freedom\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/remote-work-brings-freedom/\">Remote Work Brings Freedom</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, 06 Dec 2017 02:30: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:16:\"Chetan Prajapati\";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:65:\"WPTavern: WordCamp US 2017 is Livestreaming All Sessions for Free\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=76937\";s:7:\"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://wptavern.com/wordcamp-us-2017-is-livestreaming-all-sessions-for-free\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2781:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/04/wordcamp-us-nashville.jpeg?ssl=1\"><img /></a></p>\n<p>WordCamp US is kicking off this morning. If you couldn’t make the journey to Nashville, you can still follow along at home or wherever you are in the world. <a href=\"https://2017.us.wordcamp.org/tickets/\" rel=\"noopener\" target=\"_blank\">Livestream Tickets</a> are free on the event’s website. Once you’ve registered for a ticket, head on over to <a href=\"https://2017.us.wordcamp.org/live-stream/\" rel=\"noopener\" target=\"_blank\">2017.us.wordcamp.org/live-stream/</a> and you’ll be able to tune in to the Fiddle Track, Banjo Track, Guitar Track, and the State of the Word (scheduled for Saturday, December 2, at 4PM CST).</p>\n<p>WordCamp US will be running three tracks simultaneously for both days of the conference and all sessions will be livestreamed. Check out the <a href=\"https://2017.us.wordcamp.org/schedule/\" rel=\"noopener\" target=\"_blank\">schedule</a> to find sessions you want to attend from home. Volunteers will also include captions, which will be embedded within the live stream video. If you have any problems with the stream, the event has a page dedicated to <a href=\"https://2017.us.wordcamp.org/live-stream/attendee-test/\" rel=\"noopener\" target=\"_blank\">livestream attendees</a> with a backup stream, as well as a troubleshooting page for <a href=\"https://2017.us.wordcamp.org/live-stream/support/\" rel=\"noopener\" target=\"_blank\">livestream support</a>.</p>\n<p>If you’re following along on Twitter, the <a href=\"https://twitter.com/wordcampus\" rel=\"noopener\" target=\"_blank\">WCUS Twitter</a> volunteers will be providing threaded coverage of sessions. This should keep your Twitter stream a little tidier with a kickoff tweet for each session, followed by live coverage threaded under each as replies.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Want to follow along with WCUS coverage at home? It will be easy by following our threaded coverage. Each session will start with a tweet that looks like this, All coverage of that session will be threaded to that kick-off tweet. <a href=\"https://t.co/J0M6jo6GEi\">pic.twitter.com/J0M6jo6GEi</a></p>\n<p>— WordCamp US (@WordCampUS) <a href=\"https://twitter.com/WordCampUS/status/936595172485468160?ref_src=twsrc%5Etfw\">December 1, 2017</a></p></blockquote>\n<p></p>\n<p>Want to see WCUS hosted near you in 2019/2020? <a href=\"https://wordcampcentral.polldaddy.com/s/wcus-2019-2020\" rel=\"noopener\" target=\"_blank\">Applications for host cities</a> opened today. If you want to be part of the team that makes WCUS happen in your city, talk to your local WordPress community organizers about filling out an application for the next host city.</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, 01 Dec 2017 15:34: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: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:47:\"Dev Blog: The Month in WordPress: November 2017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5290\";s:7:\"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/2017/12/the-month-in-wordpress-november-2017/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4232:\"<p>The WordPress project recently released WordPress 4.9, “Tipton” — a new major release named in honor of musician and band leader Billy Tipton. Read on to find out more about this and other interesting news from around the WordPress world in November.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 4.9 “Tipton”</h2>\n\n\n\n<p>On November 16, <a href=\"https://wordpress.org/news/2017/11/tipton/\">WordPress 4.9 was released</a> with new features for publishers and developers alike. Release highlights include design locking, scheduling, and previews in the Customizer, an even more secure and usable code editing experience, a new gallery widget, and text widget improvements.</p>\n\n\n\n<p>The follow up security and maintenance, v4.9.1, <a href=\"https://wordpress.org/news/2017/11/wordpress-4-9-1-security-and-maintenance-release/\">has now been released</a> to tighten up the security of WordPress as a whole.</p>\n\n\n\n<p>To get involved in building WordPress Core, jump into the #core channel in the<a href=\"https://make.wordpress.org/chat/\"> Making WordPress Slack group</a>, and follow<a href=\"https://make.wordpress.org/core/\"> the Core team blog</a>.</p>\n\n\n\n<h2>Apply to Speak At WordCamp Europe 2018</h2>\n\n\n\n<p>The next edition of WordCamp Europe takes place in June, 2018. While the organizing team is still in the early stages of planning, <a href=\"https://2018.europe.wordcamp.org/2017/11/15/are-you-ready-to-speak-at-the-largest-wordpress-event-in-europe/\">they are accepting speaker applications</a>.</p>\n\n\n\n<p>WordCamp Europe is the largest WordCamp in the world and, along with WordCamp US, one of the flagship events of the WordCamp program — speaking at this event is a great way to give back to the global WordPress community by sharing your knowledge and expertise with thousands of WordPress enthusiasts.</p>\n\n\n\n<h2>Diversity Outreach Speaker Training Initiative</h2>\n\n\n\n<p>To help WordPress community organizers offer diverse speaker lineups, <a href=\"https://make.wordpress.org/community/2017/11/13/call-for-volunteers-diversity-outreach-speaker-training/\">a new community initiative has kicked off</a> to use existing <a href=\"https://make.wordpress.org/training/handbook/speaker-training/\">speaker training workshops</a> to demystify speaking requirements and help participants gain confidence in their ability to share their WordPress knowledge in a WordCamp session.</p>\n\n\n\n<p>The working group behind this initiative will be meeting regularly to discuss and plan how they can help local communities to train speakers for WordCamps and other events.</p>\n\n\n\n<p>To get involved in this initiative, you can join the meetings at 5pm UTC every other Wednesday in the #community-team channel of the<a href=\"https://make.wordpress.org/chat/\"> 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>\n <li><a href=\"https://2017.us.wordcamp.org/\">WordCamp US 2017</a> is happening on December 1-3 in Nashville, with the annual State of the Word talk happening on Saturday afternoon — <a href=\"https://2017.us.wordcamp.org/live-stream/\">the live stream of the entire event is available to view for free</a>.</li>\n <li><a href=\"https://xwp.co/tide-a-path-to-better-code-across-the-wordpress-ecosystem/\">Tide</a>, a new service from XWP designed to help users make informed plugin choices, is due to launch at WordCamp US.</li>\n <li>Gutenberg development is continuing rapidly, with <a href=\"https://make.wordpress.org/core/2017/11/28/whats-new-in-gutenberg-28th-november/\">a packed new release</a> and a focus on <a href=\"https://make.wordpress.org/test/2017/11/22/testing-flow-in-gutenberg/\">usability testing</a>.</li>\n <li>After some discussion among the community, <a href=\"https://make.wordpress.org/community/2017/11/10/discussion-micro-regional-wordcamps/\">a new type of micro-regional WordCamp</a> is going to be introduced into the global WordCamp program.</li>\n</ul>\n\n\n\n<p><em></em></p>\n\n\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em></p>\n\n\n\n<p><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:\"Fri, 01 Dec 2017 11:00:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:\"\";}}}}}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:34:\"BuddyPress: BuddyPress 2018 Survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=269296\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://buddypress.org/2017/12/buddypress-2018-survey/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:630:\"<p>What would you like BuddyPress to focus on in 2018? The core team has ideas of where BuddyPress can expand on and your input is important to harness the time and resources of an all-volunteer crew.</p>\n<p>The survey will take 10-15 minutes to complete. Be assured that we will not publish your name, email address, nor IP address when we post the results of this survey at BuddyPress.org.</p>\n<p>Thank you for your time and cooperation. Your feedback will help us improve BuddyPress for you.</p>\n<p>=> <strong><a href=\"https://mercime.polldaddy.com/s/buddypress-2018-survey\">Take the 2018 BuddyPress Survey</a></strong></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, 01 Dec 2017 10:26: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:8:\"@mercime\";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:72:\"WPTavern: Gutenberg 1.8 Adds Greater Extensibility for Plugin Developers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=76855\";s:7:\"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:83:\"https://wptavern.com/gutenberg-1-8-adds-greater-extensibility-for-plugin-developers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3668:\"<p><a href=\"https://make.wordpress.org/core/2017/11/28/whats-new-in-gutenberg-28th-november/\" rel=\"noopener\" target=\"_blank\">Gutenberg 1.8</a> was released this week with several notable improvements that will give plugin developers more flexibility in extending the editor. It introduces <a href=\"https://github.com/WordPress/gutenberg/pull/3668\" rel=\"noopener\" target=\"_blank\">block templates</a>, which developers can use when registering a new custom post type. The block templates define a set of pre-configured blocks that will initialize when a user creates a new post. In the example below, Gutenberg lead engineer Matias Ventura demonstrates what a block template for a book custom post type might look like.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/11/block-template-book.gif?ssl=1\"><img /></a></p>\n<p>This release also <a href=\"https://github.com/WordPress/gutenberg/pull/3456\" rel=\"noopener\" target=\"_blank\">improves the design of the tools menu</a> (toggled by the ellipses at the top of the editor) to have a more lightweight UI that will lend itself better to displaying items added by extensions in the future. The new design displays multiple menu items as a radio group where the selected item shows a checkmark, an approach that Gutenberg designers found to be more intuitive after some research.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/11/Screen-Shot-2017-11-29-at-10.02.09-PM.png?ssl=1\"><img /></a></p>\n<p>Version 1.8 adds the ability for developers to <a href=\"https://github.com/WordPress/gutenberg/pull/3577\" rel=\"noopener\" target=\"_blank\">filter allowed block types</a> by specifying an array of type names that can be shown in the inserter component. This capability paves the way for block nesting where developers can define allowed children types. It also allows custom post types to specify which blocks are allowed or restricted, which will be useful for keeping CPTs lean as Gutenberg already has a large number of block types.</p>\n<p>The release also <a href=\"https://github.com/WordPress/gutenberg/pull/3554\" rel=\"noopener\" target=\"_blank\">improves meta box compatibility</a> with a fallback to the classic editor if Gutenberg detects that the meta box is unsupported. Plugin authors can now explicitly declare Gutenberg incompatibility when registering meta boxes, which will trigger a warning to the end user that explains which meta boxes have caused the fallback to the classic editor.</p>\n<p>In addition to all the improvements for extending Gutenberg, version 1.8 makes many small design tweaks, including <a href=\"https://github.com/WordPress/gutenberg/pull/3054\" rel=\"noopener\" target=\"_blank\">updated color pickers</a> with color indications and collapsible panels, <a href=\"https://github.com/WordPress/gutenberg/pull/3563\" rel=\"noopener\" target=\"_blank\">updated icon and tooltip</a> for table of contents menu, and a new <a href=\"https://github.com/WordPress/gutenberg/pull/3483\" rel=\"noopener\" target=\"_blank\">contrast checker</a> for paragraph color options. It also <a href=\"https://github.com/WordPress/gutenberg/pull/3632\" rel=\"noopener\" target=\"_blank\">puts block actions back on the block level</a> for the default, while still preserving the option to change it to a fixed toolbar at the top of the screen.</p>\n<p>For a full list of all the changes in version 1.8, check out the <a href=\"https://make.wordpress.org/core/2017/11/28/whats-new-in-gutenberg-28th-november/\" rel=\"noopener\" target=\"_blank\">release post</a> and the <a href=\"https://wordpress.org/plugins/gutenberg/#developers\" rel=\"noopener\" target=\"_blank\">changelog</a> on WordPress.org.</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, 30 Nov 2017 17:23: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: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: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:94:\"WPTavern: WPWeekly Episode 296 – Gutenberg, Telemetry, Calypso, and More With Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=76917&preview=true&preview_id=76917\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://wptavern.com/wpweekly-episode-296-gutenberg-telemetry-calypso-and-more-with-matt-mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1249:\"<p>In this episode, <a href=\"https://jjj.blog/\">John James Jacoby</a> and I are joined by <a href=\"https://ma.tt/\">Matt Mullenweg</a>, co-creator of the WordPress project and CEO of Automattic. We discussed a wide range of topics including, his role on the board of directors at GitLab, Telemetry or data-usage gathering in WordPress, and the WordPress Growth Council.</p>\n<p>We learned what’s happening with the Mobile teams inside Automattic, the future of Calypso, and the role of Pressable as a testing bed. Last but not least, we find out how beneficial joining HackerOne has been for WordPress and why WordPress.com finally allowed the installation of third-party themes and plugins through its Business Plan.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, December 13th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p><strong>Listen To Episode #296:</strong><br />\n</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, 30 Nov 2017 04:40:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \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:59:\"WPTavern: WordPress 4.9.1 Released, Fixes Page Template Bug\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=76879\";s:7:\"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://wptavern.com/wordpress-4-9-1-released-fixes-page-template-bug\";s: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:1473:\"<p>WordPress 4.9.1 <a href=\"https://wordpress.org/news/2017/11/wordpress-4-9-1-security-and-maintenance-release/\">is available</a> for download and is a maintenance and security release. This release addresses four security issues in WordPress 4.9 and below that could potentially be used as part of a multi-vector attack. According to the release notes, the following changes have been made to WordPress to protect against these vulnerabilities.</p>\n<ol>\n<li>Use a properly generated hash for the <code>newbloguser</code> key instead of a determinate substring.</li>\n<li>Add escaping to the language attributes used on <code>html</code> elements.</li>\n<li>Ensure the attributes of enclosures are correctly escaped in RSS and Atom feeds.</li>\n<li>Remove the ability to upload JavaScript files for users who do not have the <code>unfiltered_html</code> capability.</li>\n</ol>\n<p><a href=\"https://twitter.com/0x62626262\">Rahul Pratap Singh</a> and John Blackbourn are credited with responsibly disclosing the vulnerabilities. In addition to the changes above, 4.9.1 fixes eleven bugs, including the Page Template issue <a href=\"https://wptavern.com/workarounds-for-the-page-template-bug-in-wordpress-4-9\">we wrote about</a> last week. Many sites have already updated to 4.9.1 automatically. To see a list of detailed changes, check out <a href=\"https://make.wordpress.org/core/2017/11/28/wordpress-4-9-1-scheduled-for-november-29th/\">this post</a> on Make WordPress Core.</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, 30 Nov 2017 04:07: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:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:96:\"WPTavern: Distributor Plugin Now in Beta: A New WordPress Content Syndication Solution from 10up\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=76871\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://wptavern.com/distributor-plugin-now-in-beta-a-new-wordpress-content-syndication-solution-from-10up\";s: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:6117:\"<p>10up published a <a href=\"https://10up.com/blog/2017/distributor-plugin/\" rel=\"noopener\" target=\"_blank\">preview of its Distributor plugin</a> today, a new solution for syndicating content across WordPress multisite networks and the web. The <a href=\"https://distributorplugin.com/\" rel=\"noopener\" target=\"_blank\">plugin</a>, which the company plans to release for free, is currently in final closed beta. It enables content managers to either “push” or “pull” content to/from sites where they have permission to publish.</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/11/distributor-push-screenshot.jpg?ssl=1\"><img /></a>image credit: <a href=\"https://10up.com/blog/2017/distributor-plugin/\">10up</a>\n<p>Distributor includes the ability for editors to make changes to the original post and have linked copies automatically inherit the changes. This includes post content, post meta (custom fields), and taxonomy terms. It also ensures that content is SEO-friendly by providing canonical links that prevent duplicate content issues.</p>\n<p>The plugin differs from many <a href=\"https://wordpress.org/plugins/search/syndicate/\" rel=\"noopener\" target=\"_blank\">existing content syndication solutions</a>, which traditionally make use of RSS or XML/RPC, in that it is built using the <a href=\"https://developer.wordpress.org/rest-api/\" rel=\"noopener\" target=\"_blank\">REST API</a>.</p>\n<p>“The main technical advantage of the REST API is that it’s a ‘standard’ inside core for sharing information across sites,” 10up President Jake Goldman said. “Outside of multisite, we never even considered another approach. It is worth saying that you do need Distributor installed on both ‘ends’ for all of its features to work across the REST API – we need to extend the REST API a bit to get everything to pull across (plus the handling of ‘linked’ copies).”</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/11/distributor-pull-screenshot.jpg?ssl=1\"><img /></a></p>\n<p>Goldman said that although “syndication” means many different things to different people, the “classic” use case of simply pulling from a source, such as ingesting content from a newswire, is not exactly the use case for Distributor. He said the team behind the plugin is perhaps more excited about the “push” implementation. In building their own solution, 10up also incorporated its trademark lean/streamlined UI, as many existing solutions are more complicated to use.</p>\n<p>“We’re definitely aware that there are other takes at a good content sharing workflow,” Goldman said. “We even helped Automattic refactor their solution a few years ago, which they use on VIP. We took a bit of inspiration from that project, including the modular ‘connection’ types. In earnest, when trying to help our clients find solutions that were intuitive, extensible, and engineered to an enterprise grade, we just couldn’t endorse any of the options we found. It’s more a UX problem – clunky workflows, overwhelming interfaces, feature overload (I prefer a certain simplicity) – than anything, though we also have concerns about how modular / customizable some of the other solutions are.”</p>\n<h3>10up Plans to Release Distributor on WordPress.org Following the Closed Beta</h3>\n<p>10up currently has several clients using Distributor, including large publishers with several properties/magazines/newspapers, as well as large technology businesses using it for their news and media features across a network of sites. The plugin is in final closed beta but 10up is granting early access to those with interesting use cases.</p>\n<p>“We’re casting a pretty broad net in terms of ‘appropriate’ use cases for the beta; in fact, we’re hoping that broader beta testing will open our eyes to great use cases within the scope of its purpose that we hadn’t considered,” Goldman said. “We’ve already heard from some very large publishers, some smaller digital publishers, universities, public school systems, some enterprises with multiple properties, agencies interested in staging content, and just engineers who own multiple sites that share content – we’re excited about all of these use cases!”</p>\n<p>Goldman said his team is most curious to see Distributor applied to use cases that aren’t simply “news and publishing,” including CRMs and product businesses with multiples sites that share content. 10up has not yet tested specific plugins for full compatibility with Distributor, but Goldman said pre-version 1.0, it should work with any plugin that adds custom post types and fields/taxonomies “the WordPress way.”</p>\n<p>“In fact, Distributor checks to see which sites support the same post type and terms before it offers a list of sites you can ‘distribute’ content to (so you can’t ‘distribute’ a WooCommerce product to a site not running WooCommerce),” he said. Selling the same products across multiple stores, with automatically updating inventory and price changes, is just one of the many interesting use cases for Distributor.</p>\n<p>Goldman said the team anticipates taking the plugin out of beta and putting it on WordPress.org by mid to late Q1 of 2018, in approximately 2-3 months, depending on feedback from testers. 10up does not currently have a plan to monetize the plugin.</p>\n<p>“I never want to rule out that there are ‘eventually’ opportunities for commercialization, but I can honestly say that isn’t anywhere on our roadmap or consideration set at the moment,” Goldman said.</p>\n<p>Those who want to get in on the Distributor beta before it is publicly available can <a href=\"https://distributorplugin.com/\" rel=\"noopener\" target=\"_blank\">sign up on the plugin’s website </a>with a quick explanation of your use case. 10up will send a copy of the plugin for 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:\"Wed, 29 Nov 2017 23:19:59 +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:58:\"Dev Blog: WordPress 4.9.1 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5215\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2017/11/wordpress-4-9-1-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4275:\"<p>WordPress 4.9.1 is now available. This is a <strong>security and maintenance release</strong> for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately.</p>\n\n\n\n<p>WordPress versions 4.9 and earlier are affected by four security issues which could potentially be exploited as part of a multi-vector attack. As part of the core team's ongoing commitment to security hardening, the following fixes have been implemented in 4.9.1:</p>\n\n\n\n<ol>\n <li>Use a properly generated hash for the <code>newbloguser</code> key instead of a determinate substring.</li>\n <li>Add escaping to the language attributes used on <code>html</code> elements.</li>\n <li>Ensure the attributes of enclosures are correctly escaped in RSS and Atom feeds.</li>\n <li>Remove the ability to upload JavaScript files for users who do not have the <code>unfiltered_html</code> capability.</li>\n</ol>\n\n\n\n<p>Thank you to the reporters of these issues for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible security disclosure</a>: <a href=\"https://twitter.com/0x62626262\">Rahul Pratap Singh</a> and John Blackbourn.</p>\n\n\n\n<p>Eleven other bugs were fixed in WordPress 4.9.1. Particularly of note were:</p>\n\n\n\n<ul>\n <li>Issues relating to the caching of theme template files.</li>\n <li>A MediaElement JavaScript error preventing users of certain languages from being able to upload media files.</li>\n <li>The inability to edit theme and plugin files on Windows based servers.</li>\n</ul>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2017/11/28/wordpress-4-9-1-scheduled-for-november-29th/\">This post has more information about all of the issues fixed in 4.9.1 if you'd like to learn more</a>.</p>\n\n\n\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.1</a> or venture over to Dashboard → Updates and click \"Update Now.\" Sites that support automatic background updates are already beginning to update automatically.</p>\n\n\n\n<p>Thank you to everyone who contributed to WordPress 4.9.1:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/la-geek/\">Angelika Reisiger</a>, <a href=\"https://profiles.wordpress.org/blobfolio/\">Blobfolio</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/edo888/\">edo888</a>, <a href=\"https://profiles.wordpress.org/erich_k4wp/\">Erich Munz</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/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/ibenic/\">Igor Benic</a>, <a href=\"https://profiles.wordpress.org/jfarthing84/\">Jeff Farthing</a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jeremyescott/\">jeremyescott</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnpgreen/\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/lenasterg/\">lenasterg</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mariovalney/\">Mário Valney</a>, <a href=\"https://profiles.wordpress.org/natacado/\">natacado</a>, <a href=\"https://profiles.wordpress.org/odysseygate/\">odyssey</a>, <a href=\"https://profiles.wordpress.org/precies/\">precies</a>, <a href=\"https://profiles.wordpress.org/stodorovic/\">Saša</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</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, 29 Nov 2017 20:33:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"John Blackbourn\";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:74:\"WPTavern: Four Things I’d Like to See in This Year’s State of the Word\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=76830\";s:7:\"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:79:\"https://wptavern.com/four-things-id-like-to-see-in-this-years-state-of-the-word\";s: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:2724:\"<p>This weekend, WordPressers from far and wide will descend upon Nashville, TN, for WordCamp US. One of the highlights of the event is Matt Mullenweg’s <a href=\"https://ma.tt/2016/12/state-of-the-word-2016/\">State of the Word</a>. Last year, Mullenweg shared a variety of statistics, made a few announcements, and plotted a new course for WordPress development.</p>\n<p>As the event draws near, here are some things I’d like to see addressed in this year’s State of the Word.</p>\n<h2>Will There Be A Renewed Effort to Make Calypso Plugin Aware?</h2>\n<p>During the 2016 State of the Word, Mullenweg announced that Calypso became plugin aware.</p>\n<img />Plugin Aware Calypso\n<p>The idea was that plugins that are actively installed on more than 1 million sites could participate in an experimental program that would add meta box support and other plugin specific features to Calypso. To this day, this has not materialized and I’d like to know what happened and if there will be a renewed effort in 2018.</p>\n<h2>An Update on WordPress Foundation Supported Initiatives</h2>\n<p>Last year, we learned that WordCamp Central became its own Public Benefit Corporation while the WordPress Foundation maintained its non-profit status. In addition, the Foundation announced support for like-minded non-profits such as, Hack the Hood, Internet Archive, and Black Girls CODE.</p>\n<p>I’d like to know how much money the Foundation has contributed to these causes and if any progress has been made on providing educational workshops in underdeveloped countries.</p>\n<h2>An Update on WordPress’ Development/Release Strategy</h2>\n<p>A year into WordPress’ new development and release strategy, I’d like to know what challenges he and the team have faced and overcome. I’d also like to know if the results he has seen thus far warrant continuing the experiment in 2018.</p>\n<h2>Take an Opportunity to Explain What Gutenberg Really Is</h2>\n<p>Last year, Mullenweg surprised the community by announcing that the WordPress post editor would be revamped. Since then, we’ve learned that the project’s <a href=\"https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/\">name is Gutenberg</a> and it’s about more than just the editor. I’d like to see Mullenweg take this unique opportunity to provide a deeper explanation into what the project is and why it’s pivotal for WordPress’ continued success.</p>\n<hr />\n<p>This year’s State of the Word will be presented on Saturday, December 2nd, at 4PM Eastern. If you can’t see it in-person, you can <a href=\"https://2017.us.wordcamp.org/live-stream/\">watch it for free</a> via the livestream.</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, 29 Nov 2017 17:38:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:49:\"HeroPress: WordPress Gave Me the Perfect Identity\";s:7:\"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=2294\";s:7:\"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/wordpress-gave-perfect-identity/#utm_source=rss&utm_medium=rss&utm_campaign=wordpress-gave-perfect-identity\";s: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:18339:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/112917-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I have fallen head over heels in love with WordPress and I am excited.\" /><h3>How it all began…</h3>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/myself.jpg\"><img class=\"size-medium wp-image-2305\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/myself-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" /></a>I just love this picture of myself..hehehe\n<p>I remember when cybercafés started trending in Nigeria; I had just finished high school and was awaiting my results for admittance into the university. I would spend not less than 10 hours surfing the internet every day, all my pocket money went into buying bulk time at cafes. My first email was opened in 2002 on my 1st attempt to surf the internet. Spending my day at cafes continued till I left the university after which I bought a desktop computer and a modem. You can imagine my excitement as being a proud owner of a PC even though it was a desktop PC.</p>\n<p>You see, my first degree was in Philosophy. I remember my dad asking me if I was sure about that course because prior to my senior school leaving exams I had always said I was going to study business administration. What business administration was, to be honest, I had no idea, I only wanted it because I had the impression it was a cool course and I would be a corporate employee in a big firm strutting around in my skirt suit looking all glamorous.</p>\n<h3><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/i-in-skirts2.jpg\"><img class=\"size-medium wp-image-2310 aligncenter\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/i-in-skirts2-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" /></a>Funny right?</h3>\n<p>Anyway i always had a thing for Philosophy so you can imagine my enthusiasm when I discovered Philosophy was a course of study, of course I opted to study Philosophy in 2004 and graduated in 2008. However my love for the internet did not reduce by the way. I not only surfed the internet but I spent a lot of time freelancing and testing my skills as a ghost writer on different freelancing sites. I also went into blogging as well in 2009. I tried using blogger, hubpages and WordPress, but oh my, I found WordPress so complicated for me because I did not understand how it worked so I stuck with blogger and hubpages.</p>\n<h3>Growing up as a Timid but Curious Cat…</h3>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/i-and-my-lil-brother.jpg\"><img class=\"wp-image-2306 size-medium\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/i-and-my-lil-brother-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" /></a>I and my little brother. Haa of course we all grown now. Haha\n<p>During my younger years and even up to two years ago I was always a shy person deep down in my mind, but alas quite a number of people thought I was bold. This might be because 99.9% of my friends were males, or maybe not. Perhaps this could also be because I grew up with 3 brothers and no sister. It’s quite shocking though that they thought that way because it is only quite recent that I cultivated the courage to speak my mind. Prior to a year ago (2016), expressing my feelings by speaking the words out was a <em>herculean task</em>; this was what led me to starting a personal blog around 2009. I needed to let out my feelings and since I dared not speak them out, I blogged them.</p>\n<p>Blogging gave me a voice and a medium to express my thoughts and I became a better writer with each passing script. After my one year government mandated youth service in 2010 which is required of every Nigerian citizen after a bachelor’s degree, I bought an HP Mini Laptop. Can you imagine my excitement at owning a personalized computer? This I could carry around, my happiness knew no bounds.</p>\n<p>In 2010 thanks to the social network Facebook I met an Uncle of mine and we became BFF’s {Best Friends Forever} even though we had never met physically before. He was in Rome at the period we met studying Media and Communication. He came back home in 2012 but his job as a Salesian Brother took him to Ghana. Of course I made sure to keep a date with him when he came back home briefly in 2012 before heading to resume in Ghana. We had cake and ice cream at my favourite café that day.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/i-and-bff-unc-sam.jpg\"><img class=\"size-medium wp-image-2303\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/i-and-bff-unc-sam-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" /></a>I and my BFF Uncle..Hehe\n<h3>Rediscovering WordPress…</h3>\n<p>Then came 2015, I ended a horrid relationship and i lost my best friend female; I mean I thought I was in love, but alas I had loved the idea of loving a person. I was not happy and I wanted a breath of fresh air and a change of environment. At that period, I had obtained a postgraduate diploma in mass communication and I had started a Masters Degree in Information Management and my required 3 months internship was coming up that summer. I decided to volunteer in Ghana at the headquarters of the <a href=\"https://sdbafw.org\" target=\"_blank\" rel=\"noopener\">Salesians of Don Bosco in West Africa {SDBAFW}</a> where my Uncle was. My time there was beyond awesome and a new beautiful story in my life chapter.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/at-sdbafw-in-ashaiman.jpeg\"><img class=\"size-medium wp-image-2309\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/at-sdbafw-in-ashaiman-300x300.jpeg\" alt=\"\" width=\"300\" height=\"300\" /></a>I met a lot of amazing people and made new friends within the SDB community in Ashaiman, Ghana\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/i-and-volunteers-at-kakum.jpg\"><img class=\"size-medium wp-image-2308\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/i-and-volunteers-at-kakum-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /></a>i and other volunteers and great friends at Kakum National Park in Cape Coast, Ghana\n<p>I worked in the communications department at the SDBAFW province. My Uncle knew how much I loved blogging and he had been my writing tutor for a while, so one day he asked why I was not blogging on WordPress. Of course I went on about how difficult and complicated the platform was, he sighed, told me their organization website was built on WordPress and he gave me a folder with tutorial videos made by <a href=\"https://twitter.com/mor10\">Morten Rand-Hendriksen</a> for beginners to go watch.</p>\n<p>After two weeks of watching those videos, my life changed. You see prior to 2015 I treated my time online as a purely personal affair because I was just passionate about being online right, exploring, freelancing and discovering. I never thought it would become something I could make a full time career out of. I was still pursuing a career in Human Resources since managing people was another thing I was great at. In late 2015 I had joined a series of online Facebook groups and I was wowed by one in particular run by John Obidi (<a href=\"https://web.facebook.com/groups/smartbcamp\" target=\"_blank\" rel=\"noopener\">SmartBCamp</a>) because I saw a lot of people earning an income from things I did and knew for the fun of it. I found myself asking what planet I had been living on and why I had not made my passion my business.</p>\n<p>Hence I made a decision in 2016 to make my passion my business, I decided to move to Lagos since I was done with my Master’s coursework and focus on this new journey of mine. Meanwhile in December of 2015, a woman had contacted me saying she loved how my blog UX on WordPress looked and if I could work on hers.</p>\n<blockquote><p>As at then I didn’t even know the difference between wordpress.com and wordpress.org so I started googling which is something I’m also great at.</p></blockquote>\n<p>I took on the task of redesigning her website and I started troubleshooting all the current issues she had on her site, I read up a lot, I visited the WordPress.Org/showcase and was wowed with all the good things I could do with WordPress.org, I especially loved Snoop Doggs website and told myself my goal would be to be able to make a project that would look like that one day. But of course the first few sites I designed were horrible, when I look back at them now I wonder what was going on in my head when I designed them.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/my-typical-day-in-gh.jpg\"><img class=\"size-medium wp-image-2302\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/my-typical-day-in-gh-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" /></a>A typical day for me in front of my PC\n<p>Alas I had great online plans for the year 2016 but up until the middle of year 2016, I had a series of bad experiences that sent me back to the stone age and my parents house; I blogged about it <a href=\"https://mojispeaks.com/2017/01/09/my-2016-in-retrospect/\">here</a>. They were bad experiences alright, but a lot of good came out of them. I got saved bit by bit and found my rhythm again. Meanwhile I was already <em><strong>falling in love with WordPress</strong></em> so I decided to look for ways to give back. That’s when I stumbled upon make.wordpress.org and discovered there were so many ways to give back. I was not a programmer alright so what will I go to do in Core or CLI or any other similar place, I automatically went for the community.</p>\n<h3>Building the Nigerian WordPress Community…</h3>\n<p>In November 2016 I made one of the best decisions that turned my life around. I was fed up because the entire year had not turned out in any way I had planned in December 2015 of the previous year. So I made an interesting decision to turn off my data and go to sleep by 10pm. Trust me this was a big decision for me before I would usually freak out if my data wasn’t functioning or if my phone battery died. Anyway during this period I had moved back to my parents’ right and I needed to work in a quiet room because I so much needed to focus.</p>\n<p>Also by now I had discovered there was a WordPress Meetup community in Lagos but when I applied I did so for Ogun which is my state, but during my conversations with WordPress Global they had requested if I would be willing to join the Lagos WordPress Group, at first I was a little hesitant because Lagos is an hour drive from my town, I don’t have a car, so that adds another one hour. Surely you can’t live in Lagos and not know Lagos and traffic are best buddies so that adds another hour to my trip. Without thinking too much about it I agreed. Looking back today I do not regret it one bit.</p>\n<blockquote><p>This started my journey as a WordPress Lagos Community Co-organizer and a Community Deputy.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/600_455477788.jpeg\"><img class=\"size-medium wp-image-2317\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/600_455477788-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" /></a>the first meetup i had as a Lagos co-organizer</blockquote>\n<p>This is 2017 right, I must not fail to mention it to you that my income in the last one year has come solely from WordPress Web Design. Today the Nigerian WordPress has grown, still growing definitely, the Lagos WordPress Meetup group has also grown and we have had 8 Meetups this year. I have made great friends and co-organizers in the community who are dedicated to building and sharing their WordPress knowledge with the community like I am. We are hosting the very first Nigerian <a href=\"https://2018.lagos.wordcamp.org/\">WordCamp in Lagos</a> on March 10 2018 at the Civic Centre in Victoria Island, Lagos. I must not forget to mention that we also now have an Ijebu WordPress Community; that’s my town alright <span class=\"ttfmake-icon mceNonEditable fa\"></span> .</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/3rd-wp-lagos-meetup-2017.jpg\"><img class=\"wp-image-2312 size-full\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/3rd-wp-lagos-meetup-2017.jpg\" alt=\"\" width=\"299\" height=\"224\" /></a>this was our 4th meetup event this year\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/first-wp-lagos-meetup-2018.jpg\"><img class=\"wp-image-2313 size-medium\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/first-wp-lagos-meetup-2018-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" /></a>this was our first meetup event this year\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/600_463289287.jpeg\"><img class=\"wp-image-2316 size-medium\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/600_463289287-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" /></a>our third meetup early this year\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/WPlagos-30th-Sept-Meetup-Photo-1.jpg\"><img class=\"size-medium wp-image-2318\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/WPlagos-30th-Sept-Meetup-Photo-1-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /></a>WPlagos 30th Sept Meetup (5th meetup this year)\n<p>We recently created a <a href=\"https://photos.app.goo.gl/VNx047kS0Bj8u7z63\" target=\"_blank\" rel=\"noopener\">google photos for our past meetups, click here to view them. </a>So tell me why I shouldn’t be grateful? Why I shouldn’t fall in love with WordPress? Because this is all that has happened to me since I met WordPress, <em><strong>I have fallen head over heels in love with WordPress and I am excited.</strong></em></p>\n<h3>What have i gained from WordPress?</h3>\n<ol>\n<li>I overcame my stage fright fully because i have to get in front of the crowd at every meetup to do the introductions and introduce the WordPress communities.</li>\n<li>I attended my first WordCamp in Cape Town, South Africa. <a href=\"https://youtu.be/PE6k8-PLKVk\" target=\"_blank\" rel=\"noopener\">Click here to see my picture story</a>. Coincidentally this was also my first time outside West Africa. I had never been in an aircraft for more than one hour before my trip.</li>\n<li>I have made money from WordPress Web Design Projects, enough to sustain me during my learning period. Still learning everyday.</li>\n<li>I jumped off <a href=\"https://mojispeaks.com/2017/11/19/i-did-jump-off-a-hill-my-wordcamp-cape-town-story/\" target=\"_blank\" rel=\"noopener\">Signal Hill in Cape Town, find post here</a>; next up, sky diving.</li>\n</ol>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/DSC_0246-1.jpg\"><img class=\"size-medium wp-image-2314\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/DSC_0246-1-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /></a>At a WordCamp Cape Town session\n<p><strong>My advice to you from my experience so far…</strong></p>\n<p>Always seek to understand the basics of whatever knowledge you seek…never jump in too fast, wanting to spiral to the top while ignoring the learning curve. You will crash down effortlessly if you do so and would have learnt nothing.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/WordPress-Gave-Me-the-Perfect-Identity.png\"><img class=\"size-medium wp-image-2315\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/WordPress-Gave-Me-the-Perfect-Identity-300x225.png\" alt=\"\" width=\"300\" height=\"225\" /></a>WordPress Gave Me the Perfect Identity Indeed…I no longer roam the internet..hehehe\n<blockquote>\n<p>The End…?<br />\nI Don’t Think So…<br />\nMy Story has Just Begun. <strong>Stay Tuned….!</strong></p>\n</blockquote>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: WordPress Gave Me the Perfect Identity\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=WordPress%20Gave%20Me%20the%20Perfect%20Identity&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-gave-perfect-identity%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: WordPress Gave Me the Perfect Identity\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-gave-perfect-identity%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-gave-perfect-identity%2F&title=WordPress+Gave+Me+the+Perfect+Identity\" rel=\"nofollow\" target=\"_blank\" title=\"Share: WordPress Gave Me the Perfect Identity\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/wordpress-gave-perfect-identity/&media=https://heropress.com/wp-content/uploads/2017/11/112917-150x150.jpg&description=WordPress Gave Me the Perfect Identity\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: WordPress Gave Me the Perfect Identity\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/wordpress-gave-perfect-identity/\" title=\"WordPress Gave Me the Perfect Identity\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/wordpress-gave-perfect-identity/\">WordPress Gave Me the Perfect Identity</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, 29 Nov 2017 12:00: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:8:\"Mary Job\";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:71:\"WPTavern: WordCamp Albuquerque Gears Up for 5th Edition in January 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=76845\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/wordcamp-albuquerque-gears-up-for-5th-edition-in-january-2018\";s: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:3644:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/11/Screen-Shot-2017-11-28-at-8.15.51-PM-e1511921930548.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://2018.albuquerque.wordcamp.org/\" rel=\"noopener\" target=\"_blank\">WordCamp Albuquerque</a> is gearing up for its 5th edition January 19-21, 2018, following events held in 2011, 2012, 2013, and 2016. An all-new organizing team is ready to invigorate the Southwestern WordPress community with an exciting array of world-class speakers and educational opportunities for both new and experienced users.</p>\n<p>Lead organizer Alonso Indacochea said the team is expecting to host 300 attendees. Many of them will be coming from New Mexico, Southern Colorado, West Texas, and Arizona.</p>\n<p>“The southwestern community is interesting because there are a lot of developers doing really interesting tech work, but a lot of it happens in silos due to government secrecy,” speaker wrangler Sam Hotchkiss said. “New Mexico has a rich history of technology, from the Manhattan Project and the creation of the first nuclear weapons to the formation of Microsoft, which was founded in Albuquerque in 1975.</p>\n<p>“We’re trying to pull together that community to connect with each other, and also establish Albuquerque as a WordCamp with consistently high-quality speakers of global renown.”</p>\n<p>In pursuit of this goal, Hotchkiss has recruited a healthy crop of top quality speakers from the WordPress community. During the Saturday afternoon session, <a href=\"http://chrislema.com/\" rel=\"noopener\" target=\"_blank\">Chris Lema</a>, Vice President of Products and Innovation at <a href=\"https://www.liquidweb.com/\" rel=\"noopener\" target=\"_blank\">Liquid Web</a>, will be interviewing a diverse group of speakers in the main hall, including the following:</p>\n<ul>\n<li>Ashleigh Axios, former Creative Director for the Obama White House and AIGA Board Member</li>\n<li>Sakin Shrestha, Founder of Catch Themes and the main drive behind the vibrant WordPress community in Nepal</li>\n<li>John Maeda, Global Head, Computational Design and Inclusion at Automattic</li>\n<li>Jon Brown, WordPress Nomad</li>\n<li>Alonso Indacochea, WordCamp lead organizer, who had no serious software development experience 5 years ago, went through a local boot camp, and is now CEO of the fastest growing digital agency in New Mexico</li>\n</ul>\n<p>This year WordCamp Albuquerque will feature multiple tracks sorted by topic, beginning with a WordPress Fundamentals track on Friday, January 19.</p>\n<p>“Foundation Friday is something I’ve seen be really successful at other camps,” Hotchkiss said. “It gives people who are new to WP a base of knowledge so that they can go into Saturday feeling confident and ready to learn. Each class on Friday will build on the one before it. Starting from scratch? Show up at 9. Already have a site, but need help handling the layout? Come at 10:30.”</p>\n<p>Saturday’s program will include sessions in the Business, Design, and Development tracks throughout the day, in addition to the planned interviews. A contributor day session is planned for Sunday. The event’s organizers are still <a href=\"https://2018.albuquerque.wordcamp.org/speakers/\" rel=\"noopener\" target=\"_blank\">accepting speaker applications</a> until midnight on Monday, December 4. They plan to finalize the schedule next week. <a href=\"https://2018.albuquerque.wordcamp.org/attendees/\" rel=\"noopener\" target=\"_blank\">Tickets</a> are on sale now and attendees can elect to purchase one for whatever combination of days they wish to attend.</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, 29 Nov 2017 02:30:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:52:\"WPTavern: Practicing the Pac-Man Rule at WordCamp 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=76857\";s:7:\"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://wptavern.com/practicing-the-pac-man-rule-at-wordcamp-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1750:\"<p>With more than 2,000 attendees expected, WordCamp US is one of the largest conferences devoted to WordPress. It’s a great opportunity to meet a lot of new faces and catch up with familiar ones. If you’re standing in the hallway at WordCamp US speaking with a group of people and want to encourage others to say hi or be part of the conversation, try this tip <a href=\"https://www.facebook.com/GreatSmokyMountainsAssociation/videos/10155628004363673/\">shared by</a> Jason Cosper called the <a href=\"http://ericholscher.com/blog/2017/aug/2/pacman-rule-conferences/\">Pac-Man rule</a> written by Eric Holscher.</p>\n<img />photo credit: rbatina <a href=\"http://www.flickr.com/photos/27988337@N00/12081061246\">Random Phone Shots</a> <a href=\"https://creativecommons.org/licenses/by-nc-nd/2.0/\">(license)</a>\n<p>The rule is simple. When standing in a circle, provide an opening for someone to join the group. By standing in an open circle, it gives a passersby explicit permission to join the group and limits the appearance of cliques. I didn’t realize how standing in a closed circle can be off-putting to those wanting to introduce themselves or chime in until learning about this rule.</p>\n<p>In addition to the Pac-Man rule, <a href=\"https://twitter.com/bobWP/status/935576711252533248\">Bob Dunn suggests</a> using eye contact to invite people to the group. <a href=\"https://twitter.com/mor10/status/935582280164065280\">Morten Rand-Hendriksen suggests</a> that if you’re looking to start a conversation with someone new, start with groups of two people as they likely know each other and want to talk to new people. I’ll be practicing the Pac-Man rule this weekend and I encourage other attendees to do so as well.</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, 28 Nov 2017 21:06:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:71:\"WPTavern: Gutenberg Team Is Ramping Up Usability Testing at WordCamp 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=76807\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/gutenberg-team-is-ramping-up-usability-testing-at-wordcamp-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4848:\"<p>The Gutenberg Team will have a usability testing station set up at WordCamp US where attendees can participate in a round of pre-set tests that focus on the writing flow. Testers will answer a short survey that includes their prior WordPress experience level, age, and device used. Volunteers will get participants set up with a testing site and will start the screen recording app.</p>\n<p>Testers will be asked to create a post based on the content shown in an image. There are three different images, which require the user to perform actions such as adding images, embedding media, creating unordered lists, adding quotes, and other basic content creation tasks. In order to segment results, the usability tests have been divided into <a href=\"https://drive.google.com/file/d/0B4BHP7ZnNw32RWJRa2diODFXVGs/view\" rel=\"noopener\" target=\"_blank\">beginner</a>, <a href=\"https://drive.google.com/file/d/0B4BHP7ZnNw32bVpyd2xaaFVVMWM/view\" rel=\"noopener\" target=\"_blank\">intermediate</a>, and <a href=\"https://drive.google.com/file/d/0B4BHP7ZnNw32R3U0ZkJRVXBySWM/view\" rel=\"noopener\" target=\"_blank\">advanced</a> level images.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/11/Screen-Shot-2017-11-27-at-10.23.35-PM.png?ssl=1\"><img /></a>Advanced level task image for Gutenberg usability testing\n<p>After completing the test, participants will be asked to answer a few followup questions, such as “Did the task take longer or shorter than you expected?” and “Are you more or less likely to use the Gutenberg editor in the future?”</p>\n<p>“This is the second round of usability testing scripts — we tried out the first batch of scripts at WordCamp Milano, and made some adjustments for clarity,” Gutenberg design lead Tammie Lister said. “As a result of testing, we moved the toolbar on blocks to not be fixed and back to the block. At Milano, we tested the tests.”</p>\n<p>As the result of these tests and other prior feedback, Lister <a href=\"https://github.com/WordPress/gutenberg/issues/3570\" rel=\"noopener\" target=\"_blank\">recommended the default position of the toolbar to be fixed to the block</a>.</p>\n<p>Anna Harrison, UX lead at Ephox (the makers of tinyMCE), has been instrumental in helping with the efforts around testing and writing scripts. She also offered <a href=\"https://github.com/WordPress/gutenberg/issues/3570#issuecomment-345879950\" rel=\"noopener\" target=\"_blank\">feedback on the ticket</a>, referencing comments from the previous discussion on the issue:</p>\n<blockquote><p>A fixed [docked to top] toolbar solution has several complications. Firstly, we break accessibility. I won’t reiterate the discussion, as it’s well articulated above. Secondly, we break things independent of accessibility – I ran user tests on something quite similar to this last year, and we discovered that <a href=\"https://go.tinymce.com/blog/from-the-ux-desk-road-testing-inline-image-editing/\" rel=\"noopener\" target=\"_blank\">disconnecting the toolbar from the point of action resulted in 100% user test fails</a>.</p></blockquote>\n<p>Gutenberg version 1.8 will change the default back to displaying block actions on the block level, although the option to change it to a fixed toolbar at the top of the screen will still be available. This change is one example of how usability testing is shaping Gutenberg’s development. WordCamp US is an opportunity for the team to collect a host of new testing data in one place.</p>\n<p>Lister said all the data that is collected will be processed by volunteers on the make/test team, but the team is still small and they could use more volunteers to work on this effort.</p>\n<p>“The turnaround time on processing the data we collect really depends on how many volunteers are available to work on it,” Lister said. “It also depends on if it’s a bug reported – bugs are easier to get fixed right away. If the data indicates an area where we need to investigate more, we’ll do that. The results of the testing will be published on make.wordpress.org/test.”</p>\n<p>Lister said the team is hoping to reach a wider variety of WordPress users at WCUS this year, from all backgrounds and careers. The testing booth offers an opportunity for anyone to contribute to the future of WordPress, regardless of your experience level or familiarity with the software. The team is also eager to broaden its testing field by recruiting non-WordPress users as well. If you can’t make it to WordCamp US, you can still <a href=\"https://make.wordpress.org/test/2017/11/22/testing-flow-in-gutenberg/\" rel=\"noopener\" target=\"_blank\">contribute to Gutenberg by taking and administering usability tests</a> on your own with the help of the instructions posted on the make.wordpress.org/test site.</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, 28 Nov 2017 16:55:47 +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:102:\"WPTavern: Delete Me WordPress Plugin Assists Website Owners in Granting the GDPR Right to be Forgotten\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=76474\";s:7:\"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:113:\"https://wptavern.com/delete-me-wordpress-plugin-assists-website-owners-in-granting-the-gdpr-right-to-be-forgotten\";s: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:4080:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/11/eraser.jpg?ssl=1\"><img /></a>photo credit: pj_vanf <a href=\"http://www.flickr.com/photos/48066826@N02/5006945413\">to err is human</a> – <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>With the EU GDPR compliance deadline just <a href=\"http://www.gdprcountdownclock.com/\" rel=\"noopener\" target=\"_blank\">178 days away</a>, many WordPress site owners are looking for tools that will help them meet the requirements. The regulation expands existing rights of data subjects in several key ways, including (but not limited to) the right to be notified of data breaches, the right to access personal data, the right to be forgotten, and the right to data portability.</p>\n<p>A plugin called <a href=\"https://wordpress.org/plugins/delete-me/\" rel=\"noopener\" target=\"_blank\">Delete Me</a>, by Clinton Caldwell, is one that may be helpful in addressing the Right to be Forgotten. The <a href=\"https://www.eugdpr.org\" rel=\"noopener\" target=\"_blank\">GDPR.org</a> website breaks it down as follows:</p>\n<blockquote><p>Also known as Data Erasure, the right to be forgotten entitles the data subject to have the data controller erase his/her personal data, cease further dissemination of the data, and potentially have third parties halt processing of the data. The conditions for erasure, as outlined in article 17, include the data no longer being relevant to original purposes for processing, or a data subjects withdrawing consent. It should also be noted that this right requires controllers to compare the subjects’ rights to “the public interest in the availability of the data” when considering such requests.</p></blockquote>\n<p>The Delete Me plugin takes this one step further for site owners who are comfortable allowing users to delete their own data without having to create a request for it. By default, the delete button displays on the profile.php screen in the admin, but administrators can elect to use a shortcode to display it somewhere else on the frontend.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/11/Screen-Shot-2017-11-27-at-4.54.42-PM.png?ssl=1\"><img /></a></p>\n<p>The plugin will delete the users’ posts, links, and even comments (optional) after the user confirms. The confirmation screen could stand to include more information about what data is being deleted so that the user knows what to expect. However, administrators do have the option to specify this within the JavaScript confirmation dialog. After deletion the user is dumped back out to the homepage by default, but the redirect URL can be configured in the plugin’s settings page.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/11/Screen-Shot-2017-11-27-at-4.54.21-PM.png?ssl=1\"><img /></a></p>\n<p>Additional configurable settings include the ability to select specific WordPress roles to allow to delete themselves, specify class and style attributes of delete link, enable or disable JavaScript confirm for Shortcode, specify button text, and send an email notification when users delete themselves.</p>\n<p>Delete Me also supports network activation and single site activation for multisite installations. By default, users can only delete themselves and their content from a single site, while other networked sites where they are registered will not be affected. The plugin does include a “Delete From Network” checkbox that administrators can enable to allow users to delete themselves from all sites on the network.</p>\n<p><a href=\"https://wordpress.org/plugins/delete-me/\" rel=\"noopener\" target=\"_blank\">Delete Me</a> is available for free on WordPress.org. I tested the plugin and have confirmed that it works with WordPress 5.0-alpha. It is currently active on more than 2,000 sites. By no means does it satisfy the full requirements of the GDPR, but it provides a decent starting point for site owners who want to make this option available to their users without having to manually fulfill their requests.</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, 28 Nov 2017 00:08: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: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: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:99:\"WPTavern: WPWeekly Episode 295 – Turkey With A Side of Gutenberg and Giving Thanks to Open Source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=76789&preview=true&preview_id=76789\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://wptavern.com/wpweekly-episode-295-turkey-with-a-side-of-gutenberg-and-giving-thanks-to-open-source\";s: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:3233:\"<p>I apologize for the delay in getting this episode out to you. In this episode, <a href=\"https://jjj.blog/\">John James Jacoby</a> and I discussed a range of topics, including a caching bug introduced in WordPress 4.9 that causes Page Templates not to display for an hour. We talk about the possibilities of using Gutenberg with WooCommerce and how it could impact product management.</p>\n<p>As is tradition, near the end of the show, we shared what we’re thankful for. We also shared what listeners are <a href=\"https://twitter.com/jeffr0/status/933101857039200258\">thankful for</a> regarding open source.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://core.trac.wordpress.org/ticket/42573\">This bug</a> is causing some theme developers to rip their hair out. Weston Ruter <a href=\"https://core.trac.wordpress.org/ticket/42573#comment:57\">explains</a> why the change was implemented.<br />\n<a href=\"https://wptavern.com/woocommerce-explores-the-possibilities-and-challenges-for-e-commerce-in-the-gutenberg-era\">WooCommerce Explores the Possibilities and Challenges for E-Commerce in the Gutenberg Era</a><br />\n<a href=\"https://wptavern.com/tailor-page-builder-plugin-discontinued-owners-cite-funding-gutenberg-and-competition\">Tailor Page Builder Plugin Discontinued, Owners Cite Funding, Gutenberg, and Competition</a><br />\n<a href=\"https://wptavern.com/wordcamp-europe-2018-speaker-applications-now-open\">WordCamp Europe 2018 Speaker Applications Now Open</a><br />\n<a href=\"https://wptavern.com/github-launches-security-alerts-for-javascript-and-ruby-projects-python-support-coming-in-2018\">GitHub Launches Security Alerts for JavaScript and Ruby Projects, Python Support Coming in 2018</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://wordpress.org/plugins/trigger-happy/\">Trigger Happy</a> developed by Hotsource is a visual scripting tool for WordPress, allowing you to connect plugins and events together using a simple user interface. It currently supports core WordPress functionality, WooCommerce, and Ninja Form.</p>\n<p><a href=\"https://github.com/boogah/big-dummy\">Big dummy</a> is a project for folks who need to emulate an established blog with plenty of content while doing WordPress benchmarking and performance testing.</p>\n<p>There are 2495 posts, 6197 comments, 231 tags, 26 categories, and 10 pages worth of WordPress dummy data, fully ready to import. That’s 3 (simulated) years worth of content. <i>Note:</i> There are ~1.6 GB of images (courtesy of<a href=\"https://unsplash.com\"> Unsplash</a>) attached to these posts. It’s a very good idea to import everything <i>but</i> the media in order to avoid timeouts or errors with the WordPress Importer.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, November 29th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p><strong>Listen To Episode #295:</strong><br />\n</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, 27 Nov 2017 07:54:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:64:\"WPTavern: Workarounds for the Page Template Bug in WordPress 4.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=76785\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/workarounds-for-the-page-template-bug-in-wordpress-4-9\";s: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:2105:\"<p>WordPress 4.9 “Tipton” <a href=\"https://wptavern.com/wordpress-4-9-released-with-major-improvements-to-customizer-workflow-updated-code-editors-and-new-core-gallery-widget\">was released</a> last week and although it’s largely trouble-free, there is one particular issue <a href=\"https://wordpress.org/support/topic/updated-to-4-9-wont-detect-page-template/\">users</a> and <a href=\"https://core.trac.wordpress.org/ticket/42573#comment:75\">developers</a> are running into that’s causing frustration. In 4.9, custom page templates that are created fail to display in the Template drop-down menu. The issue is related to changes made to the <a href=\"https://core.trac.wordpress.org/changeset/41806\">file editor</a>.</p>\n<p>Previous versions of WordPress listed files 2-levels deep in the editor. In 4.9, the entire directory tree for a theme is listed regardless of its depth. Caching was added to help limit the performance impacts of loading large WordPress themes. “An unintended side effect of the caching is that the same directory listing function <tt>get_files</tt> is used both for the theme editor and for gathering page templates,” Weston Ruter, Co-Release Lead for WordPress 4.9 <a href=\"https://core.trac.wordpress.org/ticket/42573#comment:57\">said</a>.</p>\n<p>Within the <a href=\"https://core.trac.wordpress.org/ticket/42573\">trac ticket</a>, developers suggests that a button be added that flushes all caches or disabling the cache if <tt>WP_DEBUG</tt> is set to true. Neither suggestion turned into a patch committed to core. Instead, Ruter has <a href=\"https://gist.github.com/westonruter/6c2ca0e5a4da233bf4bd88a1871dd950\">released a plugin</a> as a workaround that flushes the template cache. Other workarounds include, bumping the theme’s version, running the <tt>wp cache flush</tt> command in WP CLI, or waiting 60 minutes for the cache to expire.</p>\n<p>The ticket is marked as a high priority but because of the upcoming holidays in the US and WordCamp US next weekend, it could be at least a few weeks before WordPress 4.9.1 is released.</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, 23 Nov 2017 00:42: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:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:97:\"WPTavern: Tide Project Aims to Audit and Score WordPress Themes and Plugins based on Code Quality\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=76652\";s:7:\"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:108:\"https://wptavern.com/tide-project-aims-to-audit-and-score-wordpress-themes-and-plugins-based-on-code-quality\";s: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:8526:\"<p>Last week XWP dropped an intriguing <a href=\"https://xwp.co/tide-a-path-to-better-code-across-the-wordpress-ecosystem/\" rel=\"noopener\" target=\"_blank\">preview of a new project called Tide</a> that aims to improve code quality across the WordPress plugin and theme ecosystems. The company has been working with the support of Google, Automattic, and WP Engine, on creating a new service that will help users make better plugin decisions and assist developers in writing better code.</p>\n<p>XWP’s marketing manager Rob Stinson summarized the project’s direction so far:</p>\n<blockquote><p>Tide is a service, consisting of an API, Audit Server, and Sync Server, working in tandem to run a series of automated tests against the WordPress.org plugin and theme directories. Through the Tide plugin, the results of these tests are delivered as an aggregated score in the WordPress admin that represents the overall code quality of the plugin or theme. A comprehensive report is generated, equipping developers to better understand how they can increase the quality of their code.</p></blockquote>\n<p>The XWP announcement also included a screenshot of how this data might be presented in the WordPress plugin directory:</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/11/jetpack-tide-plugin-score.jpg?ssl=1\"><img /></a></p>\n<p>XWP plans to unveil the service at WordCamp US in Nashville at the Google booth where they will be inviting the community to get involved. Naturally, a project with the potential to have this much impact on the plugin ecosystem raises many questions about who is behind the vision and what kind of metrics will be used.</p>\n<p>I contacted Rob Stinson and Luke Carbis at XWP, who are both contributors to the project, to get an inside look at how it started and where they anticipate it going.</p>\n<p>“Tide was started at XWP about 12 months ago when one of our service teams pulled together the idea, followed up by a proof of concept, of a tool that ran a series of code quality tests against a package of code (WordPress plugin) and returned the results via an API,” Stinson said. “We shortly after came up with the name Tide, inspired by the proverb ‘A rising tide lifts all boats,’ thinking that if a tool like this could lower the barrier of entry to good quality code for enough developers, it could lift the quality of code across the whole WordPress ecosystem.”</p>\n<p>Stinson said XWP ramped up its efforts on Tide during the last few months after beginning to see its potential and sharing the vision with partners.</p>\n<p>“Google, Automattic and WP Engine have all helped resource (funds, infrastructure, developer time, advice etc) the project recently as well,” Stinson said. “Their support has really helped us build momentum. Google have been a big part of this since about August. We had been working with them on other projects and when we shared with them the vision for Tide, they loved it and saw how in line it is with the vision they have for a better performant web.”</p>\n<p>The Tide service is not currently active but a beta version will launch at WordCamp US with a WordPress plugin to follow shortly thereafter. Stinson said the team designed the first version to present the possibilities of Tide and encourage feedback and contribution from the community.</p>\n<p>“We realize that Tide will be its best if its open sourced,” he said. “There are many moving parts to it and we recognize that the larger the input from the community, the better it will represent and solve the needs of the community around code quality.”</p>\n<p>At this phase of the project, nothing has been set in stone. The Tide team is continuing to experiment with different ways of making the plugin audit data available, as well as refining how that data is weighed when delivering a Tide score.</p>\n<p>“The star rating is just an idea we have been playing with,” Stinson said. “The purpose of it will be to aggregate the full report that is produced by Tide into a simple and easy to understand metric that WordPress users can refer to when making decisions about plugins and themes. We know we haven’t got this metric and how it is displayed quite right. We’ve had some great feedback from the community already.”</p>\n<p>The service is not just designed to output scores but also to make it easy for developers to identify weaknesses in their code and learn how to fix them.</p>\n<p>“Lowering the barrier of entry to writing good code was the original inspiration for the idea,” Stinson said.</p>\n<h3>Tide Project Team Plans to Refine Metrics Used for Audit Score based on Community Feedback</h3>\n<p>The Tide project website, <a href=\"http://wptide.org\" rel=\"noopener\" target=\"_blank\">wptide.org</a>, will launch at WordCamp US and will provide developers with scores, including specifics like line numbers and descriptions of failed sniffs. Plugin developers will be able to use the site to improve their code and WordPress users will be able to quickly check the quality of a plugin. XWP product manager Luke Carbis explained how the Tide score is currently calculated.</p>\n<p>“Right now, Tide runs a series of code sniffs across a plugin / theme, takes the results, applies some weighting (potential security issues are more important than tabs vs. spaces), and then averages the results per line of code,” Carbis said. “The output of this is a score out of 100, which is a great indicator of the quality of a plugin or theme. The ‘algorithm’ that determines the score is basically just a series of weightings.”</p>\n<p>The weightings the service is currently using were selected as a starting point, but Carbis said the team hopes the WordPress community will help them to refine it.</p>\n<p>“If it makes sense, maybe one day this score could be surfaced in the WordPress admin (on the add new plugin page),” Carbis said. “Or maybe it could influence the search results (higher rated plugins ranked first). Or maybe it just stays on wptide.org. That’s really up to the community to decide.”</p>\n<p>In addition to running codesniffs, the Tide service will run two other scans. A <a href=\"https://developers.google.com/web/tools/lighthouse/\" rel=\"noopener\" target=\"_blank\">Lighthouse</a> scan, using Google’s open-source, automated tool for improving the quality of web pages, will be performed on themes, which Carbis says is a “huge technological accomplishment.”</p>\n<p>“For every theme in the directory, we’re spinning up a temporary WordPress install, and running a Lighthouse audit in a headless chrome instance,” Carbis said. “This means we get a detailed report of the theme’s <em>front end output</em> quality, not just the code that powers it.”</p>\n<p>The second scan Tide will perform measures PHP compatibility and will apply to both plugins and themes.</p>\n<p>“Tide can tell which versions of PHP a plugin or theme will work with,” Carbis said. “For users, this means we could potentially hide results that we <em>know</em> won’t work with their WordPress install (or at least show a warning). For hosts, this means they can easily check the PHP compatibility before upgrading an install to PHP 7 (we think this will cause <em>many</em> more installs to be upgraded – the net effect being a noticeable speed increase, which we find really exciting and motivating).”</p>\n<p>Carbis said that the team is currently working in the short term to get the PHP Compatibility piece into the WordPress.org API, which he says could start influencing search results without any changes to WordPress core.</p>\n<p>“We’d also like to start engaging with the community to find out whether surfacing a Code Quality score to WordPress users is helpful, and if it is, what does that look like? (e.g. score out of 100, 5 star rating, A/B/C/D, etc.),” Carbis said. “We will release our suggestion for what this <em>could</em> look like as a plugin shortly after WordCamp US.”</p>\n<p>More specific information about the metrics Tide is currently using and how it applies to plugins and themes will be available after the service launches in beta. If you are attending WordCamp US and have some suggestions or feedback to offer the team, make sure to stop by the Google sponsorship booth.</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, 22 Nov 2017 21:21:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:36:\"Matt: Adam Robinson on Understanding\";s:7:\"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=47663\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://ma.tt/2017/11/adam-robinson-on-understanding/\";s: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:5921:\"<p>This is a long quote/excerpt from <a href=\"https://twitter.com/iamadamrobinson\">Adam Robinson</a> I’ve been holding onto for a while, from <a href=\"https://tribeofmentors.com/\">Tribe of Mentors</a>. Worth considering, especially if you strive to work in a data-informed product organization.</p>\n<blockquote><p>Virtually all investors have been told when they were younger — or implicitly believe, or have been tacitly encouraged to do so by the cookie-cutter curriculums of the business schools they all attend — that the more they understand the world, the better their investment results. It makes sense, doesn’t it? The more information we acquire and evaluate, the “better informed” we become, the better our decisions. Accumulating information, becoming “better informed,” is certainly an advantage in numerous, if not most, fields.</p>\n<p>But not in the eld of counterintuitive world of investing, where accumulating information can hurt your investment results.</p>\n<p>In 1974, Paul Slovic — a world-class psychologist, and a peer of Nobel laureate Daniel Kahneman — decided to evaluate the effect of information on decision-making. This study should be taught at every business school in the country. Slovic gathered eight professional horse handicappers and announced, “I want to see how well you predict the winners of horse races.” Now, these handicappers were all seasoned professionals who made their livings solely on their gambling skills.</p>\n<p>Slovic told them the test would consist of predicting 40 horse races in four consecutive rounds. In the first round, each gambler would be given the five pieces of information he wanted on each horse, which would vary from handicapper to handicapper. One handicapper might want the years of experience the jockey had as one of his top five variables, while another might not care about that at all but want the fastest speed any given horse had achieved in the past year, or whatever.</p>\n<p>Finally, in addition to asking the handicappers to predict the winner of each race, he asked each one also to state how confident he was in his prediction. Now, as it turns out, there were an average of ten horses in each race, so we would expect by blind chance — random guessing — each handicapper would be right 10 percent of the time, and that their confidence with a blind guess to be 10 percent.</p>\n<p>So in round one, with just five pieces of information, the handicappers were 17 percent accurate, which is pretty good, 70 percent better than the 10 percent chance they started with when given zero pieces of information. And interestingly, their confidence was 19 percent — almost exactly as confident as they should have been. They were 17 percent accurate and 19 percent confident in their predictions.</p>\n<p>In round two, they were given ten pieces of information. In round three, 20 pieces of information. And in the fourth and final round, 40 pieces of information. That’s a whole lot more than the five pieces of information they started with. Surprisingly, their accuracy had flatlined at 17 percent; they were no more accurate with the additional 35 pieces of information. Unfortunately, their confidence nearly doubled — to 34 percent! So the additional information made them no more accurate but a whole lot more confident. Which would have led them to increase the size of their bets and lose money as a result.</p>\n<p>Beyond a certain minimum amount, additional information only feeds — leaving aside the considerable cost of and delay occasioned in acquiring it — what psychologists call “confirmation bias.” The information we gain that conflicts with our original assessment or conclusion, we conveniently ignore or dismiss, while the information that confirms our original decision makes us increasingly certain that our conclusion was correct.</p>\n<p>So, to return to investing, the second problem with trying to understand the world is that it is simply far too complex to grasp, and the more dogged our at- tempts to understand the world, the more we earnestly want to “explain” events and trends in it, the more we become attached to our resulting beliefs — which are always more or less mistaken — blinding us to the financial trends that are actually unfolding. Worse, we think we understand the world, giving investors a false sense of confidence, when in fact we always more or less misunderstand it.<br />\nYou hear it all the time from even the most seasoned investors and financial “experts” that this trend or that “doesn’t make sense.” “It doesn’t make sense that the dollar keeps going lower” or “it makes no sense that stocks keep going higher.” But what’s really going on when investors say that something makes no sense is that they have a dozen or whatever reasons why the trend should be moving in the opposite direction.. yet it keeps moving in the current direction. So they believe the trend makes no sense. But what makes no sense is their model of the world. That’s what doesn’t make sense. The world always makes sense.</p>\n<p>In fact, because financial trends involve human behavior and human beliefs on a global scale, the most powerful trends won’t make sense until it becomes too late to profit from them. By the time investors formulate an understanding that gives them the confidence to invest, the investment opportunity has already passed.</p>\n<p>So when I hear sophisticated investors or financial commentators say, for example, that it makes no sense how energy stocks keep going lower, I know that energy stocks have a lot lower to go. Because all those investors are on the wrong side of the trade, in denial, probably doubling down on their original decision to buy energy stocks. Eventually they will throw in the towel and have to sell those energy stocks, driving prices lower still.</p></blockquote>\n<p> </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, 22 Nov 2017 16:33: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n \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:\"HeroPress: Finding WordPress in Cameroon\";s:7:\"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=2286\";s:7:\"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:126:\"https://heropress.com/essays/finding-wordpress-cameroon/#utm_source=rss&utm_medium=rss&utm_campaign=finding-wordpress-cameroon\";s: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:5922:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/11/112217-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: The more I share knowledge with someone the more I gain in return.\" /><p>My name is Michaël Nde Tabefor, I reside in Cameroon. I grew up in the economic capital of the country surrounded by so much diversity and culture.</p>\n<p>Yet I was still very young when I developed an interest in technology, back in Primary school I had a PC at home I used to play around, most especially Spider Solitaire hahaha. Well that game sound crazy but it’s educative, it built up my reflex with the mouse and yeah it worth it. When I arrived in Secondary school I quickly picked up the subject.</p>\n<p>I began educating myself on the trend of Technology and how they work. I developed a great interest for organisations such as Google, what they doing for humanity not just about technology. So I understood that no matter the position I get, I must always contribute to Humanity by volunteering.</p>\n<p>When I got to the University back in 2014 as a Freshman, I enrolled into Software engineering program where I began excelling and widening my thinking and reflex, met with other enthusiasts of technology.</p>\n<h3>Taking Another Path</h3>\n<p>Unlike other students I decided to go in for an internship at my first year (am one of those who believe university is good but it contribute to just about 10 – 20% of what builds up skill, people must be passionate about what the do, that passion alone will get you have the skills and be able to learn more and more).</p>\n<p>On my first day of internship, my internship coordinator gave me a task to go and install WordPress on my computer and create with the use of an external template (not there default themes) the website of my university.</p>\n<blockquote><p>Let me make this point, I didn’t know about WordPress. Had no idea of what it’s meant for. Completely blank.</p></blockquote>\n<p>I went back to my university, I met one of my professors, explained it to him, he redirected me to a senior student who once did internship and had to use WordPress.</p>\n<p>I went home, got my environment set up and called my senior, She did the guiding all through the installation on phone, till installing the template, my curiosity did the rest of the job hahaha, end of story. The next day I went back to the office, my coordinator didn’t expect me that soon Lol.</p>\n<h3>Diving Deeper</h3>\n<p>So I worked on some tutorial on building themes and plugin from scratch from Lynda.com but I took a break from building cuz I didn’t have much skills in PHP, in first year we didn’t do web technologies, I began hacking on PHP on my own, basic’ly I learnt almost every skill on my own via research and practice.</p>\n<p>I worked on several sites that used WordPress and began installing for others. My coordinator told me it would be interesting to start a WordPress Community so others could benefit from it. Actually the more I share knowledge with someone I gain 100% in return too, it builds up my mastery and ability to debug and resolve issues.</p>\n<blockquote><p>I began our local community and everyday I kept understanding WordPress more and more.</p></blockquote>\n<p>After a couple of months I officially joined the WordPress Volunteer Community in doing more reach outs in (November 2015 – via Rocio Valdiva) and on April 15, 2017 I organized <a href=\"https://2017.buea.wordcamp.org/\">the very first WordCamp in the whole of Central Africa</a> that brought together over 240 persons. Complete gallery on <a href=\"https://www.flickr.com/photos/144827169@N08/\">Flickr</a>, Video on <a href=\"https://youtu.be/nnUgqhveB00\">YouTube</a>.</p>\n<p>After the WordCamp I later on built a Mobile Money Payment Gateway with a local Network Operator web payment API using WooCommerce.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Finding WordPress in Cameroon\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Finding%20WordPress%20in%20Cameroon&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Ffinding-wordpress-cameroon%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Finding WordPress in Cameroon\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Ffinding-wordpress-cameroon%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Ffinding-wordpress-cameroon%2F&title=Finding+WordPress+in+Cameroon\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Finding WordPress in Cameroon\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/finding-wordpress-cameroon/&media=https://heropress.com/wp-content/uploads/2018/11/112217-150x150.jpg&description=Finding WordPress in Cameroon\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Finding WordPress in Cameroon\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/finding-wordpress-cameroon/\" title=\"Finding WordPress in Cameroon\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/finding-wordpress-cameroon/\">Finding WordPress in Cameroon</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, 22 Nov 2017 15:45:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Michaël Nde Tabefor\";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:98:\"WPTavern: Envato Elements Adds Unlimited WordPress Theme and Plugin Downloads to Subscription Plan\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=76604\";s:7:\"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:109:\"https://wptavern.com/envato-elements-adds-unlimited-wordpress-theme-and-plugin-downloads-to-subscription-plan\";s: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:4096:\"<p>Envato has added <a href=\"https://envato.com/blog/announcing-wordpress-themes-on-envato-elements/\" rel=\"noopener\" target=\"_blank\">unlimited WordPress theme and plugin downloads</a> to its Elements digital assets subscription service. The company is including a curated collection of <a href=\"https://elements.envato.com/wordpress/themes/sort-by-latest\" rel=\"noopener\" target=\"_blank\">210 WordPress themes</a> and <a href=\"https://elements.envato.com/wordpress/plugins/sort-by-latest\" rel=\"noopener\" target=\"_blank\">100 plugins</a> along with 400,000 other design assets already offered through the service.</p>\n<p>Envato is the largest WordPress theme marketplace on the web with 39,102 themes and website templates for sale. Last year the company <a href=\"https://wptavern.com/envato-celebrates-10-years-in-business\" rel=\"noopener\" target=\"_blank\">celebrated 10 years in business</a> and reported that the community earned more than $40 million, with a significant portion of that revenue coming from WordPress products.</p>\n<p>The new “all you can eat” style package for WordPress themes on Envato Elements was introduced to boost the value of the service’s annual subscription plan and is not available to monthly subscribers. For $228/year, annual subscribers can change themes as often as they choose, which is the chief selling point of the new addition. However, the subscription service does not provide direct item support for the themes, as they are submitted by independent designers.</p>\n<p>Current Elements subscribers have the option to change their payment plans from monthly to annual to gain access to the unlimited WordPress products. Several disgruntled customers have taken to Twitter to express their dissatisfaction with the WordPress additions being withheld from existing monthly subscribers and perceive it to be heavy-handed a tactic for locking in more annual subscribers before raising the price.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Not cheeky ask at all, your roadmap did not say anything about this price change, but got people signed up at $19 per month with the understanding this was going to be an added edition. Shocking way to treat loyal customers. <a href=\"https://twitter.com/hashtag/moneyhungry?src=hash&ref_src=twsrc%5Etfw\">#moneyhungry</a></p>\n<p>— TVBanterUK <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f4ad.png\" alt=\"?\" class=\"wp-smiley\" /> (@TVBanterUK) <a href=\"https://twitter.com/TVBanterUK/status/930943546693226501?ref_src=twsrc%5Etfw\">November 15, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Why hold monthly subscribers ransom by only allowing annual subscribers access? Feels somewhat unfair to long term subs!</p>\n<p>— Paul Charlton (@ipixel_design) <a href=\"https://twitter.com/ipixel_design/status/931203052765433862?ref_src=twsrc%5Etfw\">November 16, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Yes we were on the understanding us early day loyal subscribers signed up would get what the roadmap said, it’s such a sneaky way to get people locked in to the annual plan which you will then increase in year 2, seen it all before.</p>\n<p>— TVBanterUK <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f4ad.png\" alt=\"?\" class=\"wp-smiley\" /> (@TVBanterUK) <a href=\"https://twitter.com/TVBanterUK/status/931097713579610112?ref_src=twsrc%5Etfw\">November 16, 2017</a></p></blockquote>\n<p></p>\n<p>An Envato support representative offered some background on the decision in response to monthly subscribers who do not appreciate being excluded from additions to the service.</p>\n<p>“We chose this pricing model because we think it creates the fairest platform for both our subscribers and our authors,” the representative said. “A huge amount of time and dedication goes into creating and maintaining WordPress themes and plugin so this allows us to help protect the earnings of the authors who provide our community with premium assets.”</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, 22 Nov 2017 04:01:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Matt: Tribe of Mentors\";s:7:\"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=47661\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://ma.tt/2017/11/tribe-of-mentors/\";s: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:1004:\"<p>Tim Ferriss’s new book <a href=\"https://tribeofmentors.com/\">Tribe of Mentors is out</a>. I have finished it already, and can say it’s really excellent and I even liked it more than Tools of Titans even though I’m not in this one. <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /> As I said in a message to Tim:</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Curious how Tribe of Mentors is different from Tools of Titans? Here\'s a text to me from Matt Mullenweg (<a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a>, CEO Automattic)… <a href=\"https://t.co/D9kvA2rFFC\">pic.twitter.com/D9kvA2rFFC</a></p>\n<p>— Tim Ferriss (@tferriss) <a href=\"https://twitter.com/tferriss/status/919729467244863488?ref_src=twsrc%5Etfw\">October 16, 2017</a></p></blockquote>\n<p></p>\n<p>I learned a lot from it, took a ton of notes to follow up on, and wrote down about twenty more books I have to read.</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, 21 Nov 2017 23: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: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: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:98:\"WPTavern: Tailor Page Builder Plugin Discontinued, Owners Cite Funding, Gutenberg, and Competition\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=76599\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://wptavern.com/tailor-page-builder-plugin-discontinued-owners-cite-funding-gutenberg-and-competition\";s: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:6385:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/11/tailor-e1510853958841.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://www.enclavely.io/\" rel=\"noopener\" target=\"_blank\">Enclavely, Inc.</a>, the owners of the <a href=\"https://wordpress.org/plugins/tailor/\" rel=\"noopener\" target=\"_blank\">Tailor Page Builder plugin</a>, have announced that they will be <a href=\"https://www.tailorwp.com/discontinued/\" rel=\"noopener\" target=\"_blank\">discontinuing its development</a> effective immediately.</p>\n<p><a href=\"http://andrewworsfold.com/\" rel=\"noopener\" target=\"_blank\">Andrew Worsfold</a>, the original developer, launched Tailor in April 2016 and the plugin received an enthusiastic reception from the WordPress community. After performing <a href=\"https://wptavern.com/pippin-williamson-shakes-up-page-builder-plugins-with-critical-review\" rel=\"noopener\" target=\"_blank\">a critical review of the major page builders</a> available to users in September 2016, Pippin Williamson found only three that he could happily recommend to his customers: Tailor, Pootle Page Builder, and Beaver Builder. This recommendation was based primarily on code quality, usability, and compatibility with other plugins.</p>\n<p>The plugin <a href=\"https://www.tailorwp.com/tailor-page-builder-under-new-management/\" rel=\"noopener\" target=\"_blank\">came under new management in July 2017</a> after the original developer no longer had enough time to dedicate to the project. Worsfold sold it to Enclavely, whose owners were early and enthusiastic users of the plugin, for what he said was “a nominal amount.” Three months later, the new owners cite the cost of keeping up with Gutenberg and other competitors as the primary reason for <a href=\"https://www.tailorwp.com/discontinued/\" rel=\"noopener\" target=\"_blank\">discontinuing its development</a>:</p>\n<blockquote><p>Gutenberg is going to be bundled with WordPress itself. That’s definitely going to give a tough time to all 3rd party page builders and even that is not the case there are some really big players around like Elementor, Divi, Beaver Builder, and others which are going to be hard for us to compete with, being a completely free project and providing almost all the great features in free version…</p>\n<p>So the main reason for us to discontinue Tailor is due to finances, which Tailor needs to keep on its development and marketing to compete with all the big players and especially Gutenberg.</p></blockquote>\n<p>This instance seems to be more of a case of the new management running out of funds, rather than Gutenberg preemptively killing off a page builder. Enclavely was no longer willing to invest in developing a product that could compete against some of the more widely used page builders.</p>\n<p>“Tailor needs a lot of effort and money, which was much more than we estimated,” an Enclavely representative said when I contacted the company. “And even if we continue to put effort and money in this project, we all know that Gutenberg is going to smash this space soon and we won’t be able to survive, and so will be the case with some other page builders. This is why we decided to end this now.”</p>\n<p>Tailor currently has more than 3,000 active installations, according to WordPress.org. Fans of the plugin commented on the <a href=\"https://medium.com/tailor-page-builder/end-of-tailor-rise-of-gutenberg-6b4c59431f99\" rel=\"noopener\" target=\"_blank\">announcement</a>, asking if the original developer might be able to pick the project back up again.</p>\n<p>When I contacted the company, they said the original developer was no longer involved with the project.</p>\n<p>“The original developer has parted ways since the acquisition,” an Enclavely representative said. “He was involved with some stuff in the start but not that much, thus the decision is mainly taken by us based on the issues we were facing in maintaining this project.”</p>\n<p>However, Worsfold’s account of his involvement with Tailor following the acquisition differs greatly from Enclavely’s report.</p>\n<p>“I handed over control of the project in July, although all releases since then were also written by me and deployed on their behalf,” Worsfold said. “Given that I haven’t been asked to help with anything recently, and there have been no further releases, it looks like development has already ended.”</p>\n<p>The plugin is <a href=\"https://wordpress.org/plugins/tailor/\" rel=\"noopener\" target=\"_blank\">available free on WordPress.org</a> and licensed under the GPL, so anyone who wants to can fork it. Worsfold doesn’t anticipate having the time to maintain the project himself and said he was under the impression that Enclavely is attempting to sell it.</p>\n<p>“I made the decision to hand over control of Tailor as work and other commitments meant that I couldn’t dedicate enough time to the project,” Worsfold said. “I had hoped that the new team would continue development, provide support, and ensure the needs of existing users were met. However after just three months they’ve decided to give up. That’s obviously very disappointing.”</p>\n<p>Worsfold said that when he sold it to them, it was with the understanding that they would continue to develop and maintain it. He doesn’t anticipate being able to re-adopt it due to a lack of time to dedicate to the project.</p>\n<p>“I’m in much the same situation I was in before and it seems they are wanting to on-sell it themselves, so I can’t imagine I will be able to readopt it,” Worsfold said. “I have mixed feelings about the whole situation. Ultimately I see Gutenberg doing most of what page builders currently do, but in a better, more standardized, way. Hopefully, whatever’s left (custom blocks, styles, functionality etc.) will build on the framework and serve to reduce the amount of fragmentation in the ecosystem.”</p>\n<p>Worsfold is still limited on free time but said he would be willing to contribute to the project if someone decided to fork it and keep it alive.</p>\n<p>“It would be a shame to see something I built, and that people use, simply die,” he said. “Hopefully someone will either fork it or take over development.”</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, 21 Nov 2017 00:15:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s: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:105:\"WPTavern: GitHub Launches Security Alerts for JavaScript and Ruby Projects, Python Support Coming in 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=76663\";s:7:\"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:115:\"https://wptavern.com/github-launches-security-alerts-for-javascript-and-ruby-projects-python-support-coming-in-2018\";s: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:1873:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2015/04/github-octocat.jpg?ssl=1\"><img /></a></p>\n<p>Last month <a href=\"https://wptavern.com/github-launches-new-dependency-graph-feature-with-security-alerts-coming-soon\" rel=\"noopener\" target=\"_blank\">GitHub launched its Dependency Graph feature</a> that tracks a repository’s dependencies and sub-dependencies under the Insights tab. This week the company rolled out an expansion of the feature and will now <a href=\"https://github.com/blog/2470-introducing-security-alerts-on-github\" rel=\"noopener\" target=\"_blank\">identify known vulnerabilities and send notifications</a> with suggested fixes from the GitHub community.</p>\n<p>Dependency graphs and security alerts are automatically enabled for public repositories, provided the repository owner has defined the dependencies in <a href=\"https://help.github.com/articles/listing-the-packages-that-a-repository-depends-on\" rel=\"noopener\" target=\"_blank\">one of the supported manifest file types</a>, such as package.json or Gemfile. (Private repo owners have to opt in.) The vulnerability alerts are not public – they will only be shown to those who have been granted access to the vulnerability alerts.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/11/github-dependency-vulnerability.png?ssl=1\"><img /></a></p>\n<p>GitHub uses data from the <a href=\"https://nvd.nist.gov/\" rel=\"noopener\" target=\"_blank\">National Vulnerability Database</a> to alert repository owners about publicly disclosed vulnerabilities that have <a href=\"https://cve.mitre.org/\" rel=\"noopener\" target=\"_blank\">CVE IDs</a>. Vulnerability detection is currently limited to JavaScript and Ruby projects but Python support is next on the roadmap for 2018. PHP, which is a bet less widely used in projects on GitHub, is likely further down the list.</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:\"Sat, 18 Nov 2017 00:25:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:60:\"WPTavern: WordCamp Europe 2018 Speaker Applications Now Open\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=76608\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wptavern.com/wordcamp-europe-2018-speaker-applications-now-open\";s: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:3019:\"<p>WordCamp Europe 2018 has opened the <a href=\"https://2018.europe.wordcamp.org/2017/11/15/are-you-ready-to-speak-at-the-largest-wordpress-event-in-europe/\" rel=\"noopener\" target=\"_blank\">call for speakers</a> and will be accepting applications through January 15. The organizing team recommends that speakers already have some experience ahead of applying to speak at the largest WordPress event in Europe, but a dedicated Content Team will also be available with resources for helping speakers create a successful presentation.</p>\n<p>The 2017 event received a total of 235 speaker applications and 43 were selected for the main event. Organizers plan to stick to the same format and are calling for 40-minute talks (30 min + 10 min Q&A) as well as 10-minute lightning talks. This year the event will experiment with hosting community workshops and organizers plan to open a separate call for workshop leaders next week.</p>\n<p>The Content Team put out a specific call for more technical talks at the 2018 event after a <a href=\"https://2018.europe.wordcamp.org/2017/11/10/how-your-feedback-will-help-us-shape-the-next-wordcamp-europe/\" rel=\"noopener\" target=\"_blank\">community survey</a> showed that more developer-oriented talks are what the audience is looking for. More than half of those surveyed identified themselves as developers (54%), with business owners (12%) the next largest demographic.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/11/Screen-Shot-2017-11-17-at-11.44.21-AM.png?ssl=1\"><img /></a></p>\n<p>The survey also showed that 37% of respondents have been working with WordPress for more than 9 years and roughly 90% of attendees have been using WordPress for 4-9+ years. Advanced development was the most highly requested topic for presentations, selected by 53% of respondents, followed by design (45%).</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/11/Screen-Shot-2017-11-17-at-11.54.06-AM.png?ssl=1\"><img /></a></p>\n<p>The survey results offer some insight about which topics might fare well at WCEU in 2018. Organizers have also compiled an extensive <a href=\"https://apply.wp-europe.org/ideas\" rel=\"noopener\" target=\"_blank\">list of ideas and topics</a> to inspire speaker applicants.</p>\n<p>A batch of 1,000 Early Bird tickets recently <a href=\"https://wptavern.com/wordcamp-europe-2018-early-bird-tickets-now-on-sale\" rel=\"noopener\" target=\"_blank\">went on sale</a> and there are still 680 available. Attendees who purchase a ticket before December 31, 2017, will receive a limited-edition swag item. The organizing team plans to release tickets in batches, as in previous years, but will not be setting specific expectations on sales this year, according to PR representative Letizia Barbi. The Sava Center venue, an international congress and cultural center, is the largest audience hall in Serbia and will accommodate all who want to attend WCEU 2018. Barbi said it should also scale down nicely in case of a smaller turn out.</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, 17 Nov 2017 19:19: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: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: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:99:\"WPTavern: WooCommerce Explores the Possibilities and Challenges for E-Commerce in the Gutenberg 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:29:\"https://wptavern.com/?p=76597\";s:7:\"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:110:\"https://wptavern.com/woocommerce-explores-the-possibilities-and-challenges-for-e-commerce-in-the-gutenberg-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:4350:\"<p>The next release of WordPress (5.0) will introduce the new Gutenberg editor and contributors plan to keep it rolling towards the eventual goal of providing a full site building experience. Nearly every WordPress theme and plugin developer will be impacted by the change and many are starting to look ahead to how their products may interact with Gutenberg in the future.</p>\n<p>What will e-commerce look like in the Gutenberg era? The WooCommerce design team has published <a href=\"https://woocommerce.com/2017/11/woocommerce-gutenberg/\" rel=\"noopener\" target=\"_blank\">a preview of some of their “Wootenberg” experiments</a>, along with a gif demonstrating what a block-based editing experience may look like in the context of working with products. The team sees a lot of potential for putting the power of visual product editing into the hands of users.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/11/wootenberg.gif?ssl=1\"><img /></a></p>\n<p>The example shows a quick exploration of page layout with product blocks and the team also posted an idea of what basic product authoring may look like with a predefined product template that includes the featured image, product title, description, and price as new Gutenberg blocks. But will it be possible to have complex product creation fit into a block-based editor? The WooCommerce team admits in the post that they don’t yet know how this will work.</p>\n<p>“One thing that isn’t yet 100% clear is how complex plugins like WooCommerce will work with Gutenberg,” Automattic designer/developer James Koster said. “A simple product with a description, a price, and a category is one thing. But a product with variations, for each of which you want to upload a different image, and need to manage/track stock is quite another. Imagining a WYSIWYG editing experience for that kind of data is a little fuzzier.”</p>\n<p>Koster referenced Gutenberg’s newly merged support for meta boxes, the first step in making product authoring possible. However, the Gutenberg team is still experimenting and isn’t yet set on a solution for implementing meta boxes.</p>\n<p>“How this works with WooCommerce in the long term is unclear,” Koster said. “But you can rest assured it’s something we’ll be dedicating more time to investigating as WordPress approaches the 5.0 release.” Koster concludes the post by asking readers if visual product editing, with the flexibility to rearrange product/shop layouts, is something that interests them.</p>\n<p>“If there’s one thing that WooCommerce should perhaps learn from Shopify’s rapid growth, it’s that many ‘would-be’ shop owners don’t care to spend hours upon hours tweaking the layout of their shop, and that pre-built easy-to-use software that looks good and feels good, but can still be extended in complex ways, is what attracts many users,” Jesse Nickles commented on the post. “While this may be the underlying goal of Gutenberg, it perhaps doesn’t crossover clearly to the e-commerce world.”</p>\n<p>Koster said he agrees that users don’t always need visual editing experiences and that simple things like price changes should be quick and painless.</p>\n<p>“How we present data-driven editing alongside the Gutenberg experience will ultimately determine the success of the project from a WooCommerce perspective,” Koster said.</p>\n<p>Support for meta boxes is one the most challenging aspects of the Gutenberg project that the team has yet to solve. Exploring the possibilities of flexible page layouts for products is exciting, but even the WooCommerce team is left wondering how this is all going to work with more complex CMS data. Smaller product teams without the collective knowledge and resources of WooCommerce may have a more difficult time finding the bandwidth to experiment and rebuild their products in time for WordPress 5.0.</p>\n<p>The WooCommerce team invites any users interested in Gutenberg-related UX changes to join the plugin’s <a href=\"https://woocommerce.com/design-feedback/\" rel=\"noopener\" target=\"_blank\">design feedback group</a>, as they continue to explore how the new editor will work in the context of complex e-commerce product creation and display.</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, 17 Nov 2017 04:30:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:113:\"WPTavern: GDPR for WordPress Project Gains Momentum, Proposal Receives Positive Response from Developer Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=76484\";s:7:\"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:123:\"https://wptavern.com/gdpr-for-wordpress-project-gains-momentum-proposal-receives-positive-response-from-developer-community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5743:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/10/WP-GDPR-Compliance.png?ssl=1\"><img /></a></p>\n<p>Community feedback on the new <a href=\"https://www.gdprwp.com\" rel=\"noopener\" target=\"_blank\">GDPR for WordPress project</a>, created by WordCamp Denmark organizer Kåre Mulvad Steffensen and WP Pusher creator Peter Suhm, has started rolling in after the two launched a survey for developers. The project aims to provide an industry standard for getting plugins compliant with EU General Data Protection Regulation (GDPR) legislation ahead of the May 2018 deadline.</p>\n<p>Steffensen <a href=\"https://www.gdprwp.com/status-the-gdpr-interface/\" rel=\"noopener\" target=\"_blank\">published</a> some initial results of the survey after having it open for two weeks. So far, 90% of respondents have answered that they would consider implementing a GDPR “file” types solution for their plugins if a standard was available. Only 4.9% of the 40 developers who responded said they have a plan for making their plugins GDPR compliant and 43.9% said they do not currently have a plan. The remaining 24.4% were developers of plugins that do not handle personal data.</p>\n<p>“Our talks with Paul Sieminski from <a href=\"https://automattic.com/\" rel=\"noopener\" target=\"_blank\">Automattic</a> and Dovy Paukstys from the <a href=\"https://reduxframework.com/\" rel=\"noopener\" target=\"_blank\">Redux options framework</a> have reassured us that we still do have a need for a GDPR structure which can help the community establish a basis for handling GDPR compliance,” Steffensen said.</p>\n<p>Steffensen and Suhm created a <a href=\"https://github.com/GDPRWP/standard\" rel=\"noopener\" target=\"_blank\">GitHub repository</a> where they have outlined their proposal for a PHP object interface that plugin developers could add to their codebases as a standard way of indicating how their plugins work with personal data.</p>\n<p>“The nature of such an interface puts some responsibility in the hands of the developer to identify any place personal data is stored,” Steffensen said. “What kind of data it is, and for what purpose as well as how it should be handled upon deletion. The Interface approach will allow a community-wide adoption, without setting limitations on how plugin developers choose to work with their data – something we obviously can’t control.”</p>\n<p>The idea is that plugin developers could then build other tools on top of this framework using specific functions that correspond to GDPR requirements, such as functions that allow users to access their data, implement the right to be forgotten, report data breaches, and delete and anonymize data. Developers could also build plugins that offer a plain language description of what personal data a plugin collects and how it is handled.</p>\n<p>In speaking with Dovy Paukstys on how this could work with Redux, Steffensen said the options framework may be able to facilitate compliance for the 500,000+ sites where it is active and the developers who use it to build plugins.</p>\n<p>“Dovy from Redux has a coder’s view on this,” Steffensen said. “Our object interface (PHP) would be something his framework could provide an easy way to utilize for the many developers using Redux. The redux users (developers) could essentially do this themselves also, but since Redux is a framework it makes sense to see if they can build something that will make it near instant for developers to provide compliance for the GDPR.”</p>\n<p>Steffensen said the team is aware that the first version of the interface will not render plugins, and by extension their sites, instantly compliant. The interface they are proposing is not one that could be held legally accountable, but the goal is to make it possible for developers to build accountable systems on top of it.</p>\n<h3>GDPR for WordPress Project Founders Consider Accepting Sponsorships</h3>\n<p>With 189 <a href=\"http://www.gdprcountdownclock.com/\" rel=\"noopener\" target=\"_blank\">days remaining before the GDPR goes into effect</a>, the team will need to work quickly to make a solution available with enough time for interested developers to incorporate it into their plugins. They have not yet set up a way to accept donations but are considering it.</p>\n<p>“We aren’t actively seeking funding, but would love any funds that would help us allocate the time needed to keep the momentum going,” Steffensen said. “We’re lucky that the <a href=\"https://wptavern.com/gdpr-for-wordpress-project-seeks-to-provide-a-standard-for-plugin-compliance\" rel=\"noopener\" target=\"_blank\">WP Tavern article</a> brought attention to our GDPR approach and have caught the eyes of some of the key players in the ecosystem. One such company is Mailpoet that was the first to raise the idea of sponsoring our work.”</p>\n<p>Steffensen works at <a href=\"http://Peytz.dk\" rel=\"noopener\" target=\"_blank\">Peytz.dk</a>, a Danish WordPress agency that wants to support the community and has allocated some of his time to work on the project. He said any funding/donations they receive would be spent on pushing the roadmap forward, investing time in coding, and possibly seeking further advice from people who they cannot expect to be in it for free.</p>\n<p>In addition to looking at ways to receive donations, the team plans to keep the survey open for developers for awhile longer to try to make more connections in the community. Steffensen said they hope respondents will help them gain insight on the developer community’s readiness and also enable them to reach out to any plugin owners who could play a key role in a wider adoption.</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, 16 Nov 2017 20: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: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 Jan 2018 23:57:38 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Thu, 04 Jan 2018 23:45:31 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130911090210\";}','no'),(13722,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1515153458','no'),(13723,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1515110258','no'),(13724,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1515153458','no'),(13725,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2018/01/the-month-in-wordpress-december-2017/\'>The Month in WordPress: December 2017</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://ma.tt/2018/01/morten-on-gutenberg/\'>Matt: Morten on Gutenberg</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wpweekly-episode-300-interview-with-matt-gutenbeard-mullenweg\'>WPTavern: WPWeekly Episode 300 – Interview with Matt ‘Gutenbeard’ Mullenweg</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/a-collection-of-gutenberg-conversations-resources-and-videos\'>WPTavern: A Collection of Gutenberg Conversations, Resources, and Videos</a></li></ul></div>','no'),(13849,'_transient_timeout_jetpack_jitm_a81ba62423c4f7bdc4a634921fd0bb8','1515114576','no'),(13850,'_transient_jetpack_jitm_a81ba62423c4f7bdc4a634921fd0bb8','a:1:{s:18:\"last_response_time\";i:1515114276;}','no'),(13861,'_transient_timeout_jetpack_jitm_a3fea279a4679751a8ee676a3cc7bc9','1515114631','no'),(13862,'_transient_jetpack_jitm_a3fea279a4679751a8ee676a3cc7bc9','a:1:{s:18:\"last_response_time\";i:1515114331;}','no'),(13890,'_transient_timeout_jetpack_jitm_494597176c361367a22375243d4c3da','1515115486','no'),(13891,'_transient_jetpack_jitm_494597176c361367a22375243d4c3da','a:1:{s:18:\"last_response_time\";i:1515115186;}','no'),(13894,'_transient_timeout_wpcom_subscribers_total','1515118815','no'),(13895,'_transient_wpcom_subscribers_total','a:2:{s:6:\"status\";s:7:\"success\";s:5:\"value\";i:0;}','no'),(13896,'_transient_timeout_epsilon_plugin_information_transient_kiwi-social-share','1515117016','no'),(13897,'_transient_epsilon_plugin_information_transient_kiwi-social-share','O:8:\"stdClass\":18:{s:4:\"name\";s:64:\"Kiwi Social Share – Social Media Share Buttons & Icons\";s:4:\"slug\";s:17:\"kiwi-social-share\";s:7:\"version\";s:5:\"2.0.5\";s:6:\"author\";s:54:\"<a href=\"https://www.machothemes.com\">Macho Themes</a>\";s:14:\"author_profile\";s:47:\"https://profiles.wordpress.org/cristianraiber-1\";s:12:\"contributors\";a:3:{s:11:\"machothemes\";s:42:\"https://profiles.wordpress.org/machothemes\";s:16:\"cristianraiber-1\";s:47:\"https://profiles.wordpress.org/cristianraiber-1\";s:8:\"silkalns\";s:39:\"https://profiles.wordpress.org/silkalns\";}s:12:\"requires_php\";b:0;s:7:\"ratings\";a:5:{i:5;i:5;i:4;i:0;i:3;i:1;i:2;i:0;i:1;i:0;}s:11:\"num_ratings\";i:6;s:15:\"support_threads\";i:5;s:24:\"support_threads_resolved\";i:5;s:8:\"homepage\";s:45:\"https://www.machothemes.com/kiwi-social-share\";s:8:\"sections\";a:5:{s:11:\"description\";s:1559:\"<p>This is by far the best & easiest to use WordPress social media share plugin. A WordPress share plugin with custom icons built-in.</p>\n<h4>Plugin Options</h4>\n<ul>\n<li>Social networks available: Facebook, Twitter, LinkedIN, Reddit, Pinterest, Google Plus & Email</li>\n<li>Turn on/off each of them, individually.</li>\n<li>Possibility of re-arranging icon position on the share bar.</li>\n<li>Great UI with intuitive & simple options.</li>\n<li>Built for the regular user.</li>\n<li>Four different Skins.</li>\n<li>The default, square style.</li>\n<li>The more futuristic approach, shift style.</li>\n<li>The friendly approach, pill (rounded corners) style.</li>\n<li>The eye-catching approach, leaf style (like a leaf in the wind).</li>\n<li>Display social icons: before content, after content or both.</li>\n<li>Display social icons on: posts or pages.</li>\n<li>Amazing loading speed.</li>\n</ul>\n<h4>WordPress Social Media Widget (for website)</h4>\n<p>A WordPress Social Media Widget solution is coming soon, stay tuned.</p>\n<p><strong>About us:</strong><br />\nWe are a young team of WordPress aficionados who love building WordPress plugins & <a href=\"https://www.machothemes.com/\" title=\"Premium WordPress themes\" rel=\"nofollow\">Premium WordPress themes</a> over on our theme shop. We’re also blogging and wish to help our users find the <a href=\"https://www.machothemes.com/blog/best-cheap-wordpress-hosting/\" title=\"Best Cheap WordPress Hosting\" rel=\"nofollow\">Best Cheap WordPress Hosting</a> available on the market. Check out our blog.</p>\n\";s:12:\"installation\";s:328:\"<p>This section describes how to install the plugin and get it working.</p>\n<ol>\n<li>Upload the whole contents of the folder <code>kiwi-social-share</code> to the <code>/wp-content/plugins/</code> directory</li>\n<li>Activate the plugin through the ‘Plugins’ menu in WordPress</li>\n<li>Enjoy using it ?</li>\n</ol>\n\";s:3:\"faq\";s:514:\"<p>Available filters (used for frontend rendering)<br />\nArticle Bar Filters<br />\n kiwi_article_bar_list_custom_class<br />\n kiwi_before_article_bar<br />\n kiwi_before_first_article_bar_item<br />\n kiwi_after_last_article_bar_item<br />\n kiwi_after_article_bar</p>\n<p>Floating Bar Filters<br />\n kiwi_floating_bar_list_custom_class<br />\n kiwi_before_floating_bar<br />\n kiwi_before_first_floating_bar_item<br />\n kiwi_after_last_floating_bar_item<br />\n kiwi_after_floating_bar</p>\n\";s:9:\"changelog\";s:1928:\"<h4>2.0.5</h4>\n<ul>\n<li>frontend meta tag was not generating properly</li>\n</ul>\n<h4>2.0.4</h4>\n<ul>\n<li>Removed box shadow in the admin window</li>\n<li>Changed how URLS are encoded for text</li>\n<li>WhatsApp icon visibility is now handled with CSS ( wp_is_mobile function would not work on websites with cache )</li>\n</ul>\n<h4>2.0.3</h4>\n<ul>\n<li>Saving settings would cause errors on some servers</li>\n</ul>\n<h4>2.0.2</h4>\n<ul>\n<li>Ajax request failed on license activation</li>\n</ul>\n<h4>2.0.1</h4>\n<ul>\n<li>Minor bugs</li>\n</ul>\n<h4>2.0.0</h4>\n<ul>\n<li>Major upgrade</li>\n</ul>\n<h4>1.0.4</h4>\n<ul>\n<li>When checked, the Google+ icon wasn’t showing up. Fix provided via GitHub by @smartinsalmeida</li>\n</ul>\n<h4>1.0.3</h4>\n<ul>\n<li>Increased the weight on the front-end selectors so that margin & padding are harder to get overwritten by themes. Feels like some themes don’t want to play nice</li>\n</ul>\n<h4>1.0.2</h4>\n<ul>\n<li>Fixed a small bug where content wasn’t being returned if kiwi was turned off on posts and pages.</li>\n<li>Added share bar margins top/bottom.</li>\n<li>Fixed a small rendering bug in the back-end for images.</li>\n<li>Fixed a small bug where content wasn’t being returned on !is_singular() pages (archives)</li>\n</ul>\n<h4>1.0.1</h4>\n<ul>\n<li>Replaced Kiwi Logo with Dashicons icon</li>\n<li>Fixed a small bug with the notifications bar overlapping the form<br />\nbadge</li>\n<li>Enhanced the way we control sortables. When you disable a radio<br />\nwithin a sortable, that sortable gets it’s opacity lowered.</li>\n<li>Properly formatted JS code with PHPStorm formatting.</li>\n<li>Small assets/back-end/images/ re-organization. Now, social icons have<br />\nbeen renamed and moved into their own folder.</li>\n<li>Slightly re-worked the sortable/draggable field to support icons. No<br />\nmore CSS background images</li>\n</ul>\n<h4>1.0.0</h4>\n<ul>\n<li>Initial release</li>\n</ul>\n\";s:11:\"screenshots\";s:477:\"<ol><li><a href=\"https://ps.w.org/kiwi-social-share/assets/screenshot-1.png?rev=1650215\"><img src=\"https://ps.w.org/kiwi-social-share/assets/screenshot-1.png?rev=1650215\" alt=\"Screenshot of the back-end User Interface. All options are displayed above the fold (no scrolling, no fiddling around). Really easy to use.\"></a><p>Screenshot of the back-end User Interface. All options are displayed above the fold (no scrolling, no fiddling around). Really easy to use.</p></li></ol>\";}s:17:\"short_description\";s:135:\"This is by far the best free WordPress share plugin. It is simple yet does exactly what it should with plenty of customisation options.\";s:13:\"download_link\";s:66:\"https://downloads.wordpress.org/plugin/kiwi-social-share.2.0.5.zip\";s:11:\"screenshots\";a:1:{i:1;a:2:{s:3:\"src\";s:70:\"https://ps.w.org/kiwi-social-share/assets/screenshot-1.png?rev=1650215\";s:7:\"caption\";s:139:\"Screenshot of the back-end User Interface. All options are displayed above the fold (no scrolling, no fiddling around). Really easy to use.\";}}s:8:\"versions\";a:5:{s:5:\"2.0.0\";s:66:\"https://downloads.wordpress.org/plugin/kiwi-social-share.2.0.0.zip\";s:5:\"2.0.3\";s:66:\"https://downloads.wordpress.org/plugin/kiwi-social-share.2.0.3.zip\";s:5:\"2.0.4\";s:66:\"https://downloads.wordpress.org/plugin/kiwi-social-share.2.0.4.zip\";s:5:\"2.0.5\";s:66:\"https://downloads.wordpress.org/plugin/kiwi-social-share.2.0.5.zip\";s:5:\"trunk\";s:60:\"https://downloads.wordpress.org/plugin/kiwi-social-share.zip\";}s:5:\"icons\";a:2:{s:2:\"1x\";s:70:\"https://ps.w.org/kiwi-social-share/assets/icon-256x256.png?rev=1445882\";s:2:\"2x\";s:70:\"https://ps.w.org/kiwi-social-share/assets/icon-256x256.png?rev=1445882\";}}','no'),(13898,'_transient_timeout_epsilon_plugin_information_transient_contact-form-7','1515117016','no'),(13899,'_transient_epsilon_plugin_information_transient_contact-form-7','O:8:\"stdClass\":18:{s:4:\"name\";s:14:\"Contact Form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:7:\"version\";s:5:\"4.9.2\";s:6:\"author\";s:62:\"<a href=\"https://ideasilo.wordpress.com/\">Takayuki Miyoshi</a>\";s:14:\"author_profile\";s:43:\"https://profiles.wordpress.org/takayukister\";s:12:\"contributors\";a:1:{s:12:\"takayukister\";s:43:\"https://profiles.wordpress.org/takayukister\";}s:12:\"requires_php\";b:0;s:7:\"ratings\";a:5:{i:5;i:1168;i:4;i:112;i:3;i:32;i:2;i:32;i:1;i:110;}s:11:\"num_ratings\";i:1454;s:15:\"support_threads\";i:467;s:24:\"support_threads_resolved\";i:143;s:8:\"homepage\";s:25:\"https://contactform7.com/\";s:8:\"sections\";a:5:{s:11:\"description\";s:2058:\"<p>Contact Form 7 can manage multiple contact forms, plus you can customize the form and the mail contents flexibly with simple markup. The form supports Ajax-powered submitting, CAPTCHA, Akismet spam filtering and so on.</p>\n<h4>Docs & Support</h4>\n<p>You can find <a href=\"https://contactform7.com/docs/\" rel=\"nofollow\">docs</a>, <a href=\"https://contactform7.com/faq/\" rel=\"nofollow\">FAQ</a> and more detailed information about Contact Form 7 on <a href=\"https://contactform7.com/\" rel=\"nofollow\">contactform7.com</a>. If you were unable to find the answer to your question on the FAQ or in any of the documentation, you should check the <a href=\"https://wordpress.org/support/plugin/contact-form-7/\" rel=\"nofollow\">support forum</a> on WordPress.org. If you can’t locate any topics that pertain to your particular issue, post a new topic for it.</p>\n<h4>Contact Form 7 Needs Your Support</h4>\n<p>It is hard to continue development and support for this free plugin without contributions from users like you. If you enjoy using Contact Form 7 and find it useful, please consider <a href=\"https://contactform7.com/donate/\" rel=\"nofollow\"><strong>making a donation</strong></a>. Your donation will help encourage and support the plugin’s continued development and better user support.</p>\n<h4>Recommended Plugins</h4>\n<p>The following plugins are recommended for Contact Form 7 users:</p>\n<ul>\n<li><a href=\"https://wordpress.org/plugins/flamingo/\">Flamingo</a> by Takayuki Miyoshi – With Flamingo, you can save submitted messages via contact forms in the database.</li>\n<li><a href=\"https://wordpress.org/plugins/bogo/\">Bogo</a> by Takayuki Miyoshi – Bogo is a straight-forward multilingual plugin that doesn’t cause headaches.</li>\n</ul>\n<h4>Translations</h4>\n<p>You can <a href=\"https://contactform7.com/translating-contact-form-7/\" rel=\"nofollow\">translate Contact Form 7</a> on <a href=\"https://translate.wordpress.org/projects/wp-plugins/contact-form-7\" rel=\"nofollow\"><strong>translate.wordpress.org</strong></a>.</p>\n\";s:12:\"installation\";s:414:\"<ol>\n<li>Upload the entire <code>contact-form-7</code> folder to the <code>/wp-content/plugins/</code> directory.</li>\n<li>Activate the plugin through the ‘Plugins’ menu in WordPress.</li>\n</ol>\n<p>You will find ‘Contact’ menu in your WordPress admin panel.</p>\n<p>For basic usage, you can also have a look at the <a href=\"https://contactform7.com/\" rel=\"nofollow\">plugin web site</a>.</p>\n\";s:3:\"faq\";s:902:\"<p>Do you have questions or issues with Contact Form 7? Use these support channels appropriately.</p>\n<ol>\n<li><a href=\"https://contactform7.com/docs/\" rel=\"nofollow\">Docs</a></li>\n<li><a href=\"https://contactform7.com/faq/\" rel=\"nofollow\">FAQ</a></li>\n<li><a href=\"https://wordpress.org/support/plugin/contact-form-7/\" rel=\"nofollow\">Support Forum</a></li>\n</ol>\n<p><a href=\"https://contactform7.com/support/\" rel=\"nofollow\">Support</a></p>\n\n<h4>Installation Instructions</h4>\n<p>\n<ol>\n<li>Upload the entire <code>contact-form-7</code> folder to the <code>/wp-content/plugins/</code> directory.</li>\n<li>Activate the plugin through the ‘Plugins’ menu in WordPress.</li>\n</ol>\n<p>You will find ‘Contact’ menu in your WordPress admin panel.</p>\n<p>For basic usage, you can also have a look at the <a href=\"https://contactform7.com/\" rel=\"nofollow\">plugin web site</a>.</p>\n</p>\n\n\";s:9:\"changelog\";s:2920:\"<p>For more information, see <a href=\"https://contactform7.com/category/releases/\" rel=\"nofollow\">Releases</a>.</p>\n<h4>4.9.2</h4>\n<ul>\n<li>Remove improper uses of esc_sql().</li>\n<li>Fix the refill REST-API request so that a nonce is set when available.</li>\n<li>Give more contrast to unused mail-tags in the Mail tab panel to make them easier to recognize.</li>\n<li>Undo the previous change of HTTP status code for the REST-API response.</li>\n</ul>\n<h4>4.9.1</h4>\n<ul>\n<li>Code using create_function() has been removed to avoid security risks and warnings given when using with PHP 7.2+.</li>\n<li>Display the notice of config validation again to encourage admins to apply some important validation items recently added.</li>\n<li>REST API endpoint returns more specific HTTP status code 409 instead of 400.</li>\n<li>Fixed appearance of configuration error signs in the Additional Settings tab.</li>\n</ul>\n<h4>4.9</h4>\n<ul>\n<li>Supports subscribers_only setting</li>\n<li>Changes the default value of WPCF7_VERIFY_NONCE to false</li>\n<li>WPCF7_FormTagsManager::collect_tag_types() supports invert option</li>\n<li>New filter hooks: wpcf7_verify_nonce, wpcf7_subscribers_only_notice, wpcf7_remote_ip_addr, and wpcf7_submission_is_blacklisted</li>\n<li>Fixed: Form-tag’s tabindex option did not accept 0 or negative integer values</li>\n<li>Shows a validation error when no option in a radio buttons group is checked</li>\n<li>Config validator: Adds a validation rule against the use of deprecated settings (on_sent_ok and on_submit)</li>\n<li>Allows to pass the skip_mail option through the WPCF7_ContactForm::submit() and WPCF7_Submission::get_instance() function parameters.</li>\n<li>Triggers wpcf7beforesubmit custom DOM event. You can manipulate the formData object through an event handler.</li>\n</ul>\n<h4>4.8.1</h4>\n<ul>\n<li>wpcf7.initForm JavaScript function added to isolate form initialization process.</li>\n<li>Fix response message duplication caused by repeated click on submit button.</li>\n<li>Clear $phpmailer->AltBody to avoid unintended inheritance from previous wp_mail() calls.</li>\n<li>Fix incorrect character count of textarea input.</li>\n<li>Akismet: Exclude the comment_author, comment_author_email, and comment_author_url values from the comment_content value.</li>\n<li>REST API: More reliable approach to build route URLs.</li>\n<li>Include free_text inputs into event.detail.inputs.</li>\n</ul>\n<h4>4.8</h4>\n<ul>\n<li>Stopped using jquery.form.js.</li>\n<li>Added custom REST API endpoints for Ajax form submissions.</li>\n<li>WPCF7_FormTag class implements ArrayAccess interface.</li>\n<li>WPCF7_FormTagsManager::filter() filters form-tags based on features they support.</li>\n<li>New form-tag features: do-not-store, display-block, and display-hidden</li>\n<li>Removed inappropriate content from h1 headings.</li>\n<li>Added the support of size:invisible option to the reCAPTCHA form-tag.</li>\n</ul>\n\";s:11:\"screenshots\";s:225:\"<ol><li><a href=\"https://ps.w.org/contact-form-7/assets/screenshot-1.png?rev=1176454\"><img src=\"https://ps.w.org/contact-form-7/assets/screenshot-1.png?rev=1176454\" alt=\"screenshot-1.png\"></a><p>screenshot-1.png</p></li></ol>\";}s:17:\"short_description\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:13:\"download_link\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.9.2.zip\";s:11:\"screenshots\";a:1:{i:1;a:2:{s:3:\"src\";s:67:\"https://ps.w.org/contact-form-7/assets/screenshot-1.png?rev=1176454\";s:7:\"caption\";s:16:\"screenshot-1.png\";}}s:8:\"versions\";a:126:{s:3:\"1.1\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.1.zip\";s:4:\"1.10\";s:62:\"https://downloads.wordpress.org/plugin/contact-form-7.1.10.zip\";s:8:\"1.10.0.1\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.1.10.0.1.zip\";s:6:\"1.10.1\";s:64:\"https://downloads.wordpress.org/plugin/contact-form-7.1.10.1.zip\";s:3:\"1.2\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.2.zip\";s:3:\"1.3\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.3.zip\";s:5:\"1.3.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.3.1.zip\";s:5:\"1.3.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.3.2.zip\";s:3:\"1.4\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.4.zip\";s:5:\"1.4.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.4.1.zip\";s:5:\"1.4.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.4.2.zip\";s:5:\"1.4.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.4.3.zip\";s:5:\"1.4.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.4.4.zip\";s:3:\"1.5\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.5.zip\";s:3:\"1.6\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.6.zip\";s:5:\"1.6.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.6.1.zip\";s:3:\"1.7\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.zip\";s:5:\"1.7.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.1.zip\";s:5:\"1.7.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.2.zip\";s:5:\"1.7.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.4.zip\";s:5:\"1.7.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.5.zip\";s:5:\"1.7.6\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.6.zip\";s:7:\"1.7.6.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.6.1.zip\";s:5:\"1.7.7\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.7.zip\";s:7:\"1.7.7.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.7.1.zip\";s:5:\"1.7.8\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.7.8.zip\";s:3:\"1.8\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.zip\";s:7:\"1.8.0.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.1.zip\";s:7:\"1.8.0.2\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.2.zip\";s:7:\"1.8.0.3\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.3.zip\";s:7:\"1.8.0.4\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.0.4.zip\";s:5:\"1.8.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.1.zip\";s:7:\"1.8.1.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.8.1.1.zip\";s:3:\"1.9\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.zip\";s:5:\"1.9.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.1.zip\";s:5:\"1.9.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.2.zip\";s:7:\"1.9.2.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.2.1.zip\";s:7:\"1.9.2.2\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.2.2.zip\";s:5:\"1.9.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.3.zip\";s:5:\"1.9.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.4.zip\";s:5:\"1.9.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.5.zip\";s:7:\"1.9.5.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.1.9.5.1.zip\";s:3:\"2.0\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.zip\";s:8:\"2.0-beta\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0-beta.zip\";s:5:\"2.0.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.1.zip\";s:5:\"2.0.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.2.zip\";s:5:\"2.0.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.3.zip\";s:5:\"2.0.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.4.zip\";s:5:\"2.0.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.5.zip\";s:5:\"2.0.6\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.6.zip\";s:5:\"2.0.7\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.0.7.zip\";s:3:\"2.1\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.2.1.zip\";s:5:\"2.1.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.1.1.zip\";s:5:\"2.1.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.1.2.zip\";s:3:\"2.2\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.2.2.zip\";s:5:\"2.2.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.2.1.zip\";s:3:\"2.3\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.2.3.zip\";s:5:\"2.3.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.3.1.zip\";s:3:\"2.4\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.zip\";s:5:\"2.4.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.1.zip\";s:5:\"2.4.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.2.zip\";s:5:\"2.4.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.3.zip\";s:5:\"2.4.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.4.zip\";s:5:\"2.4.5\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.5.zip\";s:5:\"2.4.6\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.2.4.6.zip\";s:3:\"3.0\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.0.zip\";s:8:\"3.0-beta\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.3.0-beta.zip\";s:5:\"3.0.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.0.1.zip\";s:5:\"3.0.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.0.2.zip\";s:7:\"3.0.2.1\";s:65:\"https://downloads.wordpress.org/plugin/contact-form-7.3.0.2.1.zip\";s:3:\"3.1\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.1.zip\";s:5:\"3.1.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.1.1.zip\";s:5:\"3.1.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.1.2.zip\";s:3:\"3.2\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.2.zip\";s:5:\"3.2.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.2.1.zip\";s:3:\"3.3\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.3.zip\";s:5:\"3.3.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.3.1.zip\";s:5:\"3.3.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.3.2.zip\";s:5:\"3.3.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.3.3.zip\";s:3:\"3.4\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.4.zip\";s:5:\"3.4.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.4.1.zip\";s:5:\"3.4.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.4.2.zip\";s:3:\"3.5\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.5.zip\";s:5:\"3.5.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.5.1.zip\";s:5:\"3.5.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.5.2.zip\";s:5:\"3.5.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.5.3.zip\";s:5:\"3.5.4\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.5.4.zip\";s:3:\"3.6\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.6.zip\";s:3:\"3.7\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.7.zip\";s:5:\"3.7.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.7.1.zip\";s:5:\"3.7.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.7.2.zip\";s:3:\"3.8\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.8.zip\";s:5:\"3.8.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.8.1.zip\";s:3:\"3.9\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.3.9.zip\";s:8:\"3.9-beta\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.3.9-beta.zip\";s:5:\"3.9.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.9.1.zip\";s:5:\"3.9.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.9.2.zip\";s:5:\"3.9.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.3.9.3.zip\";s:3:\"4.0\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.0.zip\";s:5:\"4.0.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.0.1.zip\";s:5:\"4.0.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.0.2.zip\";s:5:\"4.0.3\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.0.3.zip\";s:3:\"4.1\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.1.zip\";s:8:\"4.1-beta\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.4.1-beta.zip\";s:5:\"4.1.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.1.1.zip\";s:5:\"4.1.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.1.2.zip\";s:3:\"4.2\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.2.zip\";s:8:\"4.2-beta\";s:66:\"https://downloads.wordpress.org/plugin/contact-form-7.4.2-beta.zip\";s:5:\"4.2.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.2.1.zip\";s:5:\"4.2.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.2.2.zip\";s:3:\"4.3\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.3.zip\";s:5:\"4.3.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.3.1.zip\";s:3:\"4.4\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.4.zip\";s:5:\"4.4.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.4.1.zip\";s:5:\"4.4.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.4.2.zip\";s:3:\"4.5\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.5.zip\";s:5:\"4.5.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.5.1.zip\";s:3:\"4.6\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.6.zip\";s:5:\"4.6.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.6.1.zip\";s:3:\"4.7\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.7.zip\";s:3:\"4.8\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.8.zip\";s:5:\"4.8.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.8.1.zip\";s:3:\"4.9\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.4.9.zip\";s:5:\"4.9.1\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.9.1.zip\";s:5:\"4.9.2\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.9.2.zip\";s:5:\"trunk\";s:57:\"https://downloads.wordpress.org/plugin/contact-form-7.zip\";}s:5:\"icons\";a:2:{s:2:\"1x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-128x128.png?rev=984007\";s:2:\"2x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=984007\";}}','no'),(13900,'_transient_timeout_epsilon_plugin_information_transient_simple-custom-post-order','1515117017','no'),(13901,'_transient_epsilon_plugin_information_transient_simple-custom-post-order','O:8:\"stdClass\":18:{s:4:\"name\";s:24:\"Simple Custom Post Order\";s:4:\"slug\";s:24:\"simple-custom-post-order\";s:7:\"version\";s:5:\"2.3.2\";s:6:\"author\";s:47:\"<a href=\"https://colorlib.com/wp/\">Colorlib</a>\";s:14:\"author_profile\";s:39:\"https://profiles.wordpress.org/hsameerc\";s:12:\"contributors\";a:2:{s:15:\"colorlibplugins\";s:46:\"https://profiles.wordpress.org/colorlibplugins\";s:8:\"silkalns\";s:39:\"https://profiles.wordpress.org/silkalns\";}s:12:\"requires_php\";b:0;s:7:\"ratings\";a:5:{i:5;i:98;i:4;i:3;i:3;i:5;i:2;i:2;i:1;i:11;}s:11:\"num_ratings\";i:119;s:15:\"support_threads\";i:0;s:24:\"support_threads_resolved\";i:0;s:8:\"homepage\";s:58:\"https://wordpress.org/plugins-wp/simple-custom-post-order/\";s:8:\"sections\";a:5:{s:11:\"description\";s:416:\"<p>Order posts(posts, any custom post types) using a Drag and Drop Sortable JavaScript. Configuration is unnecessary. You can do directly on default WordPress administration.<br />\nExcluding custom query which uses order or orderby parameters, in get_posts or query_posts and so on.</p>\n<p>This plugins is now supported and maintained by <a href=\"//colorlib.com/wp/“\" rel=\"“friend” nofollow\">Colorlib</a>.</p>\n\";s:12:\"installation\";s:188:\"<ol>\n<li>Upload <code>plugin-name.php</code> to the <code>/wp-content/plugins/</code> directory</li>\n<li>Activate the plugin through the ‘Plugins’ menu in WordPress</li>\n</ol>\n\";s:3:\"faq\";s:322:\"\n<h4>Installation Instructions</h4>\n<p>\n<ol>\n<li>Upload <code>plugin-name.php</code> to the <code>/wp-content/plugins/</code> directory</li>\n<li>Activate the plugin through the ‘Plugins’ menu in WordPress</li>\n</ol>\n</p>\n<h4>A question that someone might have</h4>\n<p>\n<p>An answer to that question.</p>\n</p>\n\n\";s:9:\"changelog\";s:1137:\"<h4>Version 1.0 (20-07-2013)</h4>\n<ul>\n<li>Initial release.</li>\n</ul>\n<h4>Version 1.5 (25-07-2013)</h4>\n<ul>\n<li>Fix : fix errors</li>\n<li>Added Taxonomy Sort</li>\n<li>Added Taxonomy Sort option In setting Page</li>\n</ul>\n<h4>Version 2.0 (22-11-2013)</h4>\n<ul>\n<li>Fixed Undefined Notice Error in wp version 3.7.1</li>\n<li>Taxonomy Activate Checkbox removed.</li>\n</ul>\n<h4>Version 2.1 (31-12-2013)</h4>\n<ul>\n<li>Prevent Breaking autocomplete </li>\n</ul>\n<h4>Version 2.2 (02-07-2014)</h4>\n<ul>\n<li>Fixed bug: Custom Query which uses ‘order’ or ‘orderby’ parameters is preferred</li>\n<li>It does not depend on the designation manner of arguments( Parameters ). ( $args = ‘orderby=&order=’ or $args = array( ‘orderby’ => ”, ‘order’ => ” ) )</li>\n<li>Previous Versions Issues were Improved.</li>\n<li>Removed Taxonomy Sort( Will add in next Version ? )</li>\n</ul>\n<h4>Version 2.3 (24-03-2014)</h4>\n<ul>\n<li>Fixed major bug on taxonomy and post order</li>\n</ul>\n<h4>Version 2.3.2 (17-03-2017)</h4>\n<ul>\n<li>Minor documentation and readme tweaks</li>\n</ul>\n\";s:11:\"screenshots\";s:656:\"<ol><li><a href=\"https://ps.w.org/simple-custom-post-order/trunk/screenshot-2.png?rev=1776568\"><img src=\"https://ps.w.org/simple-custom-post-order/trunk/screenshot-2.png?rev=1776568\" alt=\"screenshot-2\"></a><p>screenshot-2</p></li><li><a href=\"https://ps.w.org/simple-custom-post-order/trunk/screenshot-3.png?rev=1776568\"><img src=\"https://ps.w.org/simple-custom-post-order/trunk/screenshot-3.png?rev=1776568\" alt=\"\"></a></li><li><a href=\"https://ps.w.org/simple-custom-post-order/trunk/screenshot-1.png?rev=1776568\"><img src=\"https://ps.w.org/simple-custom-post-order/trunk/screenshot-1.png?rev=1776568\" alt=\"screenshot-1\"></a><p>screenshot-1</p></li></ol>\";}s:17:\"short_description\";s:114:\"Order posts(posts, any custom post types) using a Drag and Drop Sortable JavaScript. Configuration is unnecessary.\";s:13:\"download_link\";s:67:\"https://downloads.wordpress.org/plugin/simple-custom-post-order.zip\";s:11:\"screenshots\";a:3:{i:2;a:2:{s:3:\"src\";s:76:\"https://ps.w.org/simple-custom-post-order/trunk/screenshot-2.png?rev=1776568\";s:7:\"caption\";s:12:\"screenshot-2\";}i:3;a:2:{s:3:\"src\";s:76:\"https://ps.w.org/simple-custom-post-order/trunk/screenshot-3.png?rev=1776568\";s:7:\"caption\";s:0:\"\";}i:1;a:2:{s:3:\"src\";s:76:\"https://ps.w.org/simple-custom-post-order/trunk/screenshot-1.png?rev=1776568\";s:7:\"caption\";s:12:\"screenshot-1\";}}s:8:\"versions\";a:5:{s:3:\"1.0\";s:71:\"https://downloads.wordpress.org/plugin/simple-custom-post-order.1.0.zip\";s:3:\"1.5\";s:71:\"https://downloads.wordpress.org/plugin/simple-custom-post-order.1.5.zip\";s:3:\"2.0\";s:71:\"https://downloads.wordpress.org/plugin/simple-custom-post-order.2.0.zip\";s:3:\"2.1\";s:71:\"https://downloads.wordpress.org/plugin/simple-custom-post-order.2.1.zip\";s:3:\"2.2\";s:71:\"https://downloads.wordpress.org/plugin/simple-custom-post-order.2.2.zip\";}s:5:\"icons\";a:1:{s:7:\"default\";s:17742:\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMjAiIGhlaWdodD0iNTQwIiB2aWV3Ym94PSIwIDAgMjIwIDU0MCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0icmdiKDE1NywgMTU4LCAxNTgpIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZGRkIiBzdHlsZT0ib3BhY2l0eTowLjA3MjtzdHJva2Utd2lkdGg6MTVweDsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01NSwgLTEzNSkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiNkZGQiIHN0eWxlPSJvcGFjaXR5OjAuMDcyO3N0cm9rZS13aWR0aDoxNXB4OyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU1LCA0MDUpIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjEzMjY2NjY2NjY2NjY3O3N0cm9rZS13aWR0aDoxNXB4OyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU1LCAtMTIwKSIgLz48cGF0aCBkPSJNMCA5MCBDIDM4LjUgMCwgNzIgMCwgMTEwIDkwIFMgMTgyIDE4MCwgMjIwIDkwIFMgMjkyIDAsIDMzMCwgOTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzIyMiIgc3R5bGU9Im9wYWNpdHk6MC4xMzI2NjY2NjY2NjY2NztzdHJva2Utd2lkdGg6MTVweDsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01NSwgNDIwKSIgLz48cGF0aCBkPSJNMCA5MCBDIDM4LjUgMCwgNzIgMCwgMTEwIDkwIFMgMTgyIDE4MCwgMjIwIDkwIFMgMjkyIDAsIDMzMCwgOTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzIyMiIgc3R5bGU9Im9wYWNpdHk6MC4wODA2NjY2NjY2NjY2Njc7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIC0xMDUpIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjA4MDY2NjY2NjY2NjY2NztzdHJva2Utd2lkdGg6MTVweDsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01NSwgNDM1KSIgLz48cGF0aCBkPSJNMCA5MCBDIDM4LjUgMCwgNzIgMCwgMTEwIDkwIFMgMTgyIDE4MCwgMjIwIDkwIFMgMjkyIDAsIDMzMCwgOTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzIyMiIgc3R5bGU9Im9wYWNpdHk6MC4xNTtzdHJva2Utd2lkdGg6MTVweDsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01NSwgLTkwKSIgLz48cGF0aCBkPSJNMCA5MCBDIDM4LjUgMCwgNzIgMCwgMTEwIDkwIFMgMTgyIDE4MCwgMjIwIDkwIFMgMjkyIDAsIDMzMCwgOTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzIyMiIgc3R5bGU9Im9wYWNpdHk6MC4xNTtzdHJva2Utd2lkdGg6MTVweDsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01NSwgNDUwKSIgLz48cGF0aCBkPSJNMCA5MCBDIDM4LjUgMCwgNzIgMCwgMTEwIDkwIFMgMTgyIDE4MCwgMjIwIDkwIFMgMjkyIDAsIDMzMCwgOTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2RkZCIgc3R5bGU9Im9wYWNpdHk6MC4wNTQ2NjY2NjY2NjY2Njc7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIC03NSkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiNkZGQiIHN0eWxlPSJvcGFjaXR5OjAuMDU0NjY2NjY2NjY2NjY3O3N0cm9rZS13aWR0aDoxNXB4OyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU1LCA0NjUpIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjA0NjtzdHJva2Utd2lkdGg6MTVweDsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01NSwgLTYwKSIgLz48cGF0aCBkPSJNMCA5MCBDIDM4LjUgMCwgNzIgMCwgMTEwIDkwIFMgMTgyIDE4MCwgMjIwIDkwIFMgMjkyIDAsIDMzMCwgOTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzIyMiIgc3R5bGU9Im9wYWNpdHk6MC4wNDY7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDQ4MCkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMTU7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIC00NSkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMTU7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDQ5NSkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMTU7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIC0zMCkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMTU7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDUxMCkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiNkZGQiIHN0eWxlPSJvcGFjaXR5OjAuMDU0NjY2NjY2NjY2NjY3O3N0cm9rZS13aWR0aDoxNXB4OyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU1LCAtMTUpIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZGRkIiBzdHlsZT0ib3BhY2l0eTowLjA1NDY2NjY2NjY2NjY2NztzdHJva2Utd2lkdGg6MTVweDsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01NSwgNTI1KSIgLz48cGF0aCBkPSJNMCA5MCBDIDM4LjUgMCwgNzIgMCwgMTEwIDkwIFMgMTgyIDE4MCwgMjIwIDkwIFMgMjkyIDAsIDMzMCwgOTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2RkZCIgc3R5bGU9Im9wYWNpdHk6MC4wNTQ2NjY2NjY2NjY2Njc7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDApIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZGRkIiBzdHlsZT0ib3BhY2l0eTowLjA1NDY2NjY2NjY2NjY2NztzdHJva2Utd2lkdGg6MTVweDsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01NSwgNTQwKSIgLz48cGF0aCBkPSJNMCA5MCBDIDM4LjUgMCwgNzIgMCwgMTEwIDkwIFMgMTgyIDE4MCwgMjIwIDkwIFMgMjkyIDAsIDMzMCwgOTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzIyMiIgc3R5bGU9Im9wYWNpdHk6MC4wOTg7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDE1KSIgLz48cGF0aCBkPSJNMCA5MCBDIDM4LjUgMCwgNzIgMCwgMTEwIDkwIFMgMTgyIDE4MCwgMjIwIDkwIFMgMjkyIDAsIDMzMCwgOTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzIyMiIgc3R5bGU9Im9wYWNpdHk6MC4wOTg7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDU1NSkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMDk4O3N0cm9rZS13aWR0aDoxNXB4OyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU1LCAzMCkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMDk4O3N0cm9rZS13aWR0aDoxNXB4OyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU1LCA1NzApIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZGRkIiBzdHlsZT0ib3BhY2l0eTowLjAzNzMzMzMzMzMzMzMzMztzdHJva2Utd2lkdGg6MTVweDsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01NSwgNDUpIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZGRkIiBzdHlsZT0ib3BhY2l0eTowLjAzNzMzMzMzMzMzMzMzMztzdHJva2Utd2lkdGg6MTVweDsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01NSwgNTg1KSIgLz48cGF0aCBkPSJNMCA5MCBDIDM4LjUgMCwgNzIgMCwgMTEwIDkwIFMgMTgyIDE4MCwgMjIwIDkwIFMgMjkyIDAsIDMzMCwgOTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2RkZCIgc3R5bGU9Im9wYWNpdHk6MC4wODkzMzMzMzMzMzMzMzM7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDYwKSIgLz48cGF0aCBkPSJNMCA5MCBDIDM4LjUgMCwgNzIgMCwgMTEwIDkwIFMgMTgyIDE4MCwgMjIwIDkwIFMgMjkyIDAsIDMzMCwgOTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2RkZCIgc3R5bGU9Im9wYWNpdHk6MC4wODkzMzMzMzMzMzMzMzM7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDYwMCkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMTU7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDc1KSIgLz48cGF0aCBkPSJNMCA5MCBDIDM4LjUgMCwgNzIgMCwgMTEwIDkwIFMgMTgyIDE4MCwgMjIwIDkwIFMgMjkyIDAsIDMzMCwgOTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzIyMiIgc3R5bGU9Im9wYWNpdHk6MC4xNTtzdHJva2Utd2lkdGg6MTVweDsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01NSwgNjE1KSIgLz48cGF0aCBkPSJNMCA5MCBDIDM4LjUgMCwgNzIgMCwgMTEwIDkwIFMgMTgyIDE4MCwgMjIwIDkwIFMgMjkyIDAsIDMzMCwgOTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzIyMiIgc3R5bGU9Im9wYWNpdHk6MC4xNTtzdHJva2Utd2lkdGg6MTVweDsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01NSwgOTApIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjE1O3N0cm9rZS13aWR0aDoxNXB4OyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU1LCA2MzApIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjEzMjY2NjY2NjY2NjY3O3N0cm9rZS13aWR0aDoxNXB4OyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU1LCAxMDUpIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjEzMjY2NjY2NjY2NjY3O3N0cm9rZS13aWR0aDoxNXB4OyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU1LCA2NDUpIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjA5ODtzdHJva2Utd2lkdGg6MTVweDsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01NSwgMTIwKSIgLz48cGF0aCBkPSJNMCA5MCBDIDM4LjUgMCwgNzIgMCwgMTEwIDkwIFMgMTgyIDE4MCwgMjIwIDkwIFMgMjkyIDAsIDMzMCwgOTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzIyMiIgc3R5bGU9Im9wYWNpdHk6MC4wOTg7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDY2MCkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiNkZGQiIHN0eWxlPSJvcGFjaXR5OjAuMDcyO3N0cm9rZS13aWR0aDoxNXB4OyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU1LCAxMzUpIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZGRkIiBzdHlsZT0ib3BhY2l0eTowLjA3MjtzdHJva2Utd2lkdGg6MTVweDsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01NSwgNjc1KSIgLz48cGF0aCBkPSJNMCA5MCBDIDM4LjUgMCwgNzIgMCwgMTEwIDkwIFMgMTgyIDE4MCwgMjIwIDkwIFMgMjkyIDAsIDMzMCwgOTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2RkZCIgc3R5bGU9Im9wYWNpdHk6MC4xMjQ7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDE1MCkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiNkZGQiIHN0eWxlPSJvcGFjaXR5OjAuMTI0O3N0cm9rZS13aWR0aDoxNXB4OyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU1LCA2OTApIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZGRkIiBzdHlsZT0ib3BhY2l0eTowLjA1NDY2NjY2NjY2NjY2NztzdHJva2Utd2lkdGg6MTVweDsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01NSwgMTY1KSIgLz48cGF0aCBkPSJNMCA5MCBDIDM4LjUgMCwgNzIgMCwgMTEwIDkwIFMgMTgyIDE4MCwgMjIwIDkwIFMgMjkyIDAsIDMzMCwgOTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2RkZCIgc3R5bGU9Im9wYWNpdHk6MC4wNTQ2NjY2NjY2NjY2Njc7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDcwNSkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiNkZGQiIHN0eWxlPSJvcGFjaXR5OjAuMTA2NjY2NjY2NjY2Njc7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDE4MCkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiNkZGQiIHN0eWxlPSJvcGFjaXR5OjAuMTA2NjY2NjY2NjY2Njc7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDcyMCkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMTMyNjY2NjY2NjY2Njc7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDE5NSkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMTMyNjY2NjY2NjY2Njc7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDczNSkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMDgwNjY2NjY2NjY2NjY3O3N0cm9rZS13aWR0aDoxNXB4OyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU1LCAyMTApIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjA4MDY2NjY2NjY2NjY2NztzdHJva2Utd2lkdGg6MTVweDsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01NSwgNzUwKSIgLz48cGF0aCBkPSJNMCA5MCBDIDM4LjUgMCwgNzIgMCwgMTEwIDkwIFMgMTgyIDE4MCwgMjIwIDkwIFMgMjkyIDAsIDMzMCwgOTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzIyMiIgc3R5bGU9Im9wYWNpdHk6MC4wOTg7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDIyNSkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMDk4O3N0cm9rZS13aWR0aDoxNXB4OyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU1LCA3NjUpIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjEzMjY2NjY2NjY2NjY3O3N0cm9rZS13aWR0aDoxNXB4OyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU1LCAyNDApIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjEzMjY2NjY2NjY2NjY3O3N0cm9rZS13aWR0aDoxNXB4OyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU1LCA3ODApIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjA2MzMzMzMzMzMzMzMzMztzdHJva2Utd2lkdGg6MTVweDsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01NSwgMjU1KSIgLz48cGF0aCBkPSJNMCA5MCBDIDM4LjUgMCwgNzIgMCwgMTEwIDkwIFMgMTgyIDE4MCwgMjIwIDkwIFMgMjkyIDAsIDMzMCwgOTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzIyMiIgc3R5bGU9Im9wYWNpdHk6MC4wNjMzMzMzMzMzMzMzMzM7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDc5NSkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMTE1MzMzMzMzMzMzMzM7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDI3MCkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMTE1MzMzMzMzMzMzMzM7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDgxMCkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMTMyNjY2NjY2NjY2Njc7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDI4NSkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMTMyNjY2NjY2NjY2Njc7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDgyNSkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMDYzMzMzMzMzMzMzMzMzO3N0cm9rZS13aWR0aDoxNXB4OyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU1LCAzMDApIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjA2MzMzMzMzMzMzMzMzMztzdHJva2Utd2lkdGg6MTVweDsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01NSwgODQwKSIgLz48cGF0aCBkPSJNMCA5MCBDIDM4LjUgMCwgNzIgMCwgMTEwIDkwIFMgMTgyIDE4MCwgMjIwIDkwIFMgMjkyIDAsIDMzMCwgOTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2RkZCIgc3R5bGU9Im9wYWNpdHk6MC4wMzczMzMzMzMzMzMzMzM7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDMxNSkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiNkZGQiIHN0eWxlPSJvcGFjaXR5OjAuMDM3MzMzMzMzMzMzMzMzO3N0cm9rZS13aWR0aDoxNXB4OyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU1LCA4NTUpIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjE1O3N0cm9rZS13aWR0aDoxNXB4OyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU1LCAzMzApIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjE1O3N0cm9rZS13aWR0aDoxNXB4OyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU1LCA4NzApIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjEzMjY2NjY2NjY2NjY3O3N0cm9rZS13aWR0aDoxNXB4OyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU1LCAzNDUpIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjEzMjY2NjY2NjY2NjY3O3N0cm9rZS13aWR0aDoxNXB4OyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU1LCA4ODUpIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZGRkIiBzdHlsZT0ib3BhY2l0eTowLjAzNzMzMzMzMzMzMzMzMztzdHJva2Utd2lkdGg6MTVweDsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01NSwgMzYwKSIgLz48cGF0aCBkPSJNMCA5MCBDIDM4LjUgMCwgNzIgMCwgMTEwIDkwIFMgMTgyIDE4MCwgMjIwIDkwIFMgMjkyIDAsIDMzMCwgOTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2RkZCIgc3R5bGU9Im9wYWNpdHk6MC4wMzczMzMzMzMzMzMzMzM7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDkwMCkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiNkZGQiIHN0eWxlPSJvcGFjaXR5OjAuMTQxMzMzMzMzMzMzMzM7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDM3NSkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiNkZGQiIHN0eWxlPSJvcGFjaXR5OjAuMTQxMzMzMzMzMzMzMzM7c3Ryb2tlLXdpZHRoOjE1cHg7IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNTUsIDkxNSkiIC8+PHBhdGggZD0iTTAgOTAgQyAzOC41IDAsIDcyIDAsIDExMCA5MCBTIDE4MiAxODAsIDIyMCA5MCBTIDI5MiAwLCAzMzAsIDkwIiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMDYzMzMzMzMzMzMzMzMzO3N0cm9rZS13aWR0aDoxNXB4OyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTU1LCAzOTApIiAvPjxwYXRoIGQ9Ik0wIDkwIEMgMzguNSAwLCA3MiAwLCAxMTAgOTAgUyAxODIgMTgwLCAyMjAgOTAgUyAyOTIgMCwgMzMwLCA5MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjA2MzMzMzMzMzMzMzMzMztzdHJva2Utd2lkdGg6MTVweDsiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01NSwgOTMwKSIgLz48L3N2Zz4=\";}}','no'),(13902,'_transient_timeout_epsilon_plugin_information_transient_fancybox-for-wordpress','1515117017','no'),(13903,'_transient_epsilon_plugin_information_transient_fancybox-for-wordpress','O:8:\"stdClass\":18:{s:4:\"name\";s:22:\"FancyBox for WordPress\";s:4:\"slug\";s:22:\"fancybox-for-wordpress\";s:7:\"version\";s:6:\"3.0.13\";s:6:\"author\";s:44:\"<a href=\"https://colorlib.com/\">Colorlib</a>\";s:14:\"author_profile\";s:37:\"https://profiles.wordpress.org/moskis\";s:12:\"contributors\";a:1:{s:8:\"silkalns\";s:39:\"https://profiles.wordpress.org/silkalns\";}s:12:\"requires_php\";b:0;s:7:\"ratings\";a:5:{i:5;i:33;i:4;i:3;i:3;i:1;i:2;i:1;i:1;i:7;}s:11:\"num_ratings\";i:45;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:0;s:8:\"homepage\";s:53:\"https://wordpress.org/plugins/fancybox-for-wordpress/\";s:8:\"sections\";a:5:{s:11:\"description\";s:2139:\"<p>Seamlessly integrates FancyBox into your blog: Upload, activate, and you’re done. Additional configuration optional.</p>\n<p>You can easily customize almost anything you can think about fancybox lightbox: the border, margin width and color, zoom speed, animation type, close button position, overlay color and opacity and even more advanced option like several options to group images into galleries, and more…</p>\n<p>By default, the plugin will use jQuery to apply FancyBox to ANY thumbnails that link directly to an image. This includes posts, the sidebar, etc, so you can activate it and it will be applied automatically.</p>\n<h4>Demo</h4>\n<p>You can see the plugin working on a <a href=\"http://blog.moskis.net/2012/01/20/teclado-apple-en-windows-7/\" rel=\"nofollow\">this blog</a> although there’s nothing amazing to see, just a FancyBox simple implementation, that’s the point ? You can take a look at the code if you’re curious, though.</p>\n<h4>Further Reading</h4>\n<p>This plugin is developed and maintained by Colorlib. Which is well know for their free <a href=\"https://colorlib.com/wp/themes/\" rel=\"nofollow\"></a>WordPress themes. However, now they are looking to extend their presence in plugin development and believe that FancyBox lightbox is a great way to start.</p>\n<p>If you are new to WordPress and want to lear more we have got you covered. Colorlib will teach you have to <a href=\"https://colorlib.com/\" rel=\"nofollow\">start a blog</a> or <a href=\"https://colorlib.com/wp/how-to-make-a-website/\" rel=\"nofollow\">create a website</a> and much more. If you are already familiar with WordPress you likely want to learn how to make it faster and more reliable. That’s when you want to look into hosting and more specifically <a href=\"http://colorlib.com/wp/wordpress-hosting\" rel=\"nofollow\">WordPress hosting</a>.</p>\n<p>If you enjoy using FancyBox lightbox for WordPress please leave a <a href=\"https://wordpress.org/support/plugin/fancybox-for-wordpress/reviews/?filter=5\" rel=\"nofollow\">positive feedback</a>. We are committed to make it the best lightbox plugin for WordPress.</p>\n\";s:12:\"installation\";s:455:\"<ol>\n<li>Upload the <code>fancybox-for-wordpress</code> folder to the <code>/wp-content/plugins/</code> directory</li>\n<li>Activate the plugin through the ‘Plugins’ menu in WordPress</li>\n<li>That’s it, FancyBox will be automatically applied to all your image links and galleries.</li>\n<li>If you want to customize a bit the look and feel of FancyBox, go to the Options Page under General Options in the WordPress Admin panel</li>\n</ol>\n\";s:3:\"faq\";s:2079:\"\n<h4>Installation Instructions</h4>\n<p>\n<ol>\n<li>Upload the <code>fancybox-for-wordpress</code> folder to the <code>/wp-content/plugins/</code> directory</li>\n<li>Activate the plugin through the ‘Plugins’ menu in WordPress</li>\n<li>That’s it, FancyBox will be automatically applied to all your image links and galleries.</li>\n<li>If you want to customize a bit the look and feel of FancyBox, go to the Options Page under General Options in the WordPress Admin panel</li>\n</ol>\n</p>\n<h4>– There was a vulnerability detected in versions 3.0.2 and lower, is my site in danger?</h4>\n<p>\n<p>This vulnerability was patched in version 3.0.3.</p>\n<p>An additional change was introduced in version 3.0.4 to make sure that the malicious code can’t be printed to visitors even if it still remains in the database.</p>\n<p>If you think your site might still be using a vulnerable version of the plugin please log in to your WordPress admin panel, disable the plugin and clear any cache if your site uses a cache system.</p>\n<p>If you wish to continue using the plugin, check that the plugin is updated to the latest version from your admin panel and enable it. Then check the plugin’s settings page and make sure there’s no abnormal code in any of the fields, especially on the Extra Calls tab. If you are not sure about the code you see in the settings please use the Revert to Defaults button at the bottom of the settings page.</p>\n<p>If you think your site might be compromised in any other way check this guide: <a href=\"https://codex.wordpress.org/FAQ_My_site_was_hacked\" rel=\"nofollow\">WordPress Codex – FAQ My site was hacked</a>.</p>\n</p>\n<h4>– Is the FancyBox script vulnerable or unsafe?</h4>\n<p>\n<p>No, there’s nothing wrong with the actual FancyBox script that i know of.</p>\n<p>The vulnerability detected in versions 3.0.2 and lower of the “FancyBox for WordPress” plugin was limited to the plugin itself. Other FancyBox plugins or manual implementations of FancyBox are unrelated to this issue.</p>\n</p>\n\n\";s:9:\"changelog\";s:10648:\"<h4>3.0.12</h4>\n<p>Fixed errors causes by WordPress SVN.</p>\n<h4>3.0.7</h4>\n<ul>\n<li>Updated Fancybox library</li>\n<li>Updated other libraries this plugins depends on such as jQuery easing and jQuery Mousewheel</li>\n<li>Tested plugin with WordPress 4.6</li>\n</ul>\n<h4>3.0.6</h4>\n<ul>\n<li>Fixes to JavaScript code for showing and hiding elements as they are needed in Settings page. (Thanks to jono55 for reporting)</li>\n</ul>\n<h4>3.0.5</h4>\n<ul>\n<li>Fixed the Revert Options button.</li>\n<li>Fixed wrong version number being shown on the plugin’s settings page.</li>\n<li>Updated plugin and author links in readme and settings page.</li>\n<li>Updated localization catalog (POT file).</li>\n<li>Updated Spanish translation with minor updates.</li>\n<li>Updated Frequently Asked Questions in readme file.</li>\n<li>Removed version number from printed html source code.</li>\n<li>Removed outdated/incomplete translation binaries.</li>\n</ul>\n<h4>3.0.4</h4>\n<ul>\n<li>Renamed the setting affected by the security issue mentioned in 3.0.3. This should stop the malicious code from appearing on sites where the plugin is updated without removing the malicious code.</li>\n</ul>\n<h4>3.0.3</h4>\n<ul>\n<li>Fixed a security issue. (Thanks to mickaelb for reporting and Konstantin Kovshenin for providing the fix)</li>\n</ul>\n<h4>3.0.2</h4>\n<ul>\n<li>Added support for disabling fancybox on individual hyperlinked images by adding class=’nolightbox’. (Thanks to Artem Russakovskii)</li>\n<li>Added a link to the github project page in the info tab in the settings page.</li>\n<li>Fixed and cleaned the installation code, new installations of the plugin should work now without need to go to the settings page.</li>\n<li>Fixed false positives in filenames. (Thanks to Artem Russakovskii)</li>\n<li>Fixed incompatibility with wordpress installations where the wp-content directory had been renamed.</li>\n<li>Fixed an issue that could cause the version of the plugin to be removed from settings when deactivating the plugin.</li>\n<li>Improved HTTPS support by using better code to retrieve the plugin url and load files.</li>\n<li>Removed legacy code to suport upgrading settings from 2.x versions of the plugin. This was done to avoid possible issues with clean installations of the plugin.</li>\n<li>Updated some CSS rules in jQuery UI</li>\n<li>Some minor reformatting and cleanup of code (PHP comments, empty lines, )</li>\n</ul>\n<h4>3.0.1</h4>\n<ul>\n<li>Updated: Localization catalog updated.</li>\n<li>Updated: Spanish localization.</li>\n<li>Fixed: Minor change in settings page that may fix options page being invisible in some cases.</li>\n</ul>\n<h4>3.0.0</h4>\n<ul>\n<li>New: Fancybox v1.3.4 support This includes many new options, like title position.</li>\n<li>New: Additional FancyBox Calls option that lets the user write their own additional code to use FancyBox on specific areas of the blog, like email subscription buttons, login, etc.</li>\n<li>New: Revert settings button added to options page. When pressed, a confirmation dialog will appear.</li>\n<li>New: Improvements in options page, irrelevant settings (settings that depend on a disabled setting) will hide on real time, meaning a cleaner look in the options page.</li>\n<li>Updated: New cleaner code to select thumbnails on which to apply the fancbox script.</li>\n<li>Updated: Many parts of plugins rewriten with many improvements in code.</li>\n<li>Updated: Options are now serialized into a single row in the database.</li>\n<li>Fixed: Plugin should be SSL friendly from now on.</li>\n<li>Fixed: Do not call jQuery option in troubleshooting section didn’t work if easing was enabled.</li>\n<li>Fixed: Load at footer options should work better now.</li>\n<li>Fixed: CSS external files now addded with wp_enqueue_style().</li>\n<li>Fixed: has_cap error: User level value for options page removed, using role now instead. Thanks to <a href=\"https://wordpress.org/support/topic/plugin-fancybox-for-wordpress-has_cap-fix\" rel=\"nofollow\">vonkanehoffen</a>.</li>\n<li>Removed: jQuery “noConflict” Mode option removed bacause jQuery bundled with WordPress always used noConflict.</li>\n<li>Removed: Base64 data (“data:image/gif;base64,AAAA”) in left and right fancybox link’s backgrounds: It didn’t seem to be working and it is usually regarded as suspicious code, so it has been removed.</li>\n</ul>\n<h4>2.7.5</h4>\n<ul>\n<li>Fixed: Callback arguments are no longer added as “null” when they are not set in options page.</li>\n</ul>\n<h4>2.7.4</h4>\n<ul>\n<li>Fixed: Little error tagging 2.7.3, a file didn’t upload and broke options page.</li>\n<li>Update: Language POT file</li>\n</ul>\n<h4>2.7.3</h4>\n<ul>\n<li>Fixed: Settings not saving in some browsers. Thanks to <a href=\"https://wordpress.org/support/topic/plugin-fancybox-for-wordpress-save-changes-button-doesnt-submit-form?replies=7#post-1765041\" rel=\"nofollow\">supertomate</a></li>\n<li>Fixed: JS being added to other plugins’ configuration pages. Thanks to <a href=\"https://wordpress.org/support/topic/plugin-fancybox-for-wordpress-theres-a-problem-with-is_plugin_page?replies=1#post-1888828\" rel=\"nofollow\">Brandon Dove</a></li>\n<li>Added: Support section in options page with better information</li>\n</ul>\n<h4>2.7.2</h4>\n<ul>\n<li>Fixed: Layout problem in options page in WordPress 2.9</li>\n</ul>\n<h4>2.7.1</h4>\n<ul>\n<li>Fixed: Z-index issue was left out in previus release</li>\n<li>Fixed: Setting to close fancybox when clicking on the overlay wasn’t available in the menu</li>\n<li>Fixed: Frame width and height options are now in the “Other” tab</li>\n<li>Fixed: Tabs now translated in Spanish localization</li>\n</ul>\n<h4>2.7.0</h4>\n<ul>\n<li>New: Fancybox v1.2.6 support</li>\n<li>New: New Admin page with tabs for better organization of all the options</li>\n<li>Added: Setting to change the speed of the animation when changing gallery items</li>\n<li>Added: Setting to enable or disable Escape key to close Fancybox</li>\n<li>Added: Setting to show or hide close button</li>\n<li>Added: Setting to close fancybox when clicking on the overlay</li>\n<li>Added: Setting to enable or disable callback function on start, show and close events</li>\n<li>Added: Italian translation</li>\n<li>Added: Russian translation</li>\n<li>Added: “Load JS at Footer” option</li>\n<li>Added: New Changelog tab in WordPress Plugin Directory</li>\n<li>Fixed: Some typos in Spanish translation</li>\n<li>Fixed: FancyBox not showing above some elements (those with zindex higher than 90)</li>\n<li>Fixed: JavaScript code being included in all admin pages instead of just the plugin’s options page.</li>\n<li>Fixed: noClonflict preventing frames to work in Fancybox</li>\n<li>Fixed: Custom frame width and height not being applied</li>\n<li>Updated: Japanese translation</li>\n<li>Updated: JS is now Minified instead of Packed</li>\n</ul>\n<h4>2.6.0</h4>\n<ul>\n<li>Optimized the JavaScript code used to apply FancyBox</li>\n<li>Updated Custom Expression section in Options Page</li>\n<li>Fixed uppercase image extensions not being recognized</li>\n<li>CSS is now loaded before the JavaScript for better parallelization</li>\n<li>jquery.easing.1.3.js compressed (from 8,10kb to 3,47kb) and renamed to jquery.easing.1.3.pack.js</li>\n<li>Added Turkish translation (some strings missing)</li>\n<li>Added Japanese translation (some strings missing)</li>\n<li>Updated Spanish translation</li>\n<li>Updated to use new Plugin API in WP2.7 for better forward compatibility</li>\n<li>Removed /wp-content/ reference in fancybox.php for better WP2.8 support</li>\n<li>Optimized some code readability</li>\n</ul>\n<h4>2.5.1</h4>\n<ul>\n<li>Fixed the plugin not working when selecting Gallery Type “By Post”</li>\n<li>Fixed a bug that would prevent the title in the IMG tag from being copied to the A tag in some cases</li>\n<li>Fixed the Custom Expression showing in the Admin panel when other gallery types are selected</li>\n</ul>\n<h4>2.5</h4>\n<ul>\n<li>Support for localizations (Spanish and German localizations included)</li>\n<li>Some parts of the code completely rewritten</li>\n<li>Fixed fancybox files being loaded on the admin pages</li>\n<li>New options for close button position, custom jquery expressions, iframe content</li>\n<li>Options page mostly rewritten, better organized</li>\n<li>Medium/advanced, troubleshooting/uninstall options collapsable, hidden by default</li>\n<li>Better support guidelines and links on options page</li>\n<li>Settings link on the Manage plugins page</li>\n<li>Custom expression hidden when not used</li>\n<li>Title atribute on IMG tags is now copied to its parent A tag for better caption support</li>\n<li>New uninstall options and better handling of new options when installing/updating</li>\n<li>Cleans any old options no longer needed when plugin is activated/updated</li>\n</ul>\n<h4>2.2</h4>\n<ul>\n<li>Updated to FancyBox 1.2.1</li>\n<li>Added new settings to Options Page: Easing, padding size, border color</li>\n<li>Tweaked CSS to prevent some themes from adding unwanted styles to fancybox (especially background colors and link outlines)</li>\n<li>Options Page reorganized in three sections: Appearance, Behaviour and Troubleshooting Settings, to make settings easier to find</li>\n</ul>\n<h4>2.1.1</h4>\n<ul>\n<li>Fixed a new bug introduced in 2.1 that prevented options from being saved. Sorry about the mess ?</li>\n</ul>\n<h4>2.1</h4>\n<ul>\n<li>Fixed a major bug in 2.0 that prevented it from working until plugin’s options page was visited</li>\n<li>Added two options for troubleshooting that might help in some cases if the plugin doesn’t work: disable jQuery noConflict and skip jQuery call</li>\n<li>Additional fixes to caption CSS: Captions should look better now in Hybrid theme, child themes, and other situations where general table elements are improperly styled</li>\n</ul>\n<h4>2.0</h4>\n<ul>\n<li>Brand new Options Page in Admin Panel lets you easely customize many options: fancybox auto apply, image resize to fit, opacity fade while zooming, zoom speed, overlay on/off, overlay color, overlay opacity, close fancybox on image click, keep fancybox centered while scrolling</li>\n<li>CSS completely updated for FancyBox 1.2.0</li>\n<li>Captions fixed in IE</li>\n</ul>\n<h4>1.3</h4>\n<ul>\n<li>Shadows and Close button should be fixed now</li>\n</ul>\n<h4>1.2</h4>\n<ul>\n<li>Updated to FancyBox 1.2.0</li>\n<li>Uses packed version of the JavaScript file (8kb instead of 14kb)</li>\n</ul>\n<h4>1.1</h4>\n<ul>\n<li>Fixed FancyBox not being applied to .jpeg files</li>\n<li>Fixed “Click to close” overlay text</li>\n<li>Moved images to /img/ folder</li>\n</ul>\n\";s:11:\"screenshots\";s:907:\"<ol><li><a href=\"https://ps.w.org/fancybox-for-wordpress/trunk/screenshot-2.png?rev=1776579\"><img src=\"https://ps.w.org/fancybox-for-wordpress/trunk/screenshot-2.png?rev=1776579\" alt=\"Basic settings on Options Page in the Admin Panel. This makes it very easy to customize the plugin to your needs\"></a><p>Basic settings on Options Page in the Admin Panel. This makes it very easy to customize the plugin to your needs</p></li><li><a href=\"https://ps.w.org/fancybox-for-wordpress/trunk/screenshot-1.png?rev=1776579\"><img src=\"https://ps.w.org/fancybox-for-wordpress/trunk/screenshot-1.png?rev=1776579\" alt=\"Simple example of fancybox on a post. <a href="http://blog.moskis.net/2012/01/20/teclado-apple-en-windows-7/">Live demo here</a>\"></a><p>Simple example of fancybox on a post. <a href=\"http://blog.moskis.net/2012/01/20/teclado-apple-en-windows-7/\">Live demo here</a></p></li></ol>\";}s:17:\"short_description\";s:140:\"Seamlessly integrates FancyBox lightbox into your WordPress blog: Upload, activate, and you're done. Additional configuration optional.\";s:13:\"download_link\";s:65:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.zip\";s:11:\"screenshots\";a:2:{i:2;a:2:{s:3:\"src\";s:74:\"https://ps.w.org/fancybox-for-wordpress/trunk/screenshot-2.png?rev=1776579\";s:7:\"caption\";s:112:\"Basic settings on Options Page in the Admin Panel. This makes it very easy to customize the plugin to your needs\";}i:1;a:2:{s:3:\"src\";s:74:\"https://ps.w.org/fancybox-for-wordpress/trunk/screenshot-1.png?rev=1776579\";s:7:\"caption\";s:128:\"Simple example of fancybox on a post. <a href=\"http://blog.moskis.net/2012/01/20/teclado-apple-en-windows-7/\">Live demo here</a>\";}}s:8:\"versions\";a:29:{s:3:\"1.0\";s:69:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.1.0.zip\";s:5:\"1.0.2\";s:71:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.1.0.2.zip\";s:3:\"1.1\";s:69:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.1.1.zip\";s:3:\"1.2\";s:69:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.1.2.zip\";s:3:\"1.3\";s:69:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.1.3.zip\";s:3:\"2.0\";s:69:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.2.0.zip\";s:3:\"2.1\";s:69:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.2.1.zip\";s:5:\"2.1.1\";s:71:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.2.1.1.zip\";s:3:\"2.2\";s:69:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.2.2.zip\";s:3:\"2.5\";s:69:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.2.5.zip\";s:5:\"2.5.1\";s:71:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.2.5.1.zip\";s:5:\"2.6.0\";s:71:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.2.6.0.zip\";s:5:\"2.7.0\";s:71:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.2.7.0.zip\";s:5:\"2.7.1\";s:71:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.2.7.1.zip\";s:5:\"2.7.2\";s:71:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.2.7.2.zip\";s:5:\"2.7.3\";s:71:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.2.7.3.zip\";s:5:\"2.7.4\";s:71:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.2.7.4.zip\";s:5:\"2.7.5\";s:71:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.2.7.5.zip\";s:5:\"3.0.0\";s:71:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.3.0.0.zip\";s:5:\"3.0.1\";s:71:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.3.0.1.zip\";s:6:\"3.0.10\";s:72:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.3.0.10.zip\";s:5:\"3.0.2\";s:71:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.3.0.2.zip\";s:5:\"3.0.3\";s:71:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.3.0.3.zip\";s:5:\"3.0.4\";s:71:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.3.0.4.zip\";s:5:\"3.0.5\";s:71:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.3.0.5.zip\";s:5:\"3.0.6\";s:71:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.3.0.6.zip\";s:5:\"3.0.7\";s:71:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.3.0.7.zip\";s:5:\"3.0.8\";s:71:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.3.0.8.zip\";s:5:\"3.0.9\";s:71:\"https://downloads.wordpress.org/plugin/fancybox-for-wordpress.3.0.9.zip\";}s:5:\"icons\";a:1:{s:7:\"default\";s:7150:\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiB2aWV3Ym94PSIwIDAgMTIwIDEyMCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0icmdiKDE1NCwgMTQwLCAxMjYpIiAvPjxjaXJjbGUgY3g9IjAiIGN5PSIwIiByPSIxNy41IiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMDQ2O3N0cm9rZS13aWR0aDo1cHg7IiAvPjxjaXJjbGUgY3g9IjEyMCIgY3k9IjAiIHI9IjE3LjUiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzIyMiIgc3R5bGU9Im9wYWNpdHk6MC4wNDY7c3Ryb2tlLXdpZHRoOjVweDsiIC8+PGNpcmNsZSBjeD0iMCIgY3k9IjEyMCIgcj0iMTcuNSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjA0NjtzdHJva2Utd2lkdGg6NXB4OyIgLz48Y2lyY2xlIGN4PSIxMjAiIGN5PSIxMjAiIHI9IjE3LjUiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzIyMiIgc3R5bGU9Im9wYWNpdHk6MC4wNDY7c3Ryb2tlLXdpZHRoOjVweDsiIC8+PGNpcmNsZSBjeD0iMjAiIGN5PSIwIiByPSIxNy41IiBmaWxsPSJub25lIiBzdHJva2U9IiNkZGQiIHN0eWxlPSJvcGFjaXR5OjAuMDcyO3N0cm9rZS13aWR0aDo1cHg7IiAvPjxjaXJjbGUgY3g9IjIwIiBjeT0iMTIwIiByPSIxNy41IiBmaWxsPSJub25lIiBzdHJva2U9IiNkZGQiIHN0eWxlPSJvcGFjaXR5OjAuMDcyO3N0cm9rZS13aWR0aDo1cHg7IiAvPjxjaXJjbGUgY3g9IjQwIiBjeT0iMCIgcj0iMTcuNSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjE1O3N0cm9rZS13aWR0aDo1cHg7IiAvPjxjaXJjbGUgY3g9IjQwIiBjeT0iMTIwIiByPSIxNy41IiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMTU7c3Ryb2tlLXdpZHRoOjVweDsiIC8+PGNpcmNsZSBjeD0iNjAiIGN5PSIwIiByPSIxNy41IiBmaWxsPSJub25lIiBzdHJva2U9IiNkZGQiIHN0eWxlPSJvcGFjaXR5OjAuMTQxMzMzMzMzMzMzMzM7c3Ryb2tlLXdpZHRoOjVweDsiIC8+PGNpcmNsZSBjeD0iNjAiIGN5PSIxMjAiIHI9IjE3LjUiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2RkZCIgc3R5bGU9Im9wYWNpdHk6MC4xNDEzMzMzMzMzMzMzMztzdHJva2Utd2lkdGg6NXB4OyIgLz48Y2lyY2xlIGN4PSI4MCIgY3k9IjAiIHI9IjE3LjUiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzIyMiIgc3R5bGU9Im9wYWNpdHk6MC4wMjg2NjY2NjY2NjY2Njc7c3Ryb2tlLXdpZHRoOjVweDsiIC8+PGNpcmNsZSBjeD0iODAiIGN5PSIxMjAiIHI9IjE3LjUiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzIyMiIgc3R5bGU9Im9wYWNpdHk6MC4wMjg2NjY2NjY2NjY2Njc7c3Ryb2tlLXdpZHRoOjVweDsiIC8+PGNpcmNsZSBjeD0iMTAwIiBjeT0iMCIgcj0iMTcuNSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZGRkIiBzdHlsZT0ib3BhY2l0eTowLjA3MjtzdHJva2Utd2lkdGg6NXB4OyIgLz48Y2lyY2xlIGN4PSIxMDAiIGN5PSIxMjAiIHI9IjE3LjUiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2RkZCIgc3R5bGU9Im9wYWNpdHk6MC4wNzI7c3Ryb2tlLXdpZHRoOjVweDsiIC8+PGNpcmNsZSBjeD0iMCIgY3k9IjIwIiByPSIxNy41IiBmaWxsPSJub25lIiBzdHJva2U9IiNkZGQiIHN0eWxlPSJvcGFjaXR5OjAuMDcyO3N0cm9rZS13aWR0aDo1cHg7IiAvPjxjaXJjbGUgY3g9IjEyMCIgY3k9IjIwIiByPSIxNy41IiBmaWxsPSJub25lIiBzdHJva2U9IiNkZGQiIHN0eWxlPSJvcGFjaXR5OjAuMDcyO3N0cm9rZS13aWR0aDo1cHg7IiAvPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjE3LjUiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2RkZCIgc3R5bGU9Im9wYWNpdHk6MC4xMDY2NjY2NjY2NjY2NztzdHJva2Utd2lkdGg6NXB4OyIgLz48Y2lyY2xlIGN4PSI0MCIgY3k9IjIwIiByPSIxNy41IiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMDI4NjY2NjY2NjY2NjY3O3N0cm9rZS13aWR0aDo1cHg7IiAvPjxjaXJjbGUgY3g9IjYwIiBjeT0iMjAiIHI9IjE3LjUiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2RkZCIgc3R5bGU9Im9wYWNpdHk6MC4xMjQ7c3Ryb2tlLXdpZHRoOjVweDsiIC8+PGNpcmNsZSBjeD0iODAiIGN5PSIyMCIgcj0iMTcuNSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjA5ODtzdHJva2Utd2lkdGg6NXB4OyIgLz48Y2lyY2xlIGN4PSIxMDAiIGN5PSIyMCIgcj0iMTcuNSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZGRkIiBzdHlsZT0ib3BhY2l0eTowLjEyNDtzdHJva2Utd2lkdGg6NXB4OyIgLz48Y2lyY2xlIGN4PSIwIiBjeT0iNDAiIHI9IjE3LjUiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2RkZCIgc3R5bGU9Im9wYWNpdHk6MC4xMjQ7c3Ryb2tlLXdpZHRoOjVweDsiIC8+PGNpcmNsZSBjeD0iMTIwIiBjeT0iNDAiIHI9IjE3LjUiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2RkZCIgc3R5bGU9Im9wYWNpdHk6MC4xMjQ7c3Ryb2tlLXdpZHRoOjVweDsiIC8+PGNpcmNsZSBjeD0iMjAiIGN5PSI0MCIgcj0iMTcuNSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZGRkIiBzdHlsZT0ib3BhY2l0eTowLjEyNDtzdHJva2Utd2lkdGg6NXB4OyIgLz48Y2lyY2xlIGN4PSI0MCIgY3k9IjQwIiByPSIxNy41IiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMDk4O3N0cm9rZS13aWR0aDo1cHg7IiAvPjxjaXJjbGUgY3g9IjYwIiBjeT0iNDAiIHI9IjE3LjUiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzIyMiIgc3R5bGU9Im9wYWNpdHk6MC4wNDY7c3Ryb2tlLXdpZHRoOjVweDsiIC8+PGNpcmNsZSBjeD0iODAiIGN5PSI0MCIgcj0iMTcuNSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjE1O3N0cm9rZS13aWR0aDo1cHg7IiAvPjxjaXJjbGUgY3g9IjEwMCIgY3k9IjQwIiByPSIxNy41IiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMTU7c3Ryb2tlLXdpZHRoOjVweDsiIC8+PGNpcmNsZSBjeD0iMCIgY3k9IjYwIiByPSIxNy41IiBmaWxsPSJub25lIiBzdHJva2U9IiNkZGQiIHN0eWxlPSJvcGFjaXR5OjAuMDI7c3Ryb2tlLXdpZHRoOjVweDsiIC8+PGNpcmNsZSBjeD0iMTIwIiBjeT0iNjAiIHI9IjE3LjUiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2RkZCIgc3R5bGU9Im9wYWNpdHk6MC4wMjtzdHJva2Utd2lkdGg6NXB4OyIgLz48Y2lyY2xlIGN4PSIyMCIgY3k9IjYwIiByPSIxNy41IiBmaWxsPSJub25lIiBzdHJva2U9IiNkZGQiIHN0eWxlPSJvcGFjaXR5OjAuMTA2NjY2NjY2NjY2Njc7c3Ryb2tlLXdpZHRoOjVweDsiIC8+PGNpcmNsZSBjeD0iNDAiIGN5PSI2MCIgcj0iMTcuNSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZGRkIiBzdHlsZT0ib3BhY2l0eTowLjA3MjtzdHJva2Utd2lkdGg6NXB4OyIgLz48Y2lyY2xlIGN4PSI2MCIgY3k9IjYwIiByPSIxNy41IiBmaWxsPSJub25lIiBzdHJva2U9IiNkZGQiIHN0eWxlPSJvcGFjaXR5OjAuMDU0NjY2NjY2NjY2NjY3O3N0cm9rZS13aWR0aDo1cHg7IiAvPjxjaXJjbGUgY3g9IjgwIiBjeT0iNjAiIHI9IjE3LjUiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2RkZCIgc3R5bGU9Im9wYWNpdHk6MC4xMDY2NjY2NjY2NjY2NztzdHJva2Utd2lkdGg6NXB4OyIgLz48Y2lyY2xlIGN4PSIxMDAiIGN5PSI2MCIgcj0iMTcuNSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZGRkIiBzdHlsZT0ib3BhY2l0eTowLjE0MTMzMzMzMzMzMzMzO3N0cm9rZS13aWR0aDo1cHg7IiAvPjxjaXJjbGUgY3g9IjAiIGN5PSI4MCIgcj0iMTcuNSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZGRkIiBzdHlsZT0ib3BhY2l0eTowLjAzNzMzMzMzMzMzMzMzMztzdHJva2Utd2lkdGg6NXB4OyIgLz48Y2lyY2xlIGN4PSIxMjAiIGN5PSI4MCIgcj0iMTcuNSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZGRkIiBzdHlsZT0ib3BhY2l0eTowLjAzNzMzMzMzMzMzMzMzMztzdHJva2Utd2lkdGg6NXB4OyIgLz48Y2lyY2xlIGN4PSIyMCIgY3k9IjgwIiByPSIxNy41IiBmaWxsPSJub25lIiBzdHJva2U9IiNkZGQiIHN0eWxlPSJvcGFjaXR5OjAuMTI0O3N0cm9rZS13aWR0aDo1cHg7IiAvPjxjaXJjbGUgY3g9IjQwIiBjeT0iODAiIHI9IjE3LjUiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzIyMiIgc3R5bGU9Im9wYWNpdHk6MC4xMzI2NjY2NjY2NjY2NztzdHJva2Utd2lkdGg6NXB4OyIgLz48Y2lyY2xlIGN4PSI2MCIgY3k9IjgwIiByPSIxNy41IiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMTU7c3Ryb2tlLXdpZHRoOjVweDsiIC8+PGNpcmNsZSBjeD0iODAiIGN5PSI4MCIgcj0iMTcuNSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZGRkIiBzdHlsZT0ib3BhY2l0eTowLjE0MTMzMzMzMzMzMzMzO3N0cm9rZS13aWR0aDo1cHg7IiAvPjxjaXJjbGUgY3g9IjEwMCIgY3k9IjgwIiByPSIxNy41IiBmaWxsPSJub25lIiBzdHJva2U9IiNkZGQiIHN0eWxlPSJvcGFjaXR5OjAuMTI0O3N0cm9rZS13aWR0aDo1cHg7IiAvPjxjaXJjbGUgY3g9IjAiIGN5PSIxMDAiIHI9IjE3LjUiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2RkZCIgc3R5bGU9Im9wYWNpdHk6MC4wMjtzdHJva2Utd2lkdGg6NXB4OyIgLz48Y2lyY2xlIGN4PSIxMjAiIGN5PSIxMDAiIHI9IjE3LjUiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2RkZCIgc3R5bGU9Im9wYWNpdHk6MC4wMjtzdHJva2Utd2lkdGg6NXB4OyIgLz48Y2lyY2xlIGN4PSIyMCIgY3k9IjEwMCIgcj0iMTcuNSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjAyODY2NjY2NjY2NjY2NztzdHJva2Utd2lkdGg6NXB4OyIgLz48Y2lyY2xlIGN4PSI0MCIgY3k9IjEwMCIgcj0iMTcuNSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjExNTMzMzMzMzMzMzMzO3N0cm9rZS13aWR0aDo1cHg7IiAvPjxjaXJjbGUgY3g9IjYwIiBjeT0iMTAwIiByPSIxNy41IiBmaWxsPSJub25lIiBzdHJva2U9IiNkZGQiIHN0eWxlPSJvcGFjaXR5OjAuMDcyO3N0cm9rZS13aWR0aDo1cHg7IiAvPjxjaXJjbGUgY3g9IjgwIiBjeT0iMTAwIiByPSIxNy41IiBmaWxsPSJub25lIiBzdHJva2U9IiMyMjIiIHN0eWxlPSJvcGFjaXR5OjAuMDgwNjY2NjY2NjY2NjY3O3N0cm9rZS13aWR0aDo1cHg7IiAvPjxjaXJjbGUgY3g9IjEwMCIgY3k9IjEwMCIgcj0iMTcuNSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMjIyIiBzdHlsZT0ib3BhY2l0eTowLjA5ODtzdHJva2Utd2lkdGg6NXB4OyIgLz48L3N2Zz4=\";}}','no'),(14079,'_transient_timeout_jetpack_https_test','1515284679','no'),(14080,'_transient_jetpack_https_test','1','no'),(14081,'_transient_timeout_jpp_li_e6266177e24ac18bfe6df5d3cb5db542','1515198339','no'),(14082,'_transient_jpp_li_e6266177e24ac18bfe6df5d3cb5db542','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:61:\"{\"trusted_header\":\"REMOTE_ADDR\",\"segments\":1,\"reverse\":false}\";s:17:\"seconds_remaining\";i:60;s:16:\"blocked_attempts\";N;s:6:\"expire\";i:1515198339;}','no'),(14083,'_transient_timeout_jpp_headers_updated_recently','1515284679','no'),(14084,'_transient_jpp_headers_updated_recently','1','no'),(14183,'_transient_doing_cron','1516717561.9184319972991943359375','yes'),(14235,'jetpack_nonce_1515728690_tvYqnqDdnC','1515728690','no'),(14236,'_transient_is_multi_author','0','yes'),(14237,'_transient_timeout_jetpack_idc_allowed','1516721062','no'),(14238,'_transient_jetpack_idc_allowed','1','no'),(14239,'_transient_timeout_jetpack_sync_last_checked_queue_state_sync','1516717814','no'),(14240,'_transient_jetpack_sync_last_checked_queue_state_sync','a:2:{i:0;i:0;i:1;i:0;}','no'),(14242,'_site_transient_timeout_theme_roots','1516719314','no'),(14243,'_site_transient_theme_roots','a:5:{s:5:\"illdy\";s:7:\"/themes\";s:5:\"intro\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(14249,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.9.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.9.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.9.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.9.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.9.2\";s:7:\"version\";s:5:\"4.9.2\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1516717566;s:15:\"version_checked\";s:5:\"4.9.2\";s:12:\"translations\";a:0:{}}','no'),(14251,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1516717567;s:7:\"checked\";a:5:{s:5:\"illdy\";s:5:\"2.0.4\";s:5:\"intro\";s:4:\"1.06\";s:13:\"twentyfifteen\";s:3:\"1.9\";s:15:\"twentyseventeen\";s:3:\"1.4\";s:13:\"twentysixteen\";s:3:\"1.4\";}s:8:\"response\";a:1:{s:5:\"illdy\";a:4:{s:5:\"theme\";s:5:\"illdy\";s:11:\"new_version\";s:5:\"2.0.5\";s:3:\"url\";s:35:\"https://wordpress.org/themes/illdy/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/illdy.2.0.5.zip\";}}s:12:\"translations\";a:0:{}}','no'),(14252,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1516717576;s:8:\"response\";a:4:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":11:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.0.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.0.2.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:7:\"default\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";s:7:\"default\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.1\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:41:\"google-maps-widget/google-maps-widget.php\";O:8:\"stdClass\":11:{s:2:\"id\";s:32:\"w.org/plugins/google-maps-widget\";s:4:\"slug\";s:18:\"google-maps-widget\";s:6:\"plugin\";s:41:\"google-maps-widget/google-maps-widget.php\";s:11:\"new_version\";s:4:\"3.76\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/google-maps-widget/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/google-maps-widget.3.76.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:71:\"https://ps.w.org/google-maps-widget/assets/icon-128x128.png?rev=1566956\";s:2:\"2x\";s:71:\"https://ps.w.org/google-maps-widget/assets/icon-256x256.png?rev=1625687\";s:7:\"default\";s:71:\"https://ps.w.org/google-maps-widget/assets/icon-256x256.png?rev=1625687\";}s:7:\"banners\";a:3:{s:2:\"2x\";s:74:\"https://ps.w.org/google-maps-widget/assets/banner-1544x500.png?rev=1653423\";s:2:\"1x\";s:73:\"https://ps.w.org/google-maps-widget/assets/banner-772x250.png?rev=1653423\";s:7:\"default\";s:74:\"https://ps.w.org/google-maps-widget/assets/banner-1544x500.png?rev=1653423\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.1\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:35:\"illdy-companion/illdy-companion.php\";O:8:\"stdClass\":11:{s:2:\"id\";s:29:\"w.org/plugins/illdy-companion\";s:4:\"slug\";s:15:\"illdy-companion\";s:6:\"plugin\";s:35:\"illdy-companion/illdy-companion.php\";s:11:\"new_version\";s:5:\"2.0.5\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/illdy-companion/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/illdy-companion.2.0.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/illdy-companion/assets/icon-256x256.jpg?rev=1492620\";s:7:\"default\";s:68:\"https://ps.w.org/illdy-companion/assets/icon-256x256.jpg?rev=1492620\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:70:\"https://ps.w.org/illdy-companion/assets/banner-772x250.jpg?rev=1492620\";s:7:\"default\";s:70:\"https://ps.w.org/illdy-companion/assets/banner-772x250.jpg?rev=1492620\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.7.8\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":11:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:5:\"5.7.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.5.7.1.zip\";s:5:\"icons\";a:4:{s:2:\"1x\";s:60:\"https://ps.w.org/jetpack/assets/icon-128x128.png?rev=1791404\";s:2:\"2x\";s:60:\"https://ps.w.org/jetpack/assets/icon-256x256.png?rev=1791404\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=1791404\";s:7:\"default\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=1791404\";}s:7:\"banners\";a:3:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=1791404\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=1791404\";s:7:\"default\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=1791404\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.1\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:7:{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:\"4.9.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.4.9.2.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-128x128.png?rev=984007\";s:2:\"2x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=984007\";s:7:\"default\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=984007\";}s:7:\"banners\";a:3:{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:7:\"default\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";}s:11:\"banners_rtl\";a:0:{}}s:21:\"free-cdn/free_cdn.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:22:\"w.org/plugins/free-cdn\";s:4:\"slug\";s:8:\"free-cdn\";s:6:\"plugin\";s:21:\"free-cdn/free_cdn.php\";s:11:\"new_version\";s:5:\"1.1.2\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/free-cdn/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/free-cdn.1.1.2.zip\";s:5:\"icons\";a:0:{}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:9:\"hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=969907\";s:2:\"2x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=969907\";s:7:\"default\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=969907\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:65:\"https://ps.w.org/hello-dolly/assets/banner-772x250.png?rev=478342\";s:7:\"default\";s:65:\"https://ps.w.org/hello-dolly/assets/banner-772x250.png?rev=478342\";}s:11:\"banners_rtl\";a:0:{}}s:39:\"kiwi-social-share/kiwi-social-share.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:31:\"w.org/plugins/kiwi-social-share\";s:4:\"slug\";s:17:\"kiwi-social-share\";s:6:\"plugin\";s:39:\"kiwi-social-share/kiwi-social-share.php\";s:11:\"new_version\";s:5:\"2.0.5\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/kiwi-social-share/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/kiwi-social-share.2.0.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/kiwi-social-share/assets/icon-256x256.png?rev=1445882\";s:7:\"default\";s:70:\"https://ps.w.org/kiwi-social-share/assets/icon-256x256.png?rev=1445882\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:72:\"https://ps.w.org/kiwi-social-share/assets/banner-772x250.png?rev=1445902\";s:7:\"default\";s:72:\"https://ps.w.org/kiwi-social-share/assets/banner-772x250.png?rev=1445902\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"w3-total-cache/w3-total-cache.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/w3-total-cache\";s:4:\"slug\";s:14:\"w3-total-cache\";s:6:\"plugin\";s:33:\"w3-total-cache/w3-total-cache.php\";s:11:\"new_version\";s:5:\"0.9.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/w3-total-cache/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/w3-total-cache.0.9.6.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:67:\"https://ps.w.org/w3-total-cache/assets/icon-128x128.png?rev=1041806\";s:2:\"2x\";s:67:\"https://ps.w.org/w3-total-cache/assets/icon-256x256.png?rev=1041806\";s:7:\"default\";s:67:\"https://ps.w.org/w3-total-cache/assets/icon-256x256.png?rev=1041806\";}s:7:\"banners\";a:2:{s:2:\"1x\";s:69:\"https://ps.w.org/w3-total-cache/assets/banner-772x250.jpg?rev=1041806\";s:7:\"default\";s:69:\"https://ps.w.org/w3-total-cache/assets/banner-772x250.jpg?rev=1041806\";}s:11:\"banners_rtl\";a:0:{}}s:27:\"wp-optimize/wp-optimize.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/wp-optimize\";s:4:\"slug\";s:11:\"wp-optimize\";s:6:\"plugin\";s:27:\"wp-optimize/wp-optimize.php\";s:11:\"new_version\";s:5:\"2.1.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/wp-optimize/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-optimize.2.1.1.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:64:\"https://ps.w.org/wp-optimize/assets/icon-128x128.png?rev=1552899\";s:2:\"2x\";s:64:\"https://ps.w.org/wp-optimize/assets/icon-256x256.png?rev=1552899\";s:7:\"default\";s:64:\"https://ps.w.org/wp-optimize/assets/icon-256x256.png?rev=1552899\";}s:7:\"banners\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/wp-optimize/assets/banner-1544x500.png?rev=1552899\";s:2:\"1x\";s:66:\"https://ps.w.org/wp-optimize/assets/banner-772x250.png?rev=1552899\";s:7:\"default\";s:67:\"https://ps.w.org/wp-optimize/assets/banner-1544x500.png?rev=1552899\";}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:\"2.7.6\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-smushit/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/wp-smushit.2.7.6.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-128x128.jpg?rev=1513049\";s:2:\"2x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-256x256.jpg?rev=1513049\";s:7:\"default\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-256x256.jpg?rev=1513049\";}s:7:\"banners\";a:3:{s:2:\"2x\";s:66:\"https://ps.w.org/wp-smushit/assets/banner-1544x500.jpg?rev=1642596\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-smushit/assets/banner-772x250.jpg?rev=1642596\";s:7:\"default\";s:66:\"https://ps.w.org/wp-smushit/assets/banner-1544x500.jpg?rev=1642596\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(14254,'_transient_timeout_jetpack_sync_constants_await','1516721179','no'),(14255,'_transient_jetpack_sync_constants_await','1516717579.5456','no'),(14256,'_transient_timeout_jetpack_sync_callables_await','1516717639','no'),(14257,'_transient_jetpack_sync_callables_await','1516717579.5612','no'),(14258,'_transient_timeout_jetpack_is_single_user','1516760779','no'),(14259,'_transient_jetpack_is_single_user','1','no'),(14261,'jetpack_nonce_1516717587_31Vtjs3Xv8','1516717588','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_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=1163 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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 (1,2,'_wp_page_template','default'),(23,14,'_edit_last','1'),(24,14,'_edit_lock','1484322328:1'),(31,19,'_wp_attached_file','2017/01/standard-bar-logo-trans-e1484695204945.png'),(32,19,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:50:\"2017/01/standard-bar-logo-trans-e1484695204945.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"standard-bar-logo-trans-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"standard-bar-logo-trans-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"standard-bar-logo-trans-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"standard-bar-logo-trans-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"intro-thumb\";a:4:{s:4:\"file\";s:35:\"standard-bar-logo-trans-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(33,21,'_wp_attached_file','2017/01/standard-bar-logo-sticker-concept-e1484696056989.png'),(34,21,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:100;s:4:\"file\";s:60:\"2017/01/standard-bar-logo-sticker-concept-e1484696056989.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"standard-bar-logo-sticker-concept-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:45:\"standard-bar-logo-sticker-concept-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"standard-bar-logo-sticker-concept-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"standard-bar-logo-sticker-concept-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"intro-thumb\";a:4:{s:4:\"file\";s:45:\"standard-bar-logo-sticker-concept-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(39,23,'_wp_attached_file','2017/01/IMG_95751.jpg'),(40,23,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:21:\"2017/01/IMG_95751.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_95751-150x150.jpg\";s:5:\"width\";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:\"IMG_95751-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"intro-thumb\";a:4:{s:4:\"file\";s:21:\"IMG_95751-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(41,24,'_wp_attached_file','2017/01/cropped-IMG_95751.jpg'),(42,24,'_wp_attachment_context','site-icon'),(43,24,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:29:\"2017/01/cropped-IMG_95751.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"cropped-IMG_95751-150x150.jpg\";s:5:\"width\";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:\"cropped-IMG_95751-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"intro-thumb\";a:4:{s:4:\"file\";s:29:\"cropped-IMG_95751-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:29:\"cropped-IMG_95751-270x270.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:29:\"cropped-IMG_95751-192x192.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:29:\"cropped-IMG_95751-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:27:\"cropped-IMG_95751-32x32.jpg\";s:5:\"width\";i:32;s:6:\"height\";i:32;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:{}}}'),(46,21,'_wp_attachment_custom_header_last_used_intro','1484338547'),(47,21,'_wp_attachment_is_custom_header','intro'),(48,26,'_wp_attached_file','2017/01/cropped-standard-bar-logo-trans-e1484695905455.png'),(49,26,'_wp_attachment_context','custom-header'),(50,26,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:84;s:4:\"file\";s:58:\"2017/01/cropped-standard-bar-logo-trans-e1484695905455.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"cropped-standard-bar-logo-trans-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:43:\"cropped-standard-bar-logo-trans-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"cropped-standard-bar-logo-trans-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"cropped-standard-bar-logo-trans-1024x575.png\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"intro-thumb\";a:4:{s:4:\"file\";s:43:\"cropped-standard-bar-logo-trans-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(51,26,'_wp_attachment_custom_header_last_used_intro','1484338574'),(52,26,'_wp_attachment_is_custom_header','intro'),(53,28,'_wp_attached_file','2017/01/000043250008resized.jpg'),(54,28,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1324;s:6:\"height\";i:1080;s:4:\"file\";s:31:\"2017/01/000043250008resized.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"000043250008resized-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"000043250008resized-300x245.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"000043250008resized-768x626.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:626;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"000043250008resized-1024x835.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:835;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"intro-thumb\";a:4:{s:4:\"file\";s:31:\"000043250008resized-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:13:\"EZ Controller\";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:{}}}'),(55,29,'_wp_attached_file','2017/01/cropped-000043250008resized.jpg'),(56,29,'_wp_attachment_context','custom-header'),(57,29,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:39:\"2017/01/cropped-000043250008resized.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-000043250008resized-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"cropped-000043250008resized-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:39:\"cropped-000043250008resized-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:40:\"cropped-000043250008resized-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"intro-thumb\";a:4:{s:4:\"file\";s:39:\"cropped-000043250008resized-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(58,29,'_wp_attachment_custom_header_last_used_intro','1484338790'),(59,29,'_wp_attachment_is_custom_header','intro'),(64,32,'_wp_attached_file','2017/01/11855849_10155837807335364_8050995259848581690_n.jpg'),(65,32,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:960;s:4:\"file\";s:60:\"2017/01/11855849_10155837807335364_8050995259848581690_n.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"11855849_10155837807335364_8050995259848581690_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"11855849_10155837807335364_8050995259848581690_n-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:60:\"11855849_10155837807335364_8050995259848581690_n-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"intro-thumb\";a:4:{s:4:\"file\";s:60:\"11855849_10155837807335364_8050995259848581690_n-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(66,32,'_wp_attachment_is_custom_background','intro'),(77,38,'_edit_last','1'),(78,38,'_edit_lock','1513353452:1'),(79,38,'_wp_page_template','default'),(91,47,'_wp_attached_file','2017/01/standard-bar-logo-sticker-concept-1.png'),(92,47,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:47:\"2017/01/standard-bar-logo-sticker-concept-1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"standard-bar-logo-sticker-concept-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:47:\"standard-bar-logo-sticker-concept-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"standard-bar-logo-sticker-concept-1-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"standard-bar-logo-sticker-concept-1-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"intro-thumb\";a:4:{s:4:\"file\";s:47:\"standard-bar-logo-sticker-concept-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(93,49,'_wp_attached_file','2017/01/cropped-cropped-standard-bar-logo-trans-e1484695302685.png'),(94,49,'_wp_attachment_context','custom-logo'),(95,49,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:628;s:4:\"file\";s:66:\"2017/01/cropped-cropped-standard-bar-logo-trans-e1484695302685.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"cropped-cropped-standard-bar-logo-trans-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:51:\"cropped-cropped-standard-bar-logo-trans-300x236.png\";s:5:\"width\";i:300;s:6:\"height\";i:236;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"cropped-cropped-standard-bar-logo-trans-768x603.png\";s:5:\"width\";i:768;s:6:\"height\";i:603;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"cropped-cropped-standard-bar-logo-trans-1024x804.png\";s:5:\"width\";i:1024;s:6:\"height\";i:804;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"intro-thumb\";a:4:{s:4:\"file\";s:51:\"cropped-cropped-standard-bar-logo-trans-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(96,50,'_wp_attached_file','2017/01/cropped-standard-bar-logo-sticker-concept.png'),(97,50,'_wp_attachment_context','custom-logo'),(98,50,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1099;s:6:\"height\";i:298;s:4:\"file\";s:53:\"2017/01/cropped-standard-bar-logo-sticker-concept.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"cropped-standard-bar-logo-sticker-concept-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:52:\"cropped-standard-bar-logo-sticker-concept-300x81.png\";s:5:\"width\";i:300;s:6:\"height\";i:81;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"cropped-standard-bar-logo-sticker-concept-768x208.png\";s:5:\"width\";i:768;s:6:\"height\";i:208;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:54:\"cropped-standard-bar-logo-sticker-concept-1024x278.png\";s:5:\"width\";i:1024;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"intro-thumb\";a:4:{s:4:\"file\";s:53:\"cropped-standard-bar-logo-sticker-concept-500x298.png\";s:5:\"width\";i:500;s:6:\"height\";i:298;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:{}}}'),(101,51,'_wp_attached_file','2017/01/2.jpg'),(102,51,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2846;s:6:\"height\";i:4269;s:4:\"file\";s:13:\"2017/01/2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"2-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"2-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"2-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:13:\"2-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:11:\"2-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:13:\"2-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:13:\"2-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:13:\"2-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:13:\"2-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:13:\"2-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1429872347\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(103,51,'_wp_attachment_is_custom_background','illdy'),(106,54,'_wp_attached_file','2017/01/cropped-cropped-000043250008resized.jpg'),(107,54,'_wp_attachment_context','custom-header'),(108,54,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:531;s:4:\"file\";s:47:\"2017/01/cropped-cropped-000043250008resized.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"cropped-cropped-000043250008resized-150x150.jpg\";s:5:\"width\";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:\"cropped-cropped-000043250008resized-300x83.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:83;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"cropped-cropped-000043250008resized-768x212.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"cropped-cropped-000043250008resized-1024x283.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:47:\"cropped-cropped-000043250008resized-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:45:\"cropped-cropped-000043250008resized-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:47:\"cropped-cropped-000043250008resized-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:47:\"cropped-cropped-000043250008resized-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:47:\"cropped-cropped-000043250008resized-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:47:\"cropped-cropped-000043250008resized-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:47:\"cropped-cropped-000043250008resized-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(109,54,'_wp_attachment_custom_header_last_used_illdy','1484343334'),(110,54,'_wp_attachment_is_custom_header','illdy'),(111,55,'_wp_attached_file','2017/01/24.jpg'),(112,55,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3131;s:6:\"height\";i:3131;s:4:\"file\";s:14:\"2017/01/24.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"24-150x150.jpg\";s:5:\"width\";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:\"24-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:14:\"24-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"24-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:14:\"24-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:12:\"24-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:14:\"24-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:14:\"24-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:14:\"24-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:14:\"24-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:14:\"24-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1429875095\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"51\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(113,56,'_wp_attached_file','2017/01/cropped-24.jpg'),(114,56,'_wp_attachment_context','custom-header'),(115,56,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:531;s:4:\"file\";s:22:\"2017/01/cropped-24.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cropped-24-150x150.jpg\";s:5:\"width\";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:\"cropped-24-300x83.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:83;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"cropped-24-768x212.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"cropped-24-1024x283.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:22:\"cropped-24-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:20:\"cropped-24-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:22:\"cropped-24-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:22:\"cropped-24-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:22:\"cropped-24-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:22:\"cropped-24-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:22:\"cropped-24-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(116,56,'_wp_attachment_custom_header_last_used_illdy','1484343410'),(117,56,'_wp_attachment_is_custom_header','illdy'),(118,57,'_wp_attached_file','2017/01/24crop.jpg'),(119,57,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:532;s:4:\"file\";s:18:\"2017/01/24crop.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"24crop-150x150.jpg\";s:5:\"width\";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:\"24crop-300x83.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:83;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"24crop-768x213.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"24crop-1024x284.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:18:\"24crop-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:16:\"24crop-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:18:\"24crop-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:18:\"24crop-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:18:\"24crop-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:18:\"24crop-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:18:\"24crop-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1429875095\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"51\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(120,58,'_wp_attached_file','2017/01/cropped-24crop.jpg'),(121,58,'_wp_attachment_context','custom-header'),(122,58,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:532;s:4:\"file\";s:26:\"2017/01/cropped-24crop.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"cropped-24crop-150x150.jpg\";s:5:\"width\";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:\"cropped-24crop-300x83.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:83;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"cropped-24crop-768x213.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"cropped-24crop-1024x284.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:26:\"cropped-24crop-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:24:\"cropped-24crop-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:26:\"cropped-24crop-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:26:\"cropped-24crop-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:26:\"cropped-24crop-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:26:\"cropped-24crop-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:26:\"cropped-24crop-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(123,58,'_wp_attachment_custom_header_last_used_illdy','1484345530'),(124,58,'_wp_attachment_is_custom_header','illdy'),(192,67,'_form','<label> Your Name (required)\n [text* your-name] </label>\n\n<label> Your Email (required)\n [email* your-email] </label>\n\n<label> Subject\n [text your-subject] </label>\n\n<label> Your Message\n [textarea your-message] </label>\n\n[submit \"Send\"]'),(193,67,'_mail','a:8:{s:7:\"subject\";s:39:\"Standard Cycle Company \"[your-subject]\"\";s:6:\"sender\";s:36:\"[your-name] <wordpress@stdcycle.com>\";s:4:\"body\";s:187:\"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 Standard Cycle Company (http://stdcycle.com/company)\";s:9:\"recipient\";s:18:\"stdcycle@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(194,67,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:39:\"Standard Cycle Company \"[your-subject]\"\";s:6:\"sender\";s:47:\"Standard Cycle Company <wordpress@stdcycle.com>\";s:4:\"body\";s:129:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Standard Cycle Company (http://stdcycle.com/company)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:28:\"Reply-To: stdcycle@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(195,67,'_messages','a:8:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";}'),(196,67,'_additional_settings',NULL),(197,67,'_locale','en_US'),(206,2,'_edit_lock','1484684044:1'),(224,81,'_publicize_pending','1'),(228,81,'_jetpack_dont_email_post_to_subs','1'),(250,97,'_wp_attached_file','2017/01/STD1-7.jpg'),(251,97,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2250;s:6:\"height\";i:1500;s:4:\"file\";s:18:\"2017/01/STD1-7.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"STD1-7-150x150.jpg\";s:5:\"width\";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:\"STD1-7-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:18:\"STD1-7-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:19:\"STD1-7-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:18:\"STD1-7-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:16:\"STD1-7-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:18:\"STD1-7-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:18:\"STD1-7-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:18:\"STD1-7-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:18:\"STD1-7-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:18:\"STD1-7-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"X-T10\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1484305068\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(255,19,'_edit_lock','1484693493:1'),(260,99,'_wp_attached_file','2017/01/standard-bar-logo-trans-1.png'),(261,99,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2600;s:6:\"height\";i:1733;s:4:\"file\";s:37:\"2017/01/standard-bar-logo-trans-1.png\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"standard-bar-logo-trans-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:37:\"standard-bar-logo-trans-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"standard-bar-logo-trans-1-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"standard-bar-logo-trans-1-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:37:\"standard-bar-logo-trans-1-750x500.png\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:35:\"standard-bar-logo-trans-1-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:37:\"standard-bar-logo-trans-1-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:37:\"standard-bar-logo-trans-1-360x213.png\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:37:\"standard-bar-logo-trans-1-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:37:\"standard-bar-logo-trans-1-476x476.png\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:37:\"standard-bar-logo-trans-1-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(262,19,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2600;s:6:\"height\";i:1733;s:4:\"file\";s:27:\"standard-bar-logo-trans.png\";}}'),(263,49,'_edit_lock','1484696610:1'),(264,49,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1154;s:6:\"height\";i:906;s:4:\"file\";s:43:\"cropped-cropped-standard-bar-logo-trans.png\";}}'),(265,49,'_edit_last','1'),(266,49,'_oembed_4e3da912b23466279ff39d509916b946','{{unknown}}'),(267,100,'_wp_attached_file','2017/01/cropped-standard-bar-logo-trans-e1484695204945.png'),(268,100,'_wp_attachment_context','custom-logo'),(269,100,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:504;s:6:\"height\";i:394;s:4:\"file\";s:58:\"2017/01/cropped-standard-bar-logo-trans-e1484695204945.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"cropped-standard-bar-logo-trans-e1484695204945-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:58:\"cropped-standard-bar-logo-trans-e1484695204945-300x235.png\";s:5:\"width\";i:300;s:6:\"height\";i:235;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:56:\"cropped-standard-bar-logo-trans-e1484695204945-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:58:\"cropped-standard-bar-logo-trans-e1484695204945-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:58:\"cropped-standard-bar-logo-trans-e1484695204945-360x213.png\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:58:\"cropped-standard-bar-logo-trans-e1484695204945-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:58:\"cropped-standard-bar-logo-trans-e1484695204945-476x394.png\";s:5:\"width\";i:476;s:6:\"height\";i:394;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:58:\"cropped-standard-bar-logo-trans-e1484695204945-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(270,21,'_edit_lock','1484696606:1'),(271,21,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:37:\"standard-bar-logo-sticker-concept.png\";}s:18:\"full-1484696056989\";a:3:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:52:\"standard-bar-logo-sticker-concept-e1484695461151.png\";}}'),(272,21,'_edit_last','1'),(273,102,'_wp_attached_file','2017/01/cropped-standard-bar-logo-sticker-concept-e1484695461151.png'),(274,102,'_wp_attachment_context','custom-logo'),(275,102,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:534;s:6:\"height\";i:155;s:4:\"file\";s:68:\"2017/01/cropped-standard-bar-logo-sticker-concept-e1484695461151.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"cropped-standard-bar-logo-sticker-concept-e1484695461151-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:67:\"cropped-standard-bar-logo-sticker-concept-e1484695461151-300x87.png\";s:5:\"width\";i:300;s:6:\"height\";i:87;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:66:\"cropped-standard-bar-logo-sticker-concept-e1484695461151-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:68:\"cropped-standard-bar-logo-sticker-concept-e1484695461151-240x155.png\";s:5:\"width\";i:240;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:68:\"cropped-standard-bar-logo-sticker-concept-e1484695461151-360x155.png\";s:5:\"width\";i:360;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:68:\"cropped-standard-bar-logo-sticker-concept-e1484695461151-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:68:\"cropped-standard-bar-logo-sticker-concept-e1484695461151-476x155.png\";s:5:\"width\";i:476;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:68:\"cropped-standard-bar-logo-sticker-concept-e1484695461151-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(276,26,'_edit_lock','1484696608:1'),(277,26,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1920;s:6:\"height\";i:1079;s:4:\"file\";s:35:\"cropped-standard-bar-logo-trans.png\";}}'),(278,26,'_edit_last','1'),(279,105,'_wp_attached_file','2017/01/cropped-standard-bar-logo-sticker-concept-e1484696056989.png'),(280,105,'_wp_attachment_context','custom-logo'),(281,105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:34;s:4:\"file\";s:68:\"2017/01/cropped-standard-bar-logo-sticker-concept-e1484696056989.png\";s:5:\"sizes\";a:1:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:66:\"cropped-standard-bar-logo-sticker-concept-e1484696056989-70x34.png\";s:5:\"width\";i:70;s:6:\"height\";i:34;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:{}}}'),(282,108,'_wp_attached_file','2017/01/cropped-cropped-standard-bar-logo-trans-e1484695204945.png'),(283,108,'_wp_attachment_context','custom-logo'),(284,108,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:305;s:6:\"height\";i:250;s:4:\"file\";s:66:\"2017/01/cropped-cropped-standard-bar-logo-trans-e1484695204945.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:66:\"cropped-cropped-standard-bar-logo-trans-e1484695204945-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:66:\"cropped-cropped-standard-bar-logo-trans-e1484695204945-300x246.png\";s:5:\"width\";i:300;s:6:\"height\";i:246;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:64:\"cropped-cropped-standard-bar-logo-trans-e1484695204945-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:66:\"cropped-cropped-standard-bar-logo-trans-e1484695204945-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:66:\"cropped-cropped-standard-bar-logo-trans-e1484695204945-305x213.png\";s:5:\"width\";i:305;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:66:\"cropped-cropped-standard-bar-logo-trans-e1484695204945-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:66:\"cropped-cropped-standard-bar-logo-trans-e1484695204945-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(285,110,'_wp_attached_file','2017/01/cropped-STD1-7.jpg'),(286,110,'_wp_attachment_context','custom-header'),(287,110,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:26:\"2017/01/cropped-STD1-7.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"cropped-STD1-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"cropped-STD1-7-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:26:\"cropped-STD1-7-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:27:\"cropped-STD1-7-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"intro-thumb\";a:4:{s:4:\"file\";s:26:\"cropped-STD1-7-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(288,110,'_wp_attachment_custom_header_last_used_intro','1484696706'),(289,110,'_wp_attachment_is_custom_header','intro'),(290,111,'_wp_attached_file','2017/01/cropped-standard-bar-logo-sticker-concept-e1484696056989-1.png'),(291,111,'_wp_attachment_context','custom-logo'),(292,111,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:30;s:4:\"file\";s:70:\"2017/01/cropped-standard-bar-logo-sticker-concept-e1484696056989-1.png\";s:5:\"sizes\";a:1:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:68:\"cropped-standard-bar-logo-sticker-concept-e1484696056989-1-70x30.png\";s:5:\"width\";i:70;s:6:\"height\";i:30;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:{}}}'),(326,117,'_wp_attached_file','2017/01/cropped-standard-bar-logo-sticker-concept-e1484696056989-2.png'),(327,117,'_wp_attachment_context','custom-logo'),(328,117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:31;s:4:\"file\";s:70:\"2017/01/cropped-standard-bar-logo-sticker-concept-e1484696056989-2.png\";s:5:\"sizes\";a:1:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:68:\"cropped-standard-bar-logo-sticker-concept-e1484696056989-2-70x31.png\";s:5:\"width\";i:70;s:6:\"height\";i:31;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:{}}}'),(329,118,'_wp_attached_file','2017/01/STD1-11.jpg'),(330,118,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2250;s:6:\"height\";i:1500;s:4:\"file\";s:19:\"2017/01/STD1-11.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"STD1-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:19:\"STD1-11-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:19:\"STD1-11-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:20:\"STD1-11-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:19:\"STD1-11-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:17:\"STD1-11-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:19:\"STD1-11-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:19:\"STD1-11-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:19:\"STD1-11-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:19:\"STD1-11-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:19:\"STD1-11-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"X-T10\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1484305156\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(331,118,'_wp_attachment_is_custom_background','illdy'),(335,121,'_wp_attached_file','2017/01/STD3-1-e1484845196977.jpg'),(336,121,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:810;s:4:\"file\";s:33:\"2017/01/STD3-1-e1484845196977.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"STD3-1-e1484845196977-150x150.jpg\";s:5:\"width\";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:\"STD3-1-e1484845196977-300x162.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"STD3-1-e1484845196977-768x415.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"STD3-1-e1484845196977-1024x553.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:33:\"STD3-1-e1484845196977-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:31:\"STD3-1-e1484845196977-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:33:\"STD3-1-e1484845196977-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:33:\"STD3-1-e1484845196977-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:33:\"STD3-1-e1484845196977-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:33:\"STD3-1-e1484845196977-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:33:\"STD3-1-e1484845196977-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"X-T10\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1484305068\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(346,125,'_wp_attached_file','2017/01/STD-Badge-150.png'),(347,125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:25:\"2017/01/STD-Badge-150.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:23:\"STD-Badge-150-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:25:\"STD-Badge-150-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:25:\"STD-Badge-150-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(366,135,'_wp_attached_file','2017/01/STD-Logo.png'),(367,135,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:908;s:6:\"height\";i:725;s:4:\"file\";s:20:\"2017/01/STD-Logo.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"STD-Logo-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:\"STD-Logo-300x240.png\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"STD-Logo-768x613.png\";s:5:\"width\";i:768;s:6:\"height\";i:613;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"STD-Logo-750x500.png\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"STD-Logo-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"STD-Logo-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"STD-Logo-360x213.png\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"STD-Logo-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"STD-Logo-476x476.png\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"STD-Logo-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(368,38,'_jetpack_dont_email_post_to_subs','1'),(369,137,'_wp_attached_file','2017/01/STD-Logo-1.png'),(370,137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:908;s:6:\"height\";i:725;s:4:\"file\";s:22:\"2017/01/STD-Logo-1.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"STD-Logo-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:\"STD-Logo-1-300x240.png\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"STD-Logo-1-768x613.png\";s:5:\"width\";i:768;s:6:\"height\";i:613;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:22:\"STD-Logo-1-750x500.png\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:20:\"STD-Logo-1-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:22:\"STD-Logo-1-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:22:\"STD-Logo-1-360x213.png\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:22:\"STD-Logo-1-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:22:\"STD-Logo-1-476x476.png\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:22:\"STD-Logo-1-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(401,158,'_wp_attached_file','2017/01/STD-Badge_150.png'),(402,158,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:25:\"2017/01/STD-Badge_150.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:23:\"STD-Badge_150-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:25:\"STD-Badge_150-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:25:\"STD-Badge_150-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(424,168,'_wp_attached_file','2017/01/WrenchPiston.png'),(425,168,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:427;s:6:\"height\";i:426;s:4:\"file\";s:24:\"2017/01/WrenchPiston.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"WrenchPiston-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"WrenchPiston-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:22:\"WrenchPiston-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:24:\"WrenchPiston-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:24:\"WrenchPiston-360x213.png\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:24:\"WrenchPiston-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:24:\"WrenchPiston-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(426,168,'_edit_lock','1484757582:1'),(427,169,'_edit_last','1'),(428,169,'_wp_page_template','default'),(429,169,'_publicize_pending','1'),(430,169,'_edit_lock','1510250686:1'),(449,169,'_jetpack_dont_email_post_to_subs','1'),(463,169,'_thumbnail_id','121'),(464,180,'_edit_last','1'),(465,180,'_edit_lock','1513347368:1'),(466,180,'_wp_page_template','default'),(467,180,'_publicize_pending','1'),(468,182,'_edit_last','1'),(469,182,'_edit_lock','1484952048:1'),(470,182,'_wp_page_template','default'),(471,182,'_publicize_pending','1'),(472,184,'_edit_last','1'),(473,184,'_edit_lock','1513279149:1'),(474,184,'_wp_page_template','default'),(475,184,'_publicize_pending','1'),(476,186,'_edit_last','1'),(477,186,'_edit_lock','1484843060:1'),(478,186,'_wp_page_template','default'),(479,186,'_publicize_pending','1'),(480,188,'_edit_last','1'),(481,188,'_edit_lock','1484843060:1'),(482,188,'_wp_page_template','default'),(483,188,'_publicize_pending','1'),(484,186,'_jetpack_dont_email_post_to_subs','1'),(485,180,'_jetpack_dont_email_post_to_subs','1'),(486,188,'_jetpack_dont_email_post_to_subs','1'),(487,182,'_jetpack_dont_email_post_to_subs','1'),(488,184,'_jetpack_dont_email_post_to_subs','1'),(489,190,'_menu_item_type','post_type'),(490,190,'_menu_item_menu_item_parent','0'),(491,190,'_menu_item_object_id','169'),(492,190,'_menu_item_object','page'),(493,190,'_menu_item_target',''),(494,190,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(495,190,'_menu_item_xfn',''),(496,190,'_menu_item_url',''),(498,191,'_menu_item_type','post_type'),(499,191,'_menu_item_menu_item_parent','192'),(500,191,'_menu_item_object_id','188'),(501,191,'_menu_item_object','page'),(502,191,'_menu_item_target',''),(503,191,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(504,191,'_menu_item_xfn',''),(505,191,'_menu_item_url',''),(507,192,'_menu_item_type','post_type'),(508,192,'_menu_item_menu_item_parent','190'),(509,192,'_menu_item_object_id','186'),(510,192,'_menu_item_object','page'),(511,192,'_menu_item_target',''),(512,192,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(513,192,'_menu_item_xfn',''),(514,192,'_menu_item_url',''),(516,193,'_menu_item_type','post_type'),(517,193,'_menu_item_menu_item_parent','0'),(518,193,'_menu_item_object_id','184'),(519,193,'_menu_item_object','page'),(520,193,'_menu_item_target',''),(521,193,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(522,193,'_menu_item_xfn',''),(523,193,'_menu_item_url',''),(525,194,'_menu_item_type','post_type'),(526,194,'_menu_item_menu_item_parent','192'),(527,194,'_menu_item_object_id','182'),(528,194,'_menu_item_object','page'),(529,194,'_menu_item_target',''),(530,194,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(531,194,'_menu_item_xfn',''),(532,194,'_menu_item_url',''),(534,195,'_menu_item_type','post_type'),(535,195,'_menu_item_menu_item_parent','190'),(536,195,'_menu_item_object_id','180'),(537,195,'_menu_item_object','page'),(538,195,'_menu_item_target',''),(539,195,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(540,195,'_menu_item_xfn',''),(541,195,'_menu_item_url',''),(543,190,'_publicize_pending','1'),(544,195,'_publicize_pending','1'),(545,194,'_publicize_pending','1'),(546,193,'_publicize_pending','1'),(547,191,'_publicize_pending','1'),(548,192,'_publicize_pending','1'),(549,121,'_edit_lock','1484764536:1'),(550,121,'_wp_attachment_backup_sizes','a:25:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2250;s:6:\"height\";i:1500;s:4:\"file\";s:10:\"STD3-1.jpg\";}s:18:\"full-1484845103850\";a:3:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"STD3-1-e1484764666440.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:18:\"STD3-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:18:\"STD3-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:18:\"STD3-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:19:\"STD3-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"illdy-blog-list-orig\";a:4:{s:4:\"file\";s:18:\"STD3-1-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"illdy-widget-recent-posts-orig\";a:4:{s:4:\"file\";s:16:\"STD3-1-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"illdy-blog-post-related-articles-orig\";a:4:{s:4:\"file\";s:18:\"STD3-1-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:33:\"illdy-front-page-latest-news-orig\";a:4:{s:4:\"file\";s:18:\"STD3-1-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"illdy-front-page-testimonials-orig\";a:4:{s:4:\"file\";s:18:\"STD3-1-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"illdy-front-page-projects-orig\";a:4:{s:4:\"file\";s:18:\"STD3-1-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-person-orig\";a:4:{s:4:\"file\";s:18:\"STD3-1-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"full-1484845196977\";a:3:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"STD3-1-e1484845103850.jpg\";}s:23:\"thumbnail-1484845196977\";a:4:{s:4:\"file\";s:33:\"STD3-1-e1484845103850-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"medium-1484845196977\";a:4:{s:4:\"file\";s:33:\"STD3-1-e1484845103850-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"medium_large-1484845196977\";a:4:{s:4:\"file\";s:33:\"STD3-1-e1484845103850-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"large-1484845196977\";a:4:{s:4:\"file\";s:34:\"STD3-1-e1484845103850-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-blog-list-1484845196977\";a:4:{s:4:\"file\";s:33:\"STD3-1-e1484845103850-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:39:\"illdy-widget-recent-posts-1484845196977\";a:4:{s:4:\"file\";s:31:\"STD3-1-e1484845103850-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:46:\"illdy-blog-post-related-articles-1484845196977\";a:4:{s:4:\"file\";s:33:\"STD3-1-e1484845103850-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:42:\"illdy-front-page-latest-news-1484845196977\";a:4:{s:4:\"file\";s:33:\"STD3-1-e1484845103850-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:43:\"illdy-front-page-testimonials-1484845196977\";a:4:{s:4:\"file\";s:33:\"STD3-1-e1484845103850-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:39:\"illdy-front-page-projects-1484845196977\";a:4:{s:4:\"file\";s:33:\"STD3-1-e1484845103850-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"illdy-front-page-person-1484845196977\";a:4:{s:4:\"file\";s:33:\"STD3-1-e1484845103850-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(551,121,'_edit_last','1'),(564,202,'_wp_attached_file','2017/01/000043250006-e1484774497731.jpg'),(565,202,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:1765;s:4:\"file\";s:39:\"2017/01/000043250006-e1484774497731.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"000043250006-150x150.jpg\";s:5:\"width\";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:\"000043250006-245x300.jpg\";s:5:\"width\";i:245;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"000043250006-768x941.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:941;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"000043250006-836x1024.jpg\";s:5:\"width\";i:836;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:24:\"000043250006-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:22:\"000043250006-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:24:\"000043250006-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:24:\"000043250006-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:24:\"000043250006-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:24:\"000043250006-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:24:\"000043250006-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:13:\"EZ Controller\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1449239220\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(566,202,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2000;s:6:\"height\";i:2451;s:4:\"file\";s:16:\"000043250006.jpg\";}}'),(567,186,'_thumbnail_id','202'),(571,190,'_jetpack_dont_email_post_to_subs','1'),(572,195,'_jetpack_dont_email_post_to_subs','1'),(573,194,'_jetpack_dont_email_post_to_subs','1'),(574,193,'_jetpack_dont_email_post_to_subs','1'),(575,191,'_jetpack_dont_email_post_to_subs','1'),(576,192,'_jetpack_dont_email_post_to_subs','1'),(577,204,'_wp_attached_file','2017/01/STD2-4.jpg'),(578,204,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2250;s:6:\"height\";i:1500;s:4:\"file\";s:18:\"2017/01/STD2-4.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"STD2-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"STD2-4-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:18:\"STD2-4-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:19:\"STD2-4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:18:\"STD2-4-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:16:\"STD2-4-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:18:\"STD2-4-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:18:\"STD2-4-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:18:\"STD2-4-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:18:\"STD2-4-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:18:\"STD2-4-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:14:\"Marco Penajoia\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1434033757\";s:9:\"copyright\";s:17:\"marcopenajoia.com\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(579,188,'_thumbnail_id','240'),(580,206,'_wp_attached_file','2017/01/STD-Badge_150-1.png'),(581,206,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:27:\"2017/01/STD-Badge_150-1.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:25:\"STD-Badge_150-1-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:27:\"STD-Badge_150-1-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:27:\"STD-Badge_150-1-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(584,209,'_wp_attached_file','2017/01/cropped-STD-Badge_150-1.png'),(585,209,'_wp_attachment_context','custom-logo'),(586,209,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:35:\"2017/01/cropped-STD-Badge_150-1.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:33:\"cropped-STD-Badge_150-1-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:35:\"cropped-STD-Badge_150-1-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:35:\"cropped-STD-Badge_150-1-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(592,213,'_wp_attached_file','2017/01/000043280033resize.jpg'),(593,213,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:990;s:6:\"height\";i:375;s:4:\"file\";s:30:\"2017/01/000043280033resize.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"000043280033resize-150x150.jpg\";s:5:\"width\";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:\"000043280033resize-300x114.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"000043280033resize-768x291.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:30:\"000043280033resize-750x375.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:28:\"000043280033resize-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:30:\"000043280033resize-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:30:\"000043280033resize-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:30:\"000043280033resize-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:30:\"000043280033resize-476x375.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:30:\"000043280033resize-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:13:\"EZ Controller\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1449661361\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(594,182,'_thumbnail_id','273'),(600,218,'_wp_attached_file','2017/01/000047700005resize-1.jpg'),(601,218,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1198;s:6:\"height\";i:439;s:4:\"file\";s:32:\"2017/01/000047700005resize-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"000047700005resize-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:32:\"000047700005resize-1-300x110.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"000047700005resize-1-768x281.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"000047700005resize-1-1024x375.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:32:\"000047700005resize-1-750x439.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:439;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:30:\"000047700005resize-1-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:32:\"000047700005resize-1-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:32:\"000047700005resize-1-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:32:\"000047700005resize-1-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:32:\"000047700005resize-1-476x439.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:439;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:32:\"000047700005resize-1-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(603,221,'_wp_attached_file','2017/01/12509261_942922315786706_8753407099223270164_n.jpg'),(604,221,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:58:\"2017/01/12509261_942922315786706_8753407099223270164_n.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"12509261_942922315786706_8753407099223270164_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"12509261_942922315786706_8753407099223270164_n-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:58:\"12509261_942922315786706_8753407099223270164_n-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:58:\"12509261_942922315786706_8753407099223270164_n-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:56:\"12509261_942922315786706_8753407099223270164_n-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:58:\"12509261_942922315786706_8753407099223270164_n-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:58:\"12509261_942922315786706_8753407099223270164_n-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:58:\"12509261_942922315786706_8753407099223270164_n-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:58:\"12509261_942922315786706_8753407099223270164_n-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:58:\"12509261_942922315786706_8753407099223270164_n-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(605,222,'_wp_attached_file','2017/01/12642622_953524241393180_4576894479941900654_n.jpg'),(606,222,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:58:\"2017/01/12642622_953524241393180_4576894479941900654_n.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"12642622_953524241393180_4576894479941900654_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"12642622_953524241393180_4576894479941900654_n-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:58:\"12642622_953524241393180_4576894479941900654_n-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:58:\"12642622_953524241393180_4576894479941900654_n-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:56:\"12642622_953524241393180_4576894479941900654_n-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:58:\"12642622_953524241393180_4576894479941900654_n-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:58:\"12642622_953524241393180_4576894479941900654_n-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:58:\"12642622_953524241393180_4576894479941900654_n-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:58:\"12642622_953524241393180_4576894479941900654_n-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:58:\"12642622_953524241393180_4576894479941900654_n-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(607,223,'_wp_attached_file','2017/01/13726568_10157088612265364_1460368688158996860_n.jpg'),(608,223,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:960;s:4:\"file\";s:60:\"2017/01/13726568_10157088612265364_1460368688158996860_n.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"13726568_10157088612265364_1460368688158996860_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"13726568_10157088612265364_1460368688158996860_n-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:60:\"13726568_10157088612265364_1460368688158996860_n-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:60:\"13726568_10157088612265364_1460368688158996860_n-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:58:\"13726568_10157088612265364_1460368688158996860_n-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:60:\"13726568_10157088612265364_1460368688158996860_n-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:60:\"13726568_10157088612265364_1460368688158996860_n-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:60:\"13726568_10157088612265364_1460368688158996860_n-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:60:\"13726568_10157088612265364_1460368688158996860_n-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:60:\"13726568_10157088612265364_1460368688158996860_n-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(609,224,'_wp_attached_file','2017/01/STD2-3.jpg'),(610,224,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2250;s:6:\"height\";i:1500;s:4:\"file\";s:18:\"2017/01/STD2-3.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"STD2-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"STD2-3-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:18:\"STD2-3-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:19:\"STD2-3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:18:\"STD2-3-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:16:\"STD2-3-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:18:\"STD2-3-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:18:\"STD2-3-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:18:\"STD2-3-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:18:\"STD2-3-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:18:\"STD2-3-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:14:\"Marco Penajoia\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1434033668\";s:9:\"copyright\";s:17:\"marcopenajoia.com\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(611,225,'_wp_attached_file','2017/01/DSC_7236.jpg'),(612,225,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4928;s:6:\"height\";i:3264;s:4:\"file\";s:20:\"2017/01/DSC_7236.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_7236-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC_7236-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"DSC_7236-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"DSC_7236-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"DSC_7236-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"DSC_7236-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"DSC_7236-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"DSC_7236-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"DSC_7236-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"DSC_7236-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"DSC_7236-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:15:\"Terrence Belton\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1446315334\";s:9:\"copyright\";s:17:\"Teesphotoshop.com\";s:12:\"focal_length\";s:2:\"86\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(613,226,'_wp_attached_file','2017/01/STD2-4-1.jpg'),(614,226,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2250;s:6:\"height\";i:1500;s:4:\"file\";s:20:\"2017/01/STD2-4-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"STD2-4-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"STD2-4-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:20:\"STD2-4-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:21:\"STD2-4-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"STD2-4-1-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"STD2-4-1-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"STD2-4-1-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"STD2-4-1-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"STD2-4-1-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"STD2-4-1-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"STD2-4-1-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:14:\"Marco Penajoia\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1434033757\";s:9:\"copyright\";s:17:\"marcopenajoia.com\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(615,227,'_wp_attached_file','2017/01/STD4-2.jpg'),(616,227,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2250;s:6:\"height\";i:1500;s:4:\"file\";s:18:\"2017/01/STD4-2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"STD4-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:18:\"STD4-2-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:18:\"STD4-2-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:19:\"STD4-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:18:\"STD4-2-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:16:\"STD4-2-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:18:\"STD4-2-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:18:\"STD4-2-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:18:\"STD4-2-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:18:\"STD4-2-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:18:\"STD4-2-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"X-Pro1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1438794043\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"12\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:18:\"0.0023809523809524\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(617,228,'_wp_attached_file','2017/01/STD2-11.jpg'),(618,228,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2250;s:6:\"height\";i:1500;s:4:\"file\";s:19:\"2017/01/STD2-11.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"STD2-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:19:\"STD2-11-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:19:\"STD2-11-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:20:\"STD2-11-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:19:\"STD2-11-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:17:\"STD2-11-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:19:\"STD2-11-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:19:\"STD2-11-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:19:\"STD2-11-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:19:\"STD2-11-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:19:\"STD2-11-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:14:\"Marco Penajoia\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1434034184\";s:9:\"copyright\";s:17:\"marcopenajoia.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(619,229,'_wp_attached_file','2017/01/STD2-8.jpg'),(620,229,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2250;s:6:\"height\";i:1500;s:4:\"file\";s:18:\"2017/01/STD2-8.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"STD2-8-150x150.jpg\";s:5:\"width\";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:\"STD2-8-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:18:\"STD2-8-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:19:\"STD2-8-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:18:\"STD2-8-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:16:\"STD2-8-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:18:\"STD2-8-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:18:\"STD2-8-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:18:\"STD2-8-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:18:\"STD2-8-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:18:\"STD2-8-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:14:\"Marco Penajoia\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1434033984\";s:9:\"copyright\";s:17:\"marcopenajoia.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(621,230,'_wp_attached_file','2017/01/13934718_10157168508435364_6802984478891619192_n.jpg'),(622,230,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:528;s:6:\"height\";i:960;s:4:\"file\";s:60:\"2017/01/13934718_10157168508435364_6802984478891619192_n.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"13934718_10157168508435364_6802984478891619192_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"13934718_10157168508435364_6802984478891619192_n-165x300.jpg\";s:5:\"width\";i:165;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:60:\"13934718_10157168508435364_6802984478891619192_n-528x500.jpg\";s:5:\"width\";i:528;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:58:\"13934718_10157168508435364_6802984478891619192_n-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:60:\"13934718_10157168508435364_6802984478891619192_n-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:60:\"13934718_10157168508435364_6802984478891619192_n-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:60:\"13934718_10157168508435364_6802984478891619192_n-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:60:\"13934718_10157168508435364_6802984478891619192_n-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:60:\"13934718_10157168508435364_6802984478891619192_n-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(623,184,'_thumbnail_id','244'),(624,232,'_wp_attached_file','2017/01/STD_Flats-17.jpg'),(625,232,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:24:\"2017/01/STD_Flats-17.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"STD_Flats-17-150x150.jpg\";s:5:\"width\";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:\"STD_Flats-17-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:24:\"STD_Flats-17-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:25:\"STD_Flats-17-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:24:\"STD_Flats-17-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:22:\"STD_Flats-17-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:24:\"STD_Flats-17-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:24:\"STD_Flats-17-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:24:\"STD_Flats-17-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:24:\"STD_Flats-17-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:24:\"STD_Flats-17-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:14:\"Marco Penajoia\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1475249523\";s:9:\"copyright\";s:17:\"marcopenajoia.com\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(626,180,'_thumbnail_id','373'),(630,235,'_menu_item_type','post_type'),(631,235,'_menu_item_menu_item_parent','0'),(632,235,'_menu_item_object_id','38'),(633,235,'_menu_item_object','page'),(634,235,'_menu_item_target',''),(635,235,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(636,235,'_menu_item_xfn',''),(637,235,'_menu_item_url',''),(639,235,'_publicize_pending','1'),(640,236,'_edit_last','1'),(641,236,'_edit_lock','1484790144:1'),(642,236,'_wp_page_template','default'),(643,236,'_publicize_pending','1'),(644,238,'_wp_attached_file','2017/01/STD_Flats-17-1.jpg'),(645,238,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1015;s:4:\"file\";s:26:\"2017/01/STD_Flats-17-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"STD_Flats-17-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"STD_Flats-17-1-300x159.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"STD_Flats-17-1-768x406.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"STD_Flats-17-1-1024x541.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:26:\"STD_Flats-17-1-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:24:\"STD_Flats-17-1-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:26:\"STD_Flats-17-1-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:26:\"STD_Flats-17-1-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:26:\"STD_Flats-17-1-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:26:\"STD_Flats-17-1-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:26:\"STD_Flats-17-1-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:14:\"Marco Penajoia\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1475249523\";s:9:\"copyright\";s:17:\"marcopenajoia.com\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(646,239,'_wp_attached_file','2017/01/STD2-3-1.jpg'),(647,239,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2250;s:6:\"height\";i:1374;s:4:\"file\";s:20:\"2017/01/STD2-3-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"STD2-3-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"STD2-3-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"STD2-3-1-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"STD2-3-1-1024x625.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"STD2-3-1-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"STD2-3-1-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"STD2-3-1-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"STD2-3-1-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"STD2-3-1-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"STD2-3-1-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"STD2-3-1-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:14:\"Marco Penajoia\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1434033668\";s:9:\"copyright\";s:17:\"marcopenajoia.com\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(648,240,'_wp_attached_file','2017/01/STD2-4-2.jpg'),(649,240,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2250;s:6:\"height\";i:1264;s:4:\"file\";s:20:\"2017/01/STD2-4-2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"STD2-4-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:20:\"STD2-4-2-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:20:\"STD2-4-2-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"STD2-4-2-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"STD2-4-2-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"STD2-4-2-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"STD2-4-2-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"STD2-4-2-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"STD2-4-2-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"STD2-4-2-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"STD2-4-2-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:14:\"Marco Penajoia\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1434033757\";s:9:\"copyright\";s:17:\"marcopenajoia.com\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(650,241,'_wp_attached_file','2017/01/STD-Seal-e1484841002253.png'),(651,241,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:197;s:6:\"height\";i:200;s:4:\"file\";s:35:\"2017/01/STD-Seal-e1484841002253.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"STD-Seal-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:\"STD-Seal-296x300.png\";s:5:\"width\";i:296;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"STD-Seal-768x780.png\";s:5:\"width\";i:768;s:6:\"height\";i:780;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"STD-Seal-750x500.png\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"STD-Seal-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"STD-Seal-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"STD-Seal-360x213.png\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"STD-Seal-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"STD-Seal-476x476.png\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"STD-Seal-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(652,242,'_wp_attached_file','2017/01/cropped-STD-Seal.png'),(653,242,'_wp_attachment_context','custom-logo'),(654,242,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:812;s:4:\"file\";s:28:\"2017/01/cropped-STD-Seal.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-STD-Seal-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:28:\"cropped-STD-Seal-296x300.png\";s:5:\"width\";i:296;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"cropped-STD-Seal-768x780.png\";s:5:\"width\";i:768;s:6:\"height\";i:780;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:28:\"cropped-STD-Seal-750x500.png\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:26:\"cropped-STD-Seal-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:28:\"cropped-STD-Seal-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:28:\"cropped-STD-Seal-360x213.png\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:28:\"cropped-STD-Seal-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:28:\"cropped-STD-Seal-476x476.png\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:28:\"cropped-STD-Seal-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(655,241,'_edit_lock','1484841040:1'),(656,241,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:800;s:6:\"height\";i:812;s:4:\"file\";s:12:\"STD-Seal.png\";}}'),(657,241,'_edit_last','1'),(661,244,'_wp_attached_file','2017/01/STD1-11-1.jpg'),(662,244,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2250;s:6:\"height\";i:1219;s:4:\"file\";s:21:\"2017/01/STD1-11-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"STD1-11-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"STD1-11-1-300x163.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:163;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"STD1-11-1-768x416.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"STD1-11-1-1024x555.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:555;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:21:\"STD1-11-1-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:19:\"STD1-11-1-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:21:\"STD1-11-1-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:21:\"STD1-11-1-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:21:\"STD1-11-1-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:21:\"STD1-11-1-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:21:\"STD1-11-1-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"X-T10\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1484305156\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(663,245,'_wp_attached_file','2017/01/STD1-7-1.jpg'),(664,245,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1983;s:6:\"height\";i:1295;s:4:\"file\";s:20:\"2017/01/STD1-7-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"STD1-7-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"STD1-7-1-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"STD1-7-1-768x502.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:502;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"STD1-7-1-1024x669.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:669;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"STD1-7-1-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"STD1-7-1-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"STD1-7-1-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"STD1-7-1-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"STD1-7-1-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"STD1-7-1-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"STD1-7-1-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"X-T10\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1484305068\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(668,247,'_wp_attached_file','2017/01/standard-bar-yellow-e1484841898199.png'),(669,247,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:46:\"2017/01/standard-bar-yellow-e1484841898199.png\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"standard-bar-yellow-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:\"standard-bar-yellow-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"standard-bar-yellow-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"standard-bar-yellow-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:31:\"standard-bar-yellow-750x500.png\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:29:\"standard-bar-yellow-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:31:\"standard-bar-yellow-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:31:\"standard-bar-yellow-360x213.png\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:31:\"standard-bar-yellow-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:31:\"standard-bar-yellow-476x476.png\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:31:\"standard-bar-yellow-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(670,247,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:23:\"standard-bar-yellow.png\";}}'),(671,249,'_wp_attached_file','2017/01/cropped-standard-bar-yellow-e1484841898199.png'),(672,249,'_wp_attachment_context','custom-logo'),(673,249,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:534;s:6:\"height\";i:153;s:4:\"file\";s:54:\"2017/01/cropped-standard-bar-yellow-e1484841898199.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"cropped-standard-bar-yellow-e1484841898199-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:53:\"cropped-standard-bar-yellow-e1484841898199-300x86.png\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:52:\"cropped-standard-bar-yellow-e1484841898199-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:54:\"cropped-standard-bar-yellow-e1484841898199-240x153.png\";s:5:\"width\";i:240;s:6:\"height\";i:153;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:54:\"cropped-standard-bar-yellow-e1484841898199-360x153.png\";s:5:\"width\";i:360;s:6:\"height\";i:153;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:54:\"cropped-standard-bar-yellow-e1484841898199-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:54:\"cropped-standard-bar-yellow-e1484841898199-476x153.png\";s:5:\"width\";i:476;s:6:\"height\";i:153;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:54:\"cropped-standard-bar-yellow-e1484841898199-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(698,259,'_wp_attached_file','2017/01/standard-bar-yellow2-e1484843993747.png'),(699,259,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:63;s:4:\"file\";s:47:\"2017/01/standard-bar-yellow2-e1484843993747.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"standard-bar-yellow2-150x75.png\";s:5:\"width\";i:150;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"standard-bar-yellow2-300x75.png\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:30:\"standard-bar-yellow2-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:31:\"standard-bar-yellow2-240x75.png\";s:5:\"width\";i:240;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:31:\"standard-bar-yellow2-127x75.png\";s:5:\"width\";i:127;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:31:\"standard-bar-yellow2-125x75.png\";s:5:\"width\";i:125;s:6:\"height\";i:75;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:{}}}'),(703,261,'_edit_last','1'),(704,261,'_edit_lock','1513270996:1'),(705,261,'_wp_page_template','default'),(706,261,'_publicize_pending','1'),(707,263,'_menu_item_type','post_type'),(708,263,'_menu_item_menu_item_parent','0'),(709,263,'_menu_item_object_id','261'),(710,263,'_menu_item_object','page'),(711,263,'_menu_item_target',''),(712,263,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(713,263,'_menu_item_xfn',''),(714,263,'_menu_item_url',''),(722,263,'_publicize_pending','1'),(723,235,'_jetpack_dont_email_post_to_subs','1'),(727,259,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:300;s:6:\"height\";i:75;s:4:\"file\";s:24:\"standard-bar-yellow2.png\";}}'),(728,268,'_menu_item_type','custom'),(729,268,'_menu_item_menu_item_parent','0'),(730,268,'_menu_item_object_id','268'),(731,268,'_menu_item_object','custom'),(732,268,'_menu_item_target',''),(733,268,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(734,268,'_menu_item_xfn',''),(735,268,'_menu_item_url','http://stdcycle.com/company/#contact-us'),(737,263,'_jetpack_dont_email_post_to_subs','1'),(738,268,'_publicize_pending','1'),(745,273,'_wp_attached_file','2017/01/STD2-18.jpg'),(746,273,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2250;s:6:\"height\";i:1198;s:4:\"file\";s:19:\"2017/01/STD2-18.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"STD2-18-150x150.jpg\";s:5:\"width\";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:\"STD2-18-300x160.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"STD2-18-768x409.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:409;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"STD2-18-1024x545.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:545;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:19:\"STD2-18-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:17:\"STD2-18-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:19:\"STD2-18-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:19:\"STD2-18-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:19:\"STD2-18-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:19:\"STD2-18-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:19:\"STD2-18-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:14:\"Marco Penajoia\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1434114986\";s:9:\"copyright\";s:17:\"marcopenajoia.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(747,274,'_wp_attached_file','2017/01/WrenchPiston2.png'),(748,274,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:427;s:6:\"height\";i:426;s:4:\"file\";s:25:\"2017/01/WrenchPiston2.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"WrenchPiston2-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:\"WrenchPiston2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:23:\"WrenchPiston2-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:25:\"WrenchPiston2-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:25:\"WrenchPiston2-360x213.png\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:25:\"WrenchPiston2-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:25:\"WrenchPiston2-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(749,275,'_wp_attached_file','2017/01/dyno.png'),(750,275,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:427;s:6:\"height\";i:426;s:4:\"file\";s:16:\"2017/01/dyno.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"dyno-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:16:\"dyno-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:14:\"dyno-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:16:\"dyno-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:16:\"dyno-360x213.png\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:16:\"dyno-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:16:\"dyno-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(751,276,'_wp_attached_file','2017/01/tree.png'),(752,276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:427;s:6:\"height\";i:426;s:4:\"file\";s:16:\"2017/01/tree.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"tree-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:16:\"tree-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:14:\"tree-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:16:\"tree-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:16:\"tree-360x213.png\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:16:\"tree-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:16:\"tree-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(753,277,'_wp_attached_file','2017/01/flags.png'),(754,277,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:427;s:6:\"height\";i:426;s:4:\"file\";s:17:\"2017/01/flags.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"flags-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:\"flags-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:15:\"flags-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:17:\"flags-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:17:\"flags-360x213.png\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:17:\"flags-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:17:\"flags-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(755,279,'_wp_attached_file','2017/01/torch.png'),(756,279,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:427;s:6:\"height\";i:426;s:4:\"file\";s:17:\"2017/01/torch.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"torch-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:\"torch-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:15:\"torch-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:17:\"torch-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:17:\"torch-360x213.png\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:17:\"torch-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:17:\"torch-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(758,38,'_thumbnail_id','358'),(762,287,'_wp_attached_file','2017/01/STD_Flats-8.jpg'),(763,287,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:23:\"2017/01/STD_Flats-8.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"STD_Flats-8-150x150.jpg\";s:5:\"width\";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:\"STD_Flats-8-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:23:\"STD_Flats-8-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:24:\"STD_Flats-8-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:23:\"STD_Flats-8-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:21:\"STD_Flats-8-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:23:\"STD_Flats-8-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:23:\"STD_Flats-8-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:23:\"STD_Flats-8-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:23:\"STD_Flats-8-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:23:\"STD_Flats-8-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:14:\"Marco Penajoia\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1475229329\";s:9:\"copyright\";s:17:\"marcopenajoia.com\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(764,287,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.5923950617283951;s:5:\"bytes\";i:6562;s:11:\"size_before\";i:253125;s:10:\"size_after\";i:246563;s:4:\"time\";d:0.29999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.8700000000000001;s:5:\"bytes\";i:296;s:11:\"size_before\";i:6084;s:10:\"size_after\";i:5788;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3300000000000001;s:5:\"bytes\";i:381;s:11:\"size_before\";i:11442;s:10:\"size_after\";i:11061;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.9399999999999999;s:5:\"bytes\";i:905;s:11:\"size_before\";i:46567;s:10:\"size_after\";i:45662;s:4:\"time\";d:0.029999999999999999;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.5299999999999998;s:5:\"bytes\";i:1875;s:11:\"size_before\";i:74147;s:10:\"size_after\";i:72272;s:4:\"time\";d:0.040000000000000001;}s:15:\"illdy-blog-list\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8899999999999999;s:5:\"bytes\";i:860;s:11:\"size_before\";i:45426;s:10:\"size_after\";i:44566;s:4:\"time\";d:0.059999999999999998;}s:25:\"illdy-widget-recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.3700000000000001;s:5:\"bytes\";i:172;s:11:\"size_before\";i:2335;s:10:\"size_after\";i:2163;s:4:\"time\";d:0.01;}s:32:\"illdy-blog-post-related-articles\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.2400000000000002;s:5:\"bytes\";i:442;s:11:\"size_before\";i:10428;s:10:\"size_after\";i:9986;s:4:\"time\";d:0.02;}s:28:\"illdy-front-page-latest-news\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.3100000000000001;s:5:\"bytes\";i:467;s:11:\"size_before\";i:14119;s:10:\"size_after\";i:13652;s:4:\"time\";d:0.02;}s:29:\"illdy-front-page-testimonials\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.1200000000000001;s:5:\"bytes\";i:290;s:11:\"size_before\";i:4737;s:10:\"size_after\";i:4447;s:4:\"time\";d:0.02;}s:25:\"illdy-front-page-projects\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.8700000000000001;s:5:\"bytes\";i:620;s:11:\"size_before\";i:33086;s:10:\"size_after\";i:32466;s:4:\"time\";d:0.059999999999999998;}s:23:\"illdy-front-page-person\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.3399999999999999;s:5:\"bytes\";i:254;s:11:\"size_before\";i:4754;s:10:\"size_after\";i:4500;s:4:\"time\";d:0.01;}}}'),(765,288,'_wp_attached_file','2017/01/STD_Flats-9.jpg'),(766,288,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:23:\"2017/01/STD_Flats-9.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"STD_Flats-9-150x150.jpg\";s:5:\"width\";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:\"STD_Flats-9-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:23:\"STD_Flats-9-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:24:\"STD_Flats-9-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:23:\"STD_Flats-9-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:21:\"STD_Flats-9-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:23:\"STD_Flats-9-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:23:\"STD_Flats-9-360x213.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:23:\"STD_Flats-9-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:23:\"STD_Flats-9-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:23:\"STD_Flats-9-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:14:\"Marco Penajoia\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1475229358\";s:9:\"copyright\";s:17:\"marcopenajoia.com\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(767,288,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:3.3387932907104401;s:5:\"bytes\";i:11374;s:11:\"size_before\";i:340662;s:10:\"size_after\";i:329288;s:4:\"time\";d:0.40000000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:11:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.25;s:5:\"bytes\";i:480;s:11:\"size_before\";i:7683;s:10:\"size_after\";i:7203;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9900000000000002;s:5:\"bytes\";i:782;s:11:\"size_before\";i:15677;s:10:\"size_after\";i:14895;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8199999999999998;s:5:\"bytes\";i:1810;s:11:\"size_before\";i:64286;s:10:\"size_after\";i:62476;s:4:\"time\";d:0.14999999999999999;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.4300000000000002;s:5:\"bytes\";i:2424;s:11:\"size_before\";i:99800;s:10:\"size_after\";i:97376;s:4:\"time\";d:0.050000000000000003;}s:15:\"illdy-blog-list\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.8399999999999999;s:5:\"bytes\";i:1773;s:11:\"size_before\";i:62496;s:10:\"size_after\";i:60723;s:4:\"time\";d:0.070000000000000007;}s:25:\"illdy-widget-recent-posts\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.7199999999999998;s:5:\"bytes\";i:203;s:11:\"size_before\";i:2628;s:10:\"size_after\";i:2425;s:4:\"time\";d:0.01;}s:32:\"illdy-blog-post-related-articles\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.2000000000000002;s:5:\"bytes\";i:696;s:11:\"size_before\";i:13397;s:10:\"size_after\";i:12701;s:4:\"time\";d:0.01;}s:28:\"illdy-front-page-latest-news\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.9000000000000004;s:5:\"bytes\";i:946;s:11:\"size_before\";i:19317;s:10:\"size_after\";i:18371;s:4:\"time\";d:0.029999999999999999;}s:29:\"illdy-front-page-testimonials\";O:8:\"stdClass\":5:{s:7:\"percent\";d:7.2599999999999998;s:5:\"bytes\";i:431;s:11:\"size_before\";i:5940;s:10:\"size_after\";i:5509;s:4:\"time\";d:0.01;}s:25:\"illdy-front-page-projects\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.2999999999999998;s:5:\"bytes\";i:1438;s:11:\"size_before\";i:43618;s:10:\"size_after\";i:42180;s:4:\"time\";d:0.02;}s:23:\"illdy-front-page-person\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.7199999999999998;s:5:\"bytes\";i:391;s:11:\"size_before\";i:5820;s:10:\"size_after\";i:5429;s:4:\"time\";d:0.029999999999999999;}}}'),(768,180,'sharing_disabled','1'),(794,311,'_customize_changeset_uuid','441a208f-0c80-4f26-8c4c-4a18fe1dd793'),(795,311,'_publicize_pending','1'),(796,313,'_publicize_pending','1'),(797,313,'_menu_item_type','post_type'),(798,313,'_menu_item_menu_item_parent','190'),(799,313,'_menu_item_object_id','311'),(800,313,'_menu_item_object','page'),(801,313,'_menu_item_target',''),(802,313,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(803,313,'_menu_item_xfn',''),(804,313,'_menu_item_url',''),(819,320,'_wp_attached_file','2017/12/S1000R_LSR-1.jpg'),(820,320,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3000;s:6:\"height\";i:2000;s:4:\"file\";s:24:\"2017/12/S1000R_LSR-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"S1000R_LSR-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:24:\"S1000R_LSR-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:24:\"S1000R_LSR-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:25:\"S1000R_LSR-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:24:\"S1000R_LSR-1-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:22:\"S1000R_LSR-1-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:24:\"S1000R_LSR-1-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:24:\"S1000R_LSR-1-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:24:\"S1000R_LSR-1-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:24:\"S1000R_LSR-1-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:24:\"S1000R_LSR-1-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:14:\"Marco_Penajoia\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1504015423\";s:9:\"copyright\";s:14:\"Marco_Penajoia\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(823,321,'_wp_attached_file','2017/12/P1080192.jpg'),(824,321,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080192.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080192-150x150.jpg\";s:5:\"width\";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:\"P1080192-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:\"P1080192-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:\"P1080192-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080192-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080192-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080192-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080192-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080192-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080192-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080192-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1493227640\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(825,321,'_edit_lock','1513104879:1'),(826,321,'_edit_last','1'),(831,324,'_wp_attached_file','2017/12/S1000R_LSR-16.jpg'),(832,324,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3000;s:6:\"height\";i:2000;s:4:\"file\";s:25:\"2017/12/S1000R_LSR-16.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"S1000R_LSR-16-150x150.jpg\";s:5:\"width\";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:\"S1000R_LSR-16-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:25:\"S1000R_LSR-16-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:26:\"S1000R_LSR-16-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:25:\"S1000R_LSR-16-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:23:\"S1000R_LSR-16-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:25:\"S1000R_LSR-16-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:25:\"S1000R_LSR-16-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:25:\"S1000R_LSR-16-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:25:\"S1000R_LSR-16-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:25:\"S1000R_LSR-16-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:14:\"Marco_Penajoia\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1504015661\";s:9:\"copyright\";s:14:\"Marco_Penajoia\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(836,326,'_wp_attached_file','2017/12/P1080483.jpg'),(837,326,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2736;s:6:\"height\";i:3648;s:4:\"file\";s:20:\"2017/12/P1080483.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080483-150x150.jpg\";s:5:\"width\";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:\"P1080483-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:21:\"P1080483-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:21:\"P1080483-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080483-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080483-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080483-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080483-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080483-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080483-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080483-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1509019714\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(849,330,'_wp_attached_file','2017/12/23926521_10214080229976585_5248431867514772720_o.jpg'),(850,330,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1364;s:4:\"file\";s:60:\"2017/12/23926521_10214080229976585_5248431867514772720_o.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"23926521_10214080229976585_5248431867514772720_o-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"23926521_10214080229976585_5248431867514772720_o-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:60:\"23926521_10214080229976585_5248431867514772720_o-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:61:\"23926521_10214080229976585_5248431867514772720_o-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:60:\"23926521_10214080229976585_5248431867514772720_o-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:58:\"23926521_10214080229976585_5248431867514772720_o-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:60:\"23926521_10214080229976585_5248431867514772720_o-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:60:\"23926521_10214080229976585_5248431867514772720_o-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:60:\"23926521_10214080229976585_5248431867514772720_o-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:60:\"23926521_10214080229976585_5248431867514772720_o-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:60:\"23926521_10214080229976585_5248431867514772720_o-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(852,332,'_wp_attached_file','2017/12/13912383_1164651266890690_1998315972983036630_n.jpg'),(853,332,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2017/12/13912383_1164651266890690_1998315972983036630_n.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"13912383_1164651266890690_1998315972983036630_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"13912383_1164651266890690_1998315972983036630_n-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:59:\"13912383_1164651266890690_1998315972983036630_n-720x500.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:57:\"13912383_1164651266890690_1998315972983036630_n-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:59:\"13912383_1164651266890690_1998315972983036630_n-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:59:\"13912383_1164651266890690_1998315972983036630_n-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:59:\"13912383_1164651266890690_1998315972983036630_n-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:59:\"13912383_1164651266890690_1998315972983036630_n-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:59:\"13912383_1164651266890690_1998315972983036630_n-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(854,333,'_wp_attached_file','2017/12/23754972_10214650260399770_4570799565458552881_n.jpg'),(855,333,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:426;s:6:\"height\";i:242;s:4:\"file\";s:60:\"2017/12/23754972_10214650260399770_4570799565458552881_n.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"23754972_10214650260399770_4570799565458552881_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"23754972_10214650260399770_4570799565458552881_n-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:58:\"23754972_10214650260399770_4570799565458552881_n-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:60:\"23754972_10214650260399770_4570799565458552881_n-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:60:\"23754972_10214650260399770_4570799565458552881_n-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:60:\"23754972_10214650260399770_4570799565458552881_n-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:60:\"23754972_10214650260399770_4570799565458552881_n-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(856,334,'_wp_attached_file','2017/12/21149904_342569792862743_1602079038607528451_n.jpg'),(857,334,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:749;s:4:\"file\";s:58:\"2017/12/21149904_342569792862743_1602079038607528451_n.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"21149904_342569792862743_1602079038607528451_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"21149904_342569792862743_1602079038607528451_n-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:58:\"21149904_342569792862743_1602079038607528451_n-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:56:\"21149904_342569792862743_1602079038607528451_n-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:58:\"21149904_342569792862743_1602079038607528451_n-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:58:\"21149904_342569792862743_1602079038607528451_n-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:58:\"21149904_342569792862743_1602079038607528451_n-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:58:\"21149904_342569792862743_1602079038607528451_n-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:58:\"21149904_342569792862743_1602079038607528451_n-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(861,336,'_wp_attached_file','2017/12/2745010433-R1-E031.gif'),(862,336,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2100;s:6:\"height\";i:1407;s:4:\"file\";s:30:\"2017/12/2745010433-R1-E031.gif\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"2745010433-R1-E031-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"2745010433-R1-E031-300x201.gif\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"2745010433-R1-E031-768x515.gif\";s:5:\"width\";i:768;s:6:\"height\";i:515;s:9:\"mime-type\";s:9:\"image/gif\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"2745010433-R1-E031-1024x686.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:686;s:9:\"mime-type\";s:9:\"image/gif\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:30:\"2745010433-R1-E031-750x500.gif\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:28:\"2745010433-R1-E031-70x70.gif\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/gif\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:30:\"2745010433-R1-E031-240x206.gif\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/gif\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:30:\"2745010433-R1-E031-250x213.gif\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/gif\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:30:\"2745010433-R1-E031-127x127.gif\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/gif\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:30:\"2745010433-R1-E031-476x476.gif\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:9:\"image/gif\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:30:\"2745010433-R1-E031-125x125.gif\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(865,337,'_wp_attached_file','2017/12/STD6-3.jpg'),(866,337,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2250;s:4:\"file\";s:18:\"2017/12/STD6-3.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"STD6-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"STD6-3-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"STD6-3-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"STD6-3-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:18:\"STD6-3-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:16:\"STD6-3-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:18:\"STD6-3-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:18:\"STD6-3-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:18:\"STD6-3-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:18:\"STD6-3-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:18:\"STD6-3-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"X-T10\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1485445854\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"56\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(867,338,'_wp_attached_file','2017/12/STD7-4.jpg'),(868,338,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2250;s:6:\"height\";i:1500;s:4:\"file\";s:18:\"2017/12/STD7-4.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"STD7-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"STD7-4-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:18:\"STD7-4-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:19:\"STD7-4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:18:\"STD7-4-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:16:\"STD7-4-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:18:\"STD7-4-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:18:\"STD7-4-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:18:\"STD7-4-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:18:\"STD7-4-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:18:\"STD7-4-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"X-T10\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1485527519\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"56\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(869,339,'_wp_attached_file','2017/12/STD7-14.jpg'),(870,339,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2250;s:4:\"file\";s:19:\"2017/12/STD7-14.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"STD7-14-150x150.jpg\";s:5:\"width\";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:\"STD7-14-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"STD7-14-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"STD7-14-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:19:\"STD7-14-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:17:\"STD7-14-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:19:\"STD7-14-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:19:\"STD7-14-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:19:\"STD7-14-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:19:\"STD7-14-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:19:\"STD7-14-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"X-T10\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1485528999\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"56\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(871,340,'_wp_attached_file','2017/12/STD10-7.jpg'),(872,340,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2250;s:4:\"file\";s:19:\"2017/12/STD10-7.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"STD10-7-150x150.jpg\";s:5:\"width\";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:\"STD10-7-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"STD10-7-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"STD10-7-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:19:\"STD10-7-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:17:\"STD10-7-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:19:\"STD10-7-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:19:\"STD10-7-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:19:\"STD10-7-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:19:\"STD10-7-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:19:\"STD10-7-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"X-T10\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1490096820\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(873,341,'_wp_attached_file','2017/12/STD6-4.jpg'),(874,341,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2250;s:4:\"file\";s:18:\"2017/12/STD6-4.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"STD6-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"STD6-4-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"STD6-4-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"STD6-4-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:18:\"STD6-4-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:16:\"STD6-4-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:18:\"STD6-4-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:18:\"STD6-4-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:18:\"STD6-4-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:18:\"STD6-4-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:18:\"STD6-4-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"X-T10\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1485445968\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"56\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(875,343,'_wp_attached_file','2017/12/STD5-8.jpg'),(876,343,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2250;s:6:\"height\";i:1500;s:4:\"file\";s:18:\"2017/12/STD5-8.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"STD5-8-150x150.jpg\";s:5:\"width\";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:\"STD5-8-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:18:\"STD5-8-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:19:\"STD5-8-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:18:\"STD5-8-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:16:\"STD5-8-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:18:\"STD5-8-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:18:\"STD5-8-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:18:\"STD5-8-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:18:\"STD5-8-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:18:\"STD5-8-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"X-T10\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1484839327\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"56\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(884,348,'_wp_attached_file','2017/12/STD10-15.jpg'),(885,348,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2250;s:6:\"height\";i:1500;s:4:\"file\";s:20:\"2017/12/STD10-15.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"STD10-15-150x150.jpg\";s:5:\"width\";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:\"STD10-15-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:20:\"STD10-15-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:21:\"STD10-15-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"STD10-15-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"STD10-15-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"STD10-15-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"STD10-15-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"STD10-15-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"STD10-15-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"STD10-15-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"X-T10\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1490098342\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(890,351,'_wp_attached_file','2017/12/Triton-6.jpg'),(891,351,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3000;s:6:\"height\";i:1687;s:4:\"file\";s:20:\"2017/12/Triton-6.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Triton-6-150x150.jpg\";s:5:\"width\";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:\"Triton-6-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:20:\"Triton-6-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:21:\"Triton-6-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"Triton-6-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"Triton-6-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"Triton-6-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"Triton-6-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"Triton-6-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"Triton-6-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"Triton-6-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"X-T10\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1487330782\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:19:\"0.00041666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(895,353,'_wp_attached_file','2017/12/Triton-25.jpg'),(896,353,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:3000;s:4:\"file\";s:21:\"2017/12/Triton-25.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Triton-25-150x150.jpg\";s:5:\"width\";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:\"Triton-25-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Triton-25-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"Triton-25-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:21:\"Triton-25-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:19:\"Triton-25-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:21:\"Triton-25-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:21:\"Triton-25-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:21:\"Triton-25-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:21:\"Triton-25-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:21:\"Triton-25-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"X-T10\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1487330788\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:19:\"0.00055555555555556\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(900,355,'_wp_attached_file','2017/12/BW_STD-17.jpg'),(901,355,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1340;s:6:\"height\";i:2000;s:4:\"file\";s:21:\"2017/12/BW_STD-17.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"BW_STD-17-150x150.jpg\";s:5:\"width\";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:\"BW_STD-17-201x300.jpg\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"BW_STD-17-768x1146.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"BW_STD-17-686x1024.jpg\";s:5:\"width\";i:686;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:21:\"BW_STD-17-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:19:\"BW_STD-17-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:21:\"BW_STD-17-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:21:\"BW_STD-17-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:21:\"BW_STD-17-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:21:\"BW_STD-17-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:21:\"BW_STD-17-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:\"1492428382\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(908,358,'_wp_attached_file','2017/12/Triton-33.jpg'),(909,358,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:21:\"2017/12/Triton-33.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Triton-33-150x150.jpg\";s:5:\"width\";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:\"Triton-33-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:21:\"Triton-33-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:22:\"Triton-33-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:21:\"Triton-33-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:19:\"Triton-33-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:21:\"Triton-33-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:21:\"Triton-33-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:21:\"Triton-33-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:21:\"Triton-33-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:21:\"Triton-33-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"X-T10\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1494583725\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"56\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(911,360,'_wp_attached_file','2017/12/STD6-1.jpg'),(912,360,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2250;s:6:\"height\";i:1500;s:4:\"file\";s:18:\"2017/12/STD6-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"STD6-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:18:\"STD6-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:18:\"STD6-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:19:\"STD6-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:18:\"STD6-1-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:16:\"STD6-1-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:18:\"STD6-1-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:18:\"STD6-1-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:18:\"STD6-1-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:18:\"STD6-1-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:18:\"STD6-1-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"X-T10\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1485445699\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"56\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(915,362,'_wp_attached_file','2017/12/DSC_0367_Detail-3.jpg'),(916,362,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4660;s:6:\"height\";i:3728;s:4:\"file\";s:29:\"2017/12/DSC_0367_Detail-3.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"DSC_0367_Detail-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"DSC_0367_Detail-3-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"DSC_0367_Detail-3-768x614.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"DSC_0367_Detail-3-1024x819.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:29:\"DSC_0367_Detail-3-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:27:\"DSC_0367_Detail-3-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:29:\"DSC_0367_Detail-3-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:29:\"DSC_0367_Detail-3-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:29:\"DSC_0367_Detail-3-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:29:\"DSC_0367_Detail-3-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:29:\"DSC_0367_Detail-3-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(917,365,'_wp_attached_file','2017/12/DSC_0349.jpg'),(918,365,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5568;s:6:\"height\";i:3132;s:4:\"file\";s:20:\"2017/12/DSC_0349.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"DSC_0349-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DSC_0349-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:20:\"DSC_0349-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:21:\"DSC_0349-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"DSC_0349-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"DSC_0349-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"DSC_0349-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"DSC_0349-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"DSC_0349-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"DSC_0349-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"DSC_0349-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:15:\"TERRENCE BELTON\";s:6:\"camera\";s:11:\"NIKON D7500\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1497785390\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"120\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(919,370,'_wp_attached_file','2017/12/P1080413.jpg'),(920,370,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080413.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080413-150x150.jpg\";s:5:\"width\";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:\"P1080413-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:\"P1080413-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:\"P1080413-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080413-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080413-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080413-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080413-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080413-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080413-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080413-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1504104542\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(921,371,'_wp_attached_file','2017/12/P1080163.jpg'),(922,371,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080163.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080163-150x150.jpg\";s:5:\"width\";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:\"P1080163-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:\"P1080163-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:\"P1080163-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080163-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080163-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080163-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080163-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080163-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080163-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080163-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1492182676\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(923,372,'_wp_attached_file','2017/12/P1080446.jpg'),(924,372,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2736;s:6:\"height\";i:3648;s:4:\"file\";s:20:\"2017/12/P1080446.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080446-150x150.jpg\";s:5:\"width\";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:\"P1080446-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:21:\"P1080446-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:21:\"P1080446-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080446-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080446-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080446-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080446-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080446-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080446-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080446-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507126478\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(925,373,'_wp_attached_file','2017/12/P1080362.jpg'),(926,373,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080362.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080362-150x150.jpg\";s:5:\"width\";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:\"P1080362-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:\"P1080362-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:\"P1080362-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080362-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080362-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080362-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080362-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080362-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080362-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080362-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1502282183\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(927,374,'_wp_attached_file','2017/12/P1080446-1.jpg'),(928,374,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2736;s:6:\"height\";i:3648;s:4:\"file\";s:22:\"2017/12/P1080446-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"P1080446-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"P1080446-1-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:23:\"P1080446-1-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:23:\"P1080446-1-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:22:\"P1080446-1-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:20:\"P1080446-1-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:22:\"P1080446-1-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:22:\"P1080446-1-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:22:\"P1080446-1-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:22:\"P1080446-1-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:22:\"P1080446-1-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507126478\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(929,375,'_wp_attached_file','2017/12/P1080277.jpg'),(930,375,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2736;s:6:\"height\";i:3648;s:4:\"file\";s:20:\"2017/12/P1080277.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080277-150x150.jpg\";s:5:\"width\";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:\"P1080277-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:21:\"P1080277-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:21:\"P1080277-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080277-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080277-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080277-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080277-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080277-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080277-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080277-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1496840697\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(931,377,'_wp_attached_file','2017/12/P1080086.jpg'),(932,377,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080086.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080086-150x150.jpg\";s:5:\"width\";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:\"P1080086-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:\"P1080086-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:\"P1080086-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080086-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080086-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080086-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080086-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080086-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080086-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080086-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1489150986\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(933,378,'_wp_attached_file','2017/12/P1080163-1.jpg'),(934,378,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:22:\"2017/12/P1080163-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"P1080163-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"P1080163-1-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:22:\"P1080163-1-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:23:\"P1080163-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:22:\"P1080163-1-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:20:\"P1080163-1-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:22:\"P1080163-1-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:22:\"P1080163-1-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:22:\"P1080163-1-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:22:\"P1080163-1-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:22:\"P1080163-1-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1492182676\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(935,379,'_wp_attached_file','2017/12/P1080234.jpg'),(936,379,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080234.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080234-150x150.jpg\";s:5:\"width\";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:\"P1080234-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:\"P1080234-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:\"P1080234-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080234-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080234-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080234-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080234-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080234-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080234-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080234-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1495560667\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(937,380,'_wp_attached_file','2017/12/P1080256.jpg'),(938,380,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080256.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080256-150x150.jpg\";s:5:\"width\";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:\"P1080256-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:\"P1080256-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:\"P1080256-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080256-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080256-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080256-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080256-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080256-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080256-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080256-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1496413390\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(939,381,'_wp_attached_file','2017/12/P1080347.jpg'),(940,381,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080347.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080347-150x150.jpg\";s:5:\"width\";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:\"P1080347-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:\"P1080347-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:\"P1080347-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080347-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080347-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080347-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080347-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080347-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080347-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080347-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1500560549\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(941,382,'_wp_attached_file','2017/12/P1080444.jpg'),(942,382,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080444.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080444-150x150.jpg\";s:5:\"width\";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:\"P1080444-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:\"P1080444-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:\"P1080444-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080444-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080444-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080444-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080444-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080444-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080444-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080444-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507126410\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(943,383,'_wp_attached_file','2017/12/dynojet.png'),(944,383,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:235;s:6:\"height\";i:215;s:4:\"file\";s:19:\"2017/12/dynojet.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"dynojet-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:17:\"dynojet-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:19:\"dynojet-235x206.png\";s:5:\"width\";i:235;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:19:\"dynojet-235x213.png\";s:5:\"width\";i:235;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:19:\"dynojet-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:19:\"dynojet-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(945,390,'_wp_attached_file','2017/12/P1080111.jpg'),(946,390,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3776;s:6:\"height\";i:2520;s:4:\"file\";s:20:\"2017/12/P1080111.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080111-150x150.jpg\";s:5:\"width\";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:\"P1080111-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:20:\"P1080111-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"P1080111-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080111-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080111-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080111-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080111-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080111-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080111-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080111-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1490801983\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(947,391,'_wp_attached_file','2017/12/P1080113.jpg'),(948,391,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3776;s:6:\"height\";i:2520;s:4:\"file\";s:20:\"2017/12/P1080113.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080113-150x150.jpg\";s:5:\"width\";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:\"P1080113-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:20:\"P1080113-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"P1080113-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080113-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080113-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080113-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080113-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080113-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080113-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080113-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1490972147\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(949,392,'_wp_attached_file','2017/12/P1080126.jpg'),(950,392,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2736;s:6:\"height\";i:3648;s:4:\"file\";s:20:\"2017/12/P1080126.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080126-150x150.jpg\";s:5:\"width\";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:\"P1080126-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:21:\"P1080126-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:21:\"P1080126-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080126-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080126-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080126-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080126-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080126-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080126-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080126-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1491408246\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(951,393,'_wp_attached_file','2017/12/P1080136.jpg'),(952,393,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080136.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080136-150x150.jpg\";s:5:\"width\";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:\"P1080136-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:\"P1080136-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:\"P1080136-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080136-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080136-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080136-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080136-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080136-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080136-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080136-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1491483879\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(953,394,'_wp_attached_file','2017/12/P1080186.jpg'),(954,394,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080186.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080186-150x150.jpg\";s:5:\"width\";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:\"P1080186-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:\"P1080186-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:\"P1080186-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080186-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080186-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080186-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080186-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080186-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080186-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080186-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1493140485\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(955,395,'_wp_attached_file','2017/12/P1080194.jpg'),(956,395,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080194.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080194-150x150.jpg\";s:5:\"width\";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:\"P1080194-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:\"P1080194-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:\"P1080194-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080194-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080194-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080194-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080194-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080194-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080194-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080194-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1493389570\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(957,396,'_wp_attached_file','2017/12/P1080195.jpg'),(958,396,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080195.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080195-150x150.jpg\";s:5:\"width\";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:\"P1080195-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:\"P1080195-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:\"P1080195-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080195-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080195-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080195-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080195-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080195-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080195-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080195-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1493394920\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(959,397,'_wp_attached_file','2017/12/P1080197.jpg'),(960,397,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080197.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080197-150x150.jpg\";s:5:\"width\";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:\"P1080197-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:\"P1080197-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:\"P1080197-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080197-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080197-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080197-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080197-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080197-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080197-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080197-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1493656784\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(961,398,'_wp_attached_file','2017/12/P1080199.jpg'),(962,398,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3308;s:6:\"height\";i:2481;s:4:\"file\";s:20:\"2017/12/P1080199.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080199-150x150.jpg\";s:5:\"width\";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:\"P1080199-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:\"P1080199-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:\"P1080199-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080199-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080199-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080199-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080199-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080199-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080199-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080199-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1493823706\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(963,399,'_wp_attached_file','2017/12/P1080212.jpg'),(964,399,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3776;s:6:\"height\";i:2520;s:4:\"file\";s:20:\"2017/12/P1080212.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080212-150x150.jpg\";s:5:\"width\";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:\"P1080212-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:20:\"P1080212-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"P1080212-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080212-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080212-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080212-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080212-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080212-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080212-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080212-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1493912090\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(965,400,'_wp_attached_file','2017/12/P1080215.jpg'),(966,400,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080215.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080215-150x150.jpg\";s:5:\"width\";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:\"P1080215-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:\"P1080215-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:\"P1080215-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080215-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080215-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080215-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080215-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080215-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080215-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080215-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1494002723\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(967,401,'_wp_attached_file','2017/12/P1080221.jpg'),(968,401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080221.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080221-150x150.jpg\";s:5:\"width\";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:\"P1080221-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:\"P1080221-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:\"P1080221-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080221-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080221-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080221-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080221-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080221-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080221-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080221-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1494341190\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(969,402,'_wp_attached_file','2017/12/P1080226.jpg'),(970,402,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080226.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080226-150x150.jpg\";s:5:\"width\";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:\"P1080226-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:\"P1080226-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:\"P1080226-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080226-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080226-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080226-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080226-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080226-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080226-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080226-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1495034545\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(971,403,'_wp_attached_file','2017/12/P1080254.jpg'),(972,403,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2736;s:6:\"height\";i:3648;s:4:\"file\";s:20:\"2017/12/P1080254.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080254-150x150.jpg\";s:5:\"width\";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:\"P1080254-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:21:\"P1080254-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:21:\"P1080254-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080254-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080254-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080254-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080254-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080254-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080254-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080254-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1496333340\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(973,404,'_wp_attached_file','2017/12/P1080263.jpg'),(974,404,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080263.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080263-150x150.jpg\";s:5:\"width\";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:\"P1080263-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:\"P1080263-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:\"P1080263-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080263-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080263-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080263-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080263-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080263-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080263-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080263-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1496671631\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(975,405,'_wp_attached_file','2017/12/P1080269.jpg'),(976,405,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080269.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080269-150x150.jpg\";s:5:\"width\";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:\"P1080269-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:\"P1080269-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:\"P1080269-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080269-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080269-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080269-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080269-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080269-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080269-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080269-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1496679393\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(977,406,'_wp_attached_file','2017/12/P1080276.jpg'),(978,406,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080276.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080276-150x150.jpg\";s:5:\"width\";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:\"P1080276-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:\"P1080276-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:\"P1080276-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080276-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080276-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080276-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080276-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080276-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080276-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080276-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1496837817\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(979,407,'_wp_attached_file','2017/12/P1080305.jpg'),(980,407,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080305.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080305-150x150.jpg\";s:5:\"width\";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:\"P1080305-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:\"P1080305-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:\"P1080305-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080305-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080305-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080305-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080305-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080305-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080305-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080305-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1498652212\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(981,408,'_wp_attached_file','2017/12/P1080330.jpg'),(982,408,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080330.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080330-150x150.jpg\";s:5:\"width\";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:\"P1080330-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:\"P1080330-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:\"P1080330-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080330-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080330-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080330-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080330-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080330-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080330-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080330-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1499355939\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(983,409,'_wp_attached_file','2017/12/P1080353.jpg'),(984,409,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080353.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080353-150x150.jpg\";s:5:\"width\";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:\"P1080353-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:\"P1080353-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:\"P1080353-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080353-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080353-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080353-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080353-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080353-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080353-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080353-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1501159019\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(985,410,'_wp_attached_file','2017/12/P1080357.jpg'),(986,410,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080357.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080357-150x150.jpg\";s:5:\"width\";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:\"P1080357-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:\"P1080357-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:\"P1080357-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080357-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080357-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080357-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080357-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080357-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080357-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080357-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1501256202\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(987,411,'_wp_attached_file','2017/12/P1080447.jpg'),(988,411,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080447.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080447-150x150.jpg\";s:5:\"width\";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:\"P1080447-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:\"P1080447-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:\"P1080447-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080447-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080447-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080447-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080447-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080447-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080447-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080447-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1507138269\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(989,412,'_wp_attached_file','2017/12/P1080480.jpg'),(990,412,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2736;s:6:\"height\";i:3648;s:4:\"file\";s:20:\"2017/12/P1080480.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080480-150x150.jpg\";s:5:\"width\";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:\"P1080480-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:21:\"P1080480-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:21:\"P1080480-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080480-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080480-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080480-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080480-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080480-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080480-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080480-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1508951604\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(991,417,'_wp_trash_meta_status','publish'),(992,417,'_wp_trash_meta_time','1513268630'),(993,418,'_edit_lock','1513268894:1'),(994,418,'_wp_trash_meta_status','publish'),(995,418,'_wp_trash_meta_time','1513268878'),(996,419,'_edit_lock','1513269865:1'),(997,419,'_wp_trash_meta_status','publish'),(998,419,'_wp_trash_meta_time','1513269865'),(999,420,'_wp_trash_meta_status','publish'),(1000,420,'_wp_trash_meta_time','1513269935'),(1001,421,'_wp_trash_meta_status','publish'),(1002,421,'_wp_trash_meta_time','1513270217'),(1003,422,'_wp_trash_meta_status','publish'),(1004,422,'_wp_trash_meta_time','1513270439'),(1007,425,'_wp_attached_file','2017/12/2.jpg'),(1008,425,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2846;s:6:\"height\";i:4269;s:4:\"file\";s:13:\"2017/12/2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"2-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"2-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"2-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:13:\"2-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:11:\"2-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:13:\"2-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:13:\"2-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:13:\"2-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:13:\"2-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:13:\"2-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1429872347\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1009,426,'_wp_attached_file','2017/12/4.jpg'),(1010,426,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5616;s:6:\"height\";i:3744;s:4:\"file\";s:13:\"2017/12/4.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"4-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:13:\"4-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:14:\"4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:13:\"4-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:11:\"4-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:13:\"4-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:13:\"4-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:13:\"4-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:13:\"4-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:13:\"4-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1429872413\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1011,427,'_wp_attached_file','2017/12/IMG_20161206_112930-e1513273799188.jpg'),(1012,427,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3120;s:6:\"height\";i:4160;s:4:\"file\";s:46:\"2017/12/IMG_20161206_112930-e1513273799188.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"IMG_20161206_112930-e1513273799188-150x150.jpg\";s:5:\"width\";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:\"IMG_20161206_112930-e1513273799188-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:47:\"IMG_20161206_112930-e1513273799188-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:47:\"IMG_20161206_112930-e1513273799188-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:46:\"IMG_20161206_112930-e1513273799188-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:44:\"IMG_20161206_112930-e1513273799188-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:46:\"IMG_20161206_112930-e1513273799188-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:46:\"IMG_20161206_112930-e1513273799188-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:46:\"IMG_20161206_112930-e1513273799188-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:46:\"IMG_20161206_112930-e1513273799188-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:46:\"IMG_20161206_112930-e1513273799188-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"BlackBerry Passport\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1481023769\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.24\";s:3:\"iso\";s:2:\"92\";s:13:\"shutter_speed\";s:7:\"0.03333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"8\";s:8:\"keywords\";a:0:{}}}'),(1013,428,'_wp_attached_file','2017/12/IMG_20170103_125635.jpg'),(1014,428,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4160;s:6:\"height\";i:3120;s:4:\"file\";s:31:\"2017/12/IMG_20170103_125635.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20170103_125635-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20170103_125635-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:31:\"IMG_20170103_125635-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:32:\"IMG_20170103_125635-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:31:\"IMG_20170103_125635-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:29:\"IMG_20170103_125635-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:31:\"IMG_20170103_125635-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:31:\"IMG_20170103_125635-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:31:\"IMG_20170103_125635-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:31:\"IMG_20170103_125635-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:31:\"IMG_20170103_125635-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"BlackBerry Passport\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1483448195\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.24\";s:3:\"iso\";s:3:\"162\";s:13:\"shutter_speed\";s:7:\"0.03333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1015,429,'_wp_attached_file','2017/12/P1080018.jpg'),(1016,429,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2736;s:6:\"height\";i:3648;s:4:\"file\";s:20:\"2017/12/P1080018.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080018-150x150.jpg\";s:5:\"width\";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:\"P1080018-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:21:\"P1080018-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:21:\"P1080018-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080018-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080018-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080018-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080018-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080018-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080018-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080018-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1484665606\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"7.4\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1017,430,'_wp_attached_file','2017/12/P1080026.jpg'),(1018,430,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2737;s:6:\"height\";i:3210;s:4:\"file\";s:20:\"2017/12/P1080026.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080026-150x150.jpg\";s:5:\"width\";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:\"P1080026-256x300.jpg\";s:5:\"width\";i:256;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"P1080026-768x901.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:901;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"P1080026-873x1024.jpg\";s:5:\"width\";i:873;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080026-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080026-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080026-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080026-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080026-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080026-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080026-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1485174575\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1019,431,'_wp_attached_file','2017/12/P1080077.jpg'),(1020,431,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080077.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080077-150x150.jpg\";s:5:\"width\";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:\"P1080077-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:\"P1080077-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:\"P1080077-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080077-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080077-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080077-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080077-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080077-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080077-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080077-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1488382036\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1021,427,'_wp_attachment_backup_sizes','a:12:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:4160;s:6:\"height\";i:3120;s:4:\"file\";s:23:\"IMG_20161206_112930.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:31:\"IMG_20161206_112930-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:31:\"IMG_20161206_112930-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:31:\"IMG_20161206_112930-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:32:\"IMG_20161206_112930-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"illdy-blog-list-orig\";a:4:{s:4:\"file\";s:31:\"IMG_20161206_112930-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"illdy-widget-recent-posts-orig\";a:4:{s:4:\"file\";s:29:\"IMG_20161206_112930-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"illdy-blog-post-related-articles-orig\";a:4:{s:4:\"file\";s:31:\"IMG_20161206_112930-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:33:\"illdy-front-page-latest-news-orig\";a:4:{s:4:\"file\";s:31:\"IMG_20161206_112930-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"illdy-front-page-testimonials-orig\";a:4:{s:4:\"file\";s:31:\"IMG_20161206_112930-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"illdy-front-page-projects-orig\";a:4:{s:4:\"file\";s:31:\"IMG_20161206_112930-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-person-orig\";a:4:{s:4:\"file\";s:31:\"IMG_20161206_112930-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(1022,432,'_wp_attached_file','2017/12/P1080082.jpg'),(1023,432,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080082.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080082-150x150.jpg\";s:5:\"width\";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:\"P1080082-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:\"P1080082-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:\"P1080082-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080082-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080082-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080082-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080082-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080082-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080082-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080082-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1488827433\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1024,433,'_wp_attached_file','2017/12/P1080188.jpg'),(1025,433,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080188.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080188-150x150.jpg\";s:5:\"width\";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:\"P1080188-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:\"P1080188-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:\"P1080188-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080188-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080188-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080188-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080188-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080188-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080188-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080188-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1493211898\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1026,434,'_wp_attached_file','2017/12/P1080360.jpg'),(1027,434,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2736;s:6:\"height\";i:3648;s:4:\"file\";s:20:\"2017/12/P1080360.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080360-150x150.jpg\";s:5:\"width\";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:\"P1080360-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:21:\"P1080360-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:21:\"P1080360-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080360-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080360-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080360-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080360-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080360-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080360-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080360-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1501501070\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1028,435,'_wp_attached_file','2017/12/P1080373.jpg'),(1029,435,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3648;s:6:\"height\";i:2736;s:4:\"file\";s:20:\"2017/12/P1080373.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080373-150x150.jpg\";s:5:\"width\";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:\"P1080373-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:\"P1080373-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:\"P1080373-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080373-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080373-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080373-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080373-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080373-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080373-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080373-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1502811828\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1030,436,'_wp_attached_file','2017/12/akrapovic-logo-horizontal.png'),(1031,436,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:598;s:6:\"height\";i:171;s:4:\"file\";s:37:\"2017/12/akrapovic-logo-horizontal.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"akrapovic-logo-horizontal-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"akrapovic-logo-horizontal-300x86.png\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:35:\"akrapovic-logo-horizontal-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:37:\"akrapovic-logo-horizontal-240x171.png\";s:5:\"width\";i:240;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:37:\"akrapovic-logo-horizontal-250x171.png\";s:5:\"width\";i:250;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:37:\"akrapovic-logo-horizontal-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:37:\"akrapovic-logo-horizontal-476x171.png\";s:5:\"width\";i:476;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:37:\"akrapovic-logo-horizontal-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(1032,437,'_wp_attached_file','2017/12/ANSR.png'),(1033,437,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:16:\"2017/12/ANSR.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:14:\"ANSR-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:15:\"ANSR-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:15:\"ANSR-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1034,438,'_wp_attached_file','2017/12/bahn-logo.png'),(1035,438,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:21:\"2017/12/bahn-logo.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:19:\"bahn-logo-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"bahn-logo-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"bahn-logo-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1036,439,'_wp_attached_file','2017/12/bassani.png'),(1037,439,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"file\";s:19:\"2017/12/bassani.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"bassani-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:19:\"bassani-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:17:\"bassani-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:19:\"bassani-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:19:\"bassani-250x213.png\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:19:\"bassani-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:19:\"bassani-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(1038,440,'_wp_attached_file','2017/12/bazzaz.png'),(1039,440,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:493;s:6:\"height\";i:84;s:4:\"file\";s:18:\"2017/12/bazzaz.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"bazzaz-150x84.png\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"bazzaz-300x51.png\";s:5:\"width\";i:300;s:6:\"height\";i:51;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:16:\"bazzaz-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:17:\"bazzaz-240x84.png\";s:5:\"width\";i:240;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:17:\"bazzaz-250x84.png\";s:5:\"width\";i:250;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:17:\"bazzaz-127x84.png\";s:5:\"width\";i:127;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:17:\"bazzaz-476x84.png\";s:5:\"width\";i:476;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:17:\"bazzaz-125x84.png\";s:5:\"width\";i:125;s:6:\"height\";i:84;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:{}}}'),(1040,441,'_wp_attached_file','2017/12/BikeMaster.png'),(1041,441,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:22:\"2017/12/BikeMaster.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:20:\"BikeMaster-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:21:\"BikeMaster-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:21:\"BikeMaster-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1042,442,'_wp_attached_file','2017/12/Bills-Pipes-Tri-Logo.png'),(1043,442,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3584;s:6:\"height\";i:1004;s:4:\"file\";s:32:\"2017/12/Bills-Pipes-Tri-Logo.png\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Bills-Pipes-Tri-Logo-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:\"Bills-Pipes-Tri-Logo-300x84.png\";s:5:\"width\";i:300;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Bills-Pipes-Tri-Logo-768x215.png\";s:5:\"width\";i:768;s:6:\"height\";i:215;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Bills-Pipes-Tri-Logo-1024x287.png\";s:5:\"width\";i:1024;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:32:\"Bills-Pipes-Tri-Logo-750x500.png\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:30:\"Bills-Pipes-Tri-Logo-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:32:\"Bills-Pipes-Tri-Logo-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:32:\"Bills-Pipes-Tri-Logo-250x213.png\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:32:\"Bills-Pipes-Tri-Logo-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:32:\"Bills-Pipes-Tri-Logo-476x476.png\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:32:\"Bills-Pipes-Tri-Logo-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(1044,443,'_wp_attached_file','2017/12/biltwell-logo-new.png'),(1045,443,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:224;s:4:\"file\";s:29:\"2017/12/biltwell-logo-new.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"biltwell-logo-new-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:29:\"biltwell-logo-new-300x132.png\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:27:\"biltwell-logo-new-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:29:\"biltwell-logo-new-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:29:\"biltwell-logo-new-250x213.png\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:29:\"biltwell-logo-new-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:29:\"biltwell-logo-new-476x224.png\";s:5:\"width\";i:476;s:6:\"height\";i:224;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:29:\"biltwell-logo-new-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(1046,444,'_wp_attached_file','2017/12/blackbrand-bw-logo.png'),(1047,444,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:30:\"2017/12/blackbrand-bw-logo.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:28:\"blackbrand-bw-logo-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:29:\"blackbrand-bw-logo-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:29:\"blackbrand-bw-logo-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1048,445,'_wp_attached_file','2017/12/brocks-performance-small.png'),(1049,445,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:133;s:4:\"file\";s:36:\"2017/12/brocks-performance-small.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"brocks-performance-small-150x133.png\";s:5:\"width\";i:150;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"brocks-performance-small-300x80.png\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:34:\"brocks-performance-small-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:36:\"brocks-performance-small-240x133.png\";s:5:\"width\";i:240;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:36:\"brocks-performance-small-250x133.png\";s:5:\"width\";i:250;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:36:\"brocks-performance-small-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:36:\"brocks-performance-small-476x133.png\";s:5:\"width\";i:476;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:36:\"brocks-performance-small-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(1050,446,'_wp_attached_file','2017/12/BST.png'),(1051,446,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:742;s:6:\"height\";i:274;s:4:\"file\";s:15:\"2017/12/BST.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"BST-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:15:\"BST-300x111.png\";s:5:\"width\";i:300;s:6:\"height\";i:111;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:13:\"BST-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:15:\"BST-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:15:\"BST-250x213.png\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:15:\"BST-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:15:\"BST-476x274.png\";s:5:\"width\";i:476;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:15:\"BST-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(1052,447,'_wp_attached_file','2017/12/Bully.png'),(1053,447,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:17:\"2017/12/Bully.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:15:\"Bully-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:16:\"Bully-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:16:\"Bully-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1054,448,'_wp_attached_file','2017/12/Burly.png'),(1055,448,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:17:\"2017/12/Burly.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:15:\"Burly-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:16:\"Burly-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:16:\"Burly-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1056,449,'_wp_attached_file','2017/12/crusher-performance-logo.png'),(1057,449,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:36:\"2017/12/crusher-performance-logo.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:34:\"crusher-performance-logo-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:35:\"crusher-performance-logo-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:35:\"crusher-performance-logo-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1058,450,'_wp_attached_file','2017/12/DragSpecialtiesLogo.png'),(1059,450,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:287;s:4:\"file\";s:31:\"2017/12/DragSpecialtiesLogo.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"DragSpecialtiesLogo-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:30:\"DragSpecialtiesLogo-300x86.png\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"DragSpecialtiesLogo-768x220.png\";s:5:\"width\";i:768;s:6:\"height\";i:220;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:31:\"DragSpecialtiesLogo-750x287.png\";s:5:\"width\";i:750;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:29:\"DragSpecialtiesLogo-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:31:\"DragSpecialtiesLogo-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:31:\"DragSpecialtiesLogo-250x213.png\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:31:\"DragSpecialtiesLogo-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:31:\"DragSpecialtiesLogo-476x287.png\";s:5:\"width\";i:476;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:31:\"DragSpecialtiesLogo-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(1060,451,'_wp_attached_file','2017/12/dragon-fire.png'),(1061,451,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:23:\"2017/12/dragon-fire.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:21:\"dragon-fire-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:22:\"dragon-fire-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:22:\"dragon-fire-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1062,452,'_wp_attached_file','2017/12/dynojet-1.png'),(1063,452,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:235;s:6:\"height\";i:215;s:4:\"file\";s:21:\"2017/12/dynojet-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"dynojet-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:19:\"dynojet-1-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:21:\"dynojet-1-235x206.png\";s:5:\"width\";i:235;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:21:\"dynojet-1-235x213.png\";s:5:\"width\";i:235;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:21:\"dynojet-1-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:21:\"dynojet-1-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(1064,453,'_wp_attached_file','2017/12/FirstGear.png'),(1065,453,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:21:\"2017/12/FirstGear.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:19:\"FirstGear-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"FirstGear-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"FirstGear-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1066,454,'_wp_attached_file','2017/12/FMFLogo1.png'),(1067,454,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:299;s:6:\"height\";i:117;s:4:\"file\";s:20:\"2017/12/FMFLogo1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"FMFLogo1-150x117.png\";s:5:\"width\";i:150;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"FMFLogo1-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"FMFLogo1-240x117.png\";s:5:\"width\";i:240;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"FMFLogo1-250x117.png\";s:5:\"width\";i:250;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"FMFLogo1-127x117.png\";s:5:\"width\";i:127;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"FMFLogo1-125x117.png\";s:5:\"width\";i:125;s:6:\"height\";i:117;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:{}}}'),(1068,455,'_wp_attached_file','2017/12/I8IEMmvQ_400x400.png'),(1069,455,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:28:\"2017/12/I8IEMmvQ_400x400.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"I8IEMmvQ_400x400-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:28:\"I8IEMmvQ_400x400-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:26:\"I8IEMmvQ_400x400-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:28:\"I8IEMmvQ_400x400-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:28:\"I8IEMmvQ_400x400-250x213.png\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:28:\"I8IEMmvQ_400x400-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:28:\"I8IEMmvQ_400x400-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(1070,456,'_wp_attached_file','2017/12/icon-logo-icon-logo-21.jpg'),(1071,456,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2025;s:6:\"height\";i:671;s:4:\"file\";s:34:\"2017/12/icon-logo-icon-logo-21.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"icon-logo-icon-logo-21-150x150.jpg\";s:5:\"width\";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:\"icon-logo-icon-logo-21-300x99.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"icon-logo-icon-logo-21-768x254.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"icon-logo-icon-logo-21-1024x339.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:34:\"icon-logo-icon-logo-21-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:32:\"icon-logo-icon-logo-21-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:34:\"icon-logo-icon-logo-21-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:34:\"icon-logo-icon-logo-21-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:34:\"icon-logo-icon-logo-21-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:34:\"icon-logo-icon-logo-21-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:34:\"icon-logo-icon-logo-21-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(1072,457,'_wp_attached_file','2017/12/Kur.png'),(1073,457,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:15:\"2017/12/Kur.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:13:\"Kur-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:14:\"Kur-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:14:\"Kur-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1074,458,'_wp_attached_file','2017/12/logo.png'),(1075,458,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:313;s:6:\"height\";i:140;s:4:\"file\";s:16:\"2017/12/logo.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-150x140.png\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"logo-300x134.png\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:14:\"logo-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:16:\"logo-240x140.png\";s:5:\"width\";i:240;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:16:\"logo-250x140.png\";s:5:\"width\";i:250;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:16:\"logo-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:16:\"logo-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(1076,459,'_wp_attached_file','2017/12/logo_big.png'),(1077,459,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:151;s:4:\"file\";s:20:\"2017/12/logo_big.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"logo_big-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"logo_big-300x76.png\";s:5:\"width\";i:300;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"logo_big-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"logo_big-240x151.png\";s:5:\"width\";i:240;s:6:\"height\";i:151;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"logo_big-250x151.png\";s:5:\"width\";i:250;s:6:\"height\";i:151;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"logo_big-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"logo_big-476x151.png\";s:5:\"width\";i:476;s:6:\"height\";i:151;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"logo_big-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(1078,460,'_wp_attached_file','2017/12/lowbrow-customs-logo-11.png'),(1079,460,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:100;s:4:\"file\";s:35:\"2017/12/lowbrow-customs-logo-11.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"lowbrow-customs-logo-11-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:33:\"lowbrow-customs-logo-11-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:35:\"lowbrow-customs-logo-11-127x100.png\";s:5:\"width\";i:127;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:35:\"lowbrow-customs-logo-11-125x100.png\";s:5:\"width\";i:125;s:6:\"height\";i:100;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:{}}}'),(1080,461,'_wp_attached_file','2017/12/moose-racing-logo.jpg'),(1081,461,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:289;s:4:\"file\";s:29:\"2017/12/moose-racing-logo.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"moose-racing-logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"moose-racing-logo-300x85.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"moose-racing-logo-768x217.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"moose-racing-logo-1024x289.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:29:\"moose-racing-logo-750x289.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:27:\"moose-racing-logo-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:29:\"moose-racing-logo-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:29:\"moose-racing-logo-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:29:\"moose-racing-logo-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:29:\"moose-racing-logo-476x289.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:289;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:29:\"moose-racing-logo-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(1082,462,'_wp_attached_file','2017/12/MSR.png'),(1083,462,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:15:\"2017/12/MSR.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:13:\"MSR-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:14:\"MSR-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:14:\"MSR-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1084,463,'_wp_attached_file','2017/12/mustang.png'),(1085,463,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:19:\"2017/12/mustang.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:17:\"mustang-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:18:\"mustang-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:18:\"mustang-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1086,464,'_wp_attached_file','2017/12/PM.png'),(1087,464,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:14:\"2017/12/PM.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:12:\"PM-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:13:\"PM-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:13:\"PM-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1088,465,'_wp_attached_file','2017/12/progressive.png'),(1089,465,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:23:\"2017/12/progressive.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:21:\"progressive-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:22:\"progressive-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:22:\"progressive-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1090,466,'_wp_attached_file','2017/12/ProTaper.png'),(1091,466,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:20:\"2017/12/ProTaper.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"ProTaper-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:19:\"ProTaper-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:19:\"ProTaper-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1092,467,'_wp_attached_file','2017/12/QBoss.png'),(1093,467,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:17:\"2017/12/QBoss.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:15:\"QBoss-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:16:\"QBoss-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:16:\"QBoss-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1094,468,'_wp_attached_file','2017/12/rekluse-logo-473E428D32-seeklogo.com_.png'),(1095,468,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:260;s:6:\"height\";i:113;s:4:\"file\";s:49:\"2017/12/rekluse-logo-473E428D32-seeklogo.com_.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"rekluse-logo-473E428D32-seeklogo.com_-150x113.png\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:47:\"rekluse-logo-473E428D32-seeklogo.com_-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:49:\"rekluse-logo-473E428D32-seeklogo.com_-240x113.png\";s:5:\"width\";i:240;s:6:\"height\";i:113;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:49:\"rekluse-logo-473E428D32-seeklogo.com_-250x113.png\";s:5:\"width\";i:250;s:6:\"height\";i:113;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:49:\"rekluse-logo-473E428D32-seeklogo.com_-127x113.png\";s:5:\"width\";i:127;s:6:\"height\";i:113;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:49:\"rekluse-logo-473E428D32-seeklogo.com_-125x113.png\";s:5:\"width\";i:125;s:6:\"height\";i:113;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:{}}}'),(1096,469,'_wp_attached_file','2017/12/Renthal.png'),(1097,469,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:19:\"2017/12/Renthal.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:17:\"Renthal-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:18:\"Renthal-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:18:\"Renthal-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1098,470,'_wp_attached_file','2017/12/RR.png'),(1099,470,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:14:\"2017/12/RR.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:12:\"RR-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:13:\"RR-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:13:\"RR-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1100,471,'_wp_attached_file','2017/12/RS.png'),(1101,471,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:14:\"2017/12/RS.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:12:\"RS-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:13:\"RS-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:13:\"RS-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1102,472,'_wp_attached_file','2017/12/skid-lid.png'),(1103,472,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:20:\"2017/12/skid-lid.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"skid-lid-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:19:\"skid-lid-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:19:\"skid-lid-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1104,473,'_wp_attached_file','2017/12/SS.png'),(1105,473,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:14:\"2017/12/SS.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:12:\"SS-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:13:\"SS-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:13:\"SS-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1106,474,'_wp_attached_file','2017/12/strider-logo.png'),(1107,474,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2900;s:6:\"height\";i:1954;s:4:\"file\";s:24:\"2017/12/strider-logo.png\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"strider-logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"strider-logo-300x202.png\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"strider-logo-768x517.png\";s:5:\"width\";i:768;s:6:\"height\";i:517;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"strider-logo-1024x690.png\";s:5:\"width\";i:1024;s:6:\"height\";i:690;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:24:\"strider-logo-750x500.png\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:22:\"strider-logo-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:24:\"strider-logo-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:24:\"strider-logo-250x213.png\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:24:\"strider-logo-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:24:\"strider-logo-476x476.png\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:24:\"strider-logo-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(1108,475,'_wp_attached_file','2017/12/tbags.png'),(1109,475,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:17:\"2017/12/tbags.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:15:\"tbags-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:16:\"tbags-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:16:\"tbags-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1110,476,'_wp_attached_file','2017/12/thor_thumb.png'),(1111,476,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2017/12/thor_thumb.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"thor_thumb-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:20:\"thor_thumb-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:22:\"thor_thumb-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:22:\"thor_thumb-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(1112,477,'_wp_attached_file','2017/12/thor-600.jpg'),(1113,477,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:229;s:4:\"file\";s:20:\"2017/12/thor-600.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"thor-600-150x150.jpg\";s:5:\"width\";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:\"thor-600-300x115.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"thor-600-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"thor-600-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"thor-600-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"thor-600-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"thor-600-476x229.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:229;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"thor-600-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(1114,478,'_wp_attached_file','2017/12/tsukigi-logo.png'),(1115,478,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:150;s:4:\"file\";s:24:\"2017/12/tsukigi-logo.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"tsukigi-logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"tsukigi-logo-300x129.png\";s:5:\"width\";i:300;s:6:\"height\";i:129;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:22:\"tsukigi-logo-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:24:\"tsukigi-logo-240x150.png\";s:5:\"width\";i:240;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:24:\"tsukigi-logo-250x150.png\";s:5:\"width\";i:250;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:24:\"tsukigi-logo-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:24:\"tsukigi-logo-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(1116,479,'_wp_attached_file','2017/12/VH.png'),(1117,479,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:14:\"2017/12/VH.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:12:\"VH-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:13:\"VH-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:13:\"VH-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1118,480,'_wp_attached_file','2017/12/VTwin.png'),(1119,480,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:17:\"2017/12/VTwin.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:15:\"VTwin-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:16:\"VTwin-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:16:\"VTwin-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1120,481,'_wp_attached_file','2017/12/v-twin-manufacturing.png'),(1121,481,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:280;s:6:\"height\";i:280;s:4:\"file\";s:32:\"2017/12/v-twin-manufacturing.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"v-twin-manufacturing-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:30:\"v-twin-manufacturing-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:32:\"v-twin-manufacturing-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:32:\"v-twin-manufacturing-250x213.png\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:32:\"v-twin-manufacturing-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:32:\"v-twin-manufacturing-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(1122,482,'_wp_attached_file','2017/12/worldwide-bearings-website.png'),(1123,482,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2044;s:6:\"height\";i:1192;s:4:\"file\";s:38:\"2017/12/worldwide-bearings-website.png\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"worldwide-bearings-website-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"worldwide-bearings-website-300x175.png\";s:5:\"width\";i:300;s:6:\"height\";i:175;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"worldwide-bearings-website-768x448.png\";s:5:\"width\";i:768;s:6:\"height\";i:448;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"worldwide-bearings-website-1024x597.png\";s:5:\"width\";i:1024;s:6:\"height\";i:597;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:38:\"worldwide-bearings-website-750x500.png\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:36:\"worldwide-bearings-website-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:38:\"worldwide-bearings-website-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:38:\"worldwide-bearings-website-250x213.png\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:38:\"worldwide-bearings-website-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:38:\"worldwide-bearings-website-476x476.png\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:38:\"worldwide-bearings-website-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(1124,483,'_wp_attached_file','2017/12/xtreme.png'),(1125,483,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:72;s:4:\"file\";s:18:\"2017/12/xtreme.png\";s:5:\"sizes\";a:3:{s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:16:\"xtreme-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:17:\"xtreme-127x72.png\";s:5:\"width\";i:127;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:17:\"xtreme-125x72.png\";s:5:\"width\";i:125;s:6:\"height\";i:72;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:{}}}'),(1126,484,'_wp_attached_file','2017/12/yoshimura.png'),(1127,484,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:21:\"2017/12/yoshimura.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"yoshimura-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:21:\"yoshimura-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:19:\"yoshimura-70x70.png\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:21:\"yoshimura-240x206.png\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:21:\"yoshimura-250x213.png\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:21:\"yoshimura-127x127.png\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:21:\"yoshimura-125x125.png\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(1128,496,'_wp_trash_meta_status','publish'),(1129,496,'_wp_trash_meta_time','1513281086'),(1131,499,'_wp_attached_file','2017/12/STD_Flats-23.jpg'),(1132,499,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:24:\"2017/12/STD_Flats-23.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"STD_Flats-23-150x150.jpg\";s:5:\"width\";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:\"STD_Flats-23-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:24:\"STD_Flats-23-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:25:\"STD_Flats-23-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:24:\"STD_Flats-23-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:22:\"STD_Flats-23-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:24:\"STD_Flats-23-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:24:\"STD_Flats-23-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:24:\"STD_Flats-23-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:24:\"STD_Flats-23-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:24:\"STD_Flats-23-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:14:\"Marco Penajoia\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1475251595\";s:9:\"copyright\";s:17:\"marcopenajoia.com\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1133,500,'_wp_attached_file','2017/12/FHF_617-7.jpg'),(1134,500,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:21:\"2017/12/FHF_617-7.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"FHF_617-7-150x150.jpg\";s:5:\"width\";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:\"FHF_617-7-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:21:\"FHF_617-7-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:22:\"FHF_617-7-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:21:\"FHF_617-7-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:19:\"FHF_617-7-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:21:\"FHF_617-7-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:21:\"FHF_617-7-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:21:\"FHF_617-7-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:21:\"FHF_617-7-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:21:\"FHF_617-7-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"X-T10\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1496392862\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:18:\"0.0055555555555556\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1135,501,'_wp_attached_file','2017/12/10887267_10154921374315364_650857427494127198_o.jpg'),(1136,501,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1172;s:4:\"file\";s:59:\"2017/12/10887267_10154921374315364_650857427494127198_o.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"10887267_10154921374315364_650857427494127198_o-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"10887267_10154921374315364_650857427494127198_o-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"10887267_10154921374315364_650857427494127198_o-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"10887267_10154921374315364_650857427494127198_o-1024x586.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:586;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:59:\"10887267_10154921374315364_650857427494127198_o-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:57:\"10887267_10154921374315364_650857427494127198_o-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:59:\"10887267_10154921374315364_650857427494127198_o-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:59:\"10887267_10154921374315364_650857427494127198_o-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:59:\"10887267_10154921374315364_650857427494127198_o-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:59:\"10887267_10154921374315364_650857427494127198_o-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:59:\"10887267_10154921374315364_650857427494127198_o-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"PETE FREEMAN\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:35:\"Pete Freeman 2013 www.capture27.com\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1137,502,'_wp_attached_file','2017/12/14114935_1094484073963862_7511491259267369871_o.jpg'),(1138,502,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:960;s:4:\"file\";s:59:\"2017/12/14114935_1094484073963862_7511491259267369871_o.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"14114935_1094484073963862_7511491259267369871_o-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"14114935_1094484073963862_7511491259267369871_o-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"14114935_1094484073963862_7511491259267369871_o-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:59:\"14114935_1094484073963862_7511491259267369871_o-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:57:\"14114935_1094484073963862_7511491259267369871_o-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:59:\"14114935_1094484073963862_7511491259267369871_o-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:59:\"14114935_1094484073963862_7511491259267369871_o-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:59:\"14114935_1094484073963862_7511491259267369871_o-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:59:\"14114935_1094484073963862_7511491259267369871_o-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:59:\"14114935_1094484073963862_7511491259267369871_o-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(1139,503,'_wp_attached_file','2017/12/000043280005.jpg'),(1140,503,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:481;s:4:\"file\";s:24:\"2017/12/000043280005.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"000043280005-150x150.jpg\";s:5:\"width\";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:\"000043280005-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"000043280005-768x308.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:308;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"000043280005-1024x410.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:24:\"000043280005-750x481.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:481;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:22:\"000043280005-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:24:\"000043280005-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:24:\"000043280005-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:24:\"000043280005-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:24:\"000043280005-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:24:\"000043280005-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'),(1141,504,'_wp_attached_file','2017/12/BW_STD-2.jpg'),(1142,504,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1340;s:6:\"height\";i:2000;s:4:\"file\";s:20:\"2017/12/BW_STD-2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"BW_STD-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:20:\"BW_STD-2-201x300.jpg\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"BW_STD-2-768x1146.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"BW_STD-2-686x1024.jpg\";s:5:\"width\";i:686;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"BW_STD-2-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"BW_STD-2-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"BW_STD-2-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"BW_STD-2-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"BW_STD-2-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"BW_STD-2-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"BW_STD-2-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:\"1492428328\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1143,505,'_wp_attached_file','2017/12/BW_STD-13.jpg'),(1144,505,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1340;s:6:\"height\";i:2000;s:4:\"file\";s:21:\"2017/12/BW_STD-13.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"BW_STD-13-150x150.jpg\";s:5:\"width\";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:\"BW_STD-13-201x300.jpg\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"BW_STD-13-768x1146.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"BW_STD-13-686x1024.jpg\";s:5:\"width\";i:686;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:21:\"BW_STD-13-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:19:\"BW_STD-13-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:21:\"BW_STD-13-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:21:\"BW_STD-13-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:21:\"BW_STD-13-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:21:\"BW_STD-13-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:21:\"BW_STD-13-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:\"1492428373\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1145,506,'_wp_attached_file','2017/12/STD6-5.jpg'),(1146,506,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2250;s:6:\"height\";i:1500;s:4:\"file\";s:18:\"2017/12/STD6-5.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"STD6-5-150x150.jpg\";s:5:\"width\";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:\"STD6-5-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:18:\"STD6-5-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:19:\"STD6-5-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:18:\"STD6-5-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:16:\"STD6-5-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:18:\"STD6-5-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:18:\"STD6-5-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:18:\"STD6-5-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:18:\"STD6-5-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:18:\"STD6-5-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"X-T10\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1485446072\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"56\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1147,507,'_wp_attached_file','2017/12/STD7-14-1.jpg'),(1148,507,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2250;s:4:\"file\";s:21:\"2017/12/STD7-14-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"STD7-14-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"STD7-14-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"STD7-14-1-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"STD7-14-1-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:21:\"STD7-14-1-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:19:\"STD7-14-1-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:21:\"STD7-14-1-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:21:\"STD7-14-1-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:21:\"STD7-14-1-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:21:\"STD7-14-1-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:21:\"STD7-14-1-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"X-T10\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1485528999\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"56\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1149,508,'_wp_attached_file','2017/12/STD10-20.jpg'),(1150,508,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2250;s:6:\"height\";i:1500;s:4:\"file\";s:20:\"2017/12/STD10-20.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"STD10-20-150x150.jpg\";s:5:\"width\";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:\"STD10-20-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:20:\"STD10-20-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:21:\"STD10-20-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"STD10-20-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"STD10-20-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"STD10-20-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"STD10-20-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"STD10-20-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"STD10-20-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"STD10-20-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"X-T10\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1490098466\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1151,509,'_wp_attached_file','2017/12/STD10-21.jpg'),(1152,509,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2250;s:6:\"height\";i:1500;s:4:\"file\";s:20:\"2017/12/STD10-21.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"STD10-21-150x150.jpg\";s:5:\"width\";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:\"STD10-21-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:20:\"STD10-21-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:21:\"STD10-21-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"STD10-21-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"STD10-21-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"STD10-21-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"STD10-21-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"STD10-21-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"STD10-21-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"STD10-21-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"X-T10\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1490098552\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"56\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1153,510,'_wp_attached_file','2017/12/White-Shovel-2.jpg'),(1154,510,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:3000;s:4:\"file\";s:26:\"2017/12/White-Shovel-2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"White-Shovel-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:26:\"White-Shovel-2-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"White-Shovel-2-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"White-Shovel-2-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:26:\"White-Shovel-2-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:24:\"White-Shovel-2-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:26:\"White-Shovel-2-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:26:\"White-Shovel-2-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:26:\"White-Shovel-2-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:26:\"White-Shovel-2-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:26:\"White-Shovel-2-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:14:\"Marco_Penajoia\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1501667295\";s:9:\"copyright\";s:14:\"Marco_Penajoia\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1155,311,'_edit_lock','1513287109:1'),(1156,514,'_wp_attached_file','2017/12/P1080341.jpg'),(1157,514,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2736;s:6:\"height\";i:3648;s:4:\"file\";s:20:\"2017/12/P1080341.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"P1080341-150x150.jpg\";s:5:\"width\";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:\"P1080341-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:21:\"P1080341-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:21:\"P1080341-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:20:\"P1080341-750x500.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:18:\"P1080341-70x70.jpg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:20:\"P1080341-240x206.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:20:\"P1080341-250x213.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:20:\"P1080341-127x127.jpg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:20:\"P1080341-476x476.jpg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:20:\"P1080341-125x125.jpg\";s:5:\"width\";i:125;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"DMC-LX3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1499881331\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:9:\"0.0015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1158,311,'_edit_last','1'),(1159,311,'_thumbnail_id','514'),(1160,311,'_wp_page_template','default'),(1161,515,'_wp_attached_file','2017/12/662.jpeg'),(1162,515,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1066;s:4:\"file\";s:16:\"2017/12/662.jpeg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"662-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:16:\"662-300x200.jpeg\";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:16:\"662-768x512.jpeg\";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:17:\"662-1024x682.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"illdy-blog-list\";a:4:{s:4:\"file\";s:16:\"662-750x500.jpeg\";s:5:\"width\";i:750;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-widget-recent-posts\";a:4:{s:4:\"file\";s:14:\"662-70x70.jpeg\";s:5:\"width\";i:70;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"illdy-blog-post-related-articles\";a:4:{s:4:\"file\";s:16:\"662-240x206.jpeg\";s:5:\"width\";i:240;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"illdy-front-page-latest-news\";a:4:{s:4:\"file\";s:16:\"662-250x213.jpeg\";s:5:\"width\";i:250;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"illdy-front-page-testimonials\";a:4:{s:4:\"file\";s:16:\"662-127x127.jpeg\";s:5:\"width\";i:127;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"illdy-front-page-projects\";a:4:{s:4:\"file\";s:16:\"662-476x476.jpeg\";s:5:\"width\";i:476;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"illdy-front-page-person\";a:4:{s:4:\"file\";s:16:\"662-125x125.jpeg\";s:5:\"width\";i:125;s:6:\"height\";i:125;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:{}}}'); /*!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_520_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open', `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT '0', `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`ID`), KEY `post_name` (`post_name`(191)), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=InnoDB AUTO_INCREMENT=520 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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 (1,1,'2016-12-12 19:47:36','2016-12-12 19:47:36','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world','','','2016-12-12 19:47:36','2016-12-12 19:47:36','',0,'http://stdcycle.com/company/?p=1',0,'post','',1),(2,1,'2016-12-12 19:47:36','2016-12-12 19:47:36','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://stdcycle.com/company/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','closed','open','','sample-page','','','2016-12-12 19:47:36','2016-12-12 19:47:36','',0,'http://stdcycle.com/company/?page_id=2',0,'page','',0),(14,1,'2017-01-13 15:44:37','0000-00-00 00:00:00','gfdhdfg sdz','','','draft','open','open','','','','','2017-01-13 15:44:37','2017-01-13 15:44:37','',0,'http://stdcycle.com/company/?p=14',0,'post','',0),(19,1,'2017-01-13 16:44:16','2017-01-13 16:44:16','','standard bar logo trans','','inherit','open','closed','','standard-bar-logo-trans','','','2017-01-13 16:44:16','2017-01-13 16:44:16','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/standard-bar-logo-trans.png',0,'attachment','image/png',0),(21,1,'2017-01-13 16:48:25','2017-01-13 16:48:25','','standard bar logo sticker concept','','inherit','open','closed','','standard-bar-logo-sticker-concept','','','2017-01-17 23:34:20','2017-01-17 23:34:20','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/standard-bar-logo-sticker-concept.png',0,'attachment','image/png',0),(23,1,'2017-01-13 20:14:28','2017-01-13 20:14:28','','IMG_95751','','inherit','open','closed','','img_95751','','','2017-01-13 20:14:28','2017-01-13 20:14:28','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/IMG_95751.jpg',0,'attachment','image/jpeg',0),(24,1,'2017-01-13 20:14:46','2017-01-13 20:14:46','http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-IMG_95751.jpg','cropped-IMG_95751.jpg','','inherit','open','closed','','cropped-img_95751-jpg','','','2017-01-13 20:14:46','2017-01-13 20:14:46','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-IMG_95751.jpg',0,'attachment','image/jpeg',0),(26,1,'2017-01-13 20:16:10','2017-01-13 20:16:10','','cropped-standard-bar-logo-trans.png','','inherit','open','closed','','cropped-standard-bar-logo-trans-png','','','2017-01-17 23:31:54','2017-01-17 23:31:54','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-standard-bar-logo-trans.png',0,'attachment','image/png',0),(28,1,'2017-01-13 20:18:24','2017-01-13 20:18:24','','000043250008resized','','inherit','open','closed','','000043250008resized','','','2017-01-13 20:18:24','2017-01-13 20:18:24','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/000043250008resized.jpg',0,'attachment','image/jpeg',0),(29,1,'2017-01-13 20:18:50','2017-01-13 20:18:50','','cropped-000043250008resized.jpg','','inherit','open','closed','','cropped-000043250008resized-jpg','','','2017-01-13 20:18:50','2017-01-13 20:18:50','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-000043250008resized.jpg',0,'attachment','image/jpeg',0),(32,1,'2017-01-13 20:24:35','2017-01-13 20:24:35','','11855849_10155837807335364_8050995259848581690_n','','inherit','open','closed','','11855849_10155837807335364_8050995259848581690_n','','','2017-01-20 15:02:33','2017-01-20 15:02:33','',184,'http://stdcycle.com/company/wp-content/uploads/2017/01/11855849_10155837807335364_8050995259848581690_n.jpg',0,'attachment','image/jpeg',0),(38,1,'2017-01-13 20:31:41','2017-01-13 20:31:41','<img class=\"alignleft wp-image-515 size-large\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/12/662-1024x682.jpeg\" alt=\"\" width=\"640\" height=\"426\" />\r\n\r\nStandard Cycle Company was born from a true love of all things motorcycle.\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[gallery size=\"large\" columns=\"4\" link=\"none\" type=\"slideshow\" ids=\"365,338,55,499,500,501,502,503,505,506,507,509,510\" orderby=\"rand\"]\r\n\r\n ','About','','publish','closed','closed','','about','','','2017-12-15 15:36:46','2017-12-15 15:36:46','',0,'http://stdcycle.com/company/?page_id=38',0,'page','',0),(39,1,'2017-01-13 20:31:41','2017-01-13 20:31:41','Test','About','','inherit','closed','closed','','38-revision-v1','','','2017-01-13 20:31:41','2017-01-13 20:31:41','',38,'http://stdcycle.com/company/2017/01/13/38-revision-v1/',0,'revision','',0),(47,1,'2017-01-13 21:02:27','2017-01-13 21:02:27','','standard bar logo sticker concept','','inherit','open','closed','','standard-bar-logo-sticker-concept-2','','','2017-01-13 21:02:27','2017-01-13 21:02:27','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/standard-bar-logo-sticker-concept-1.png',0,'attachment','image/png',0),(49,1,'2017-01-13 21:03:37','2017-01-13 21:03:37','http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-cropped-standard-bar-logo-trans.png','cropped-cropped-standard-bar-logo-trans.png','','inherit','open','closed','','cropped-cropped-standard-bar-logo-trans-png','','','2017-01-17 23:21:52','2017-01-17 23:21:52','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-cropped-standard-bar-logo-trans.png',0,'attachment','image/png',0),(50,1,'2017-01-13 21:04:26','2017-01-13 21:04:26','http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-standard-bar-logo-sticker-concept.png','cropped-standard-bar-logo-sticker-concept.png','','inherit','open','closed','','cropped-standard-bar-logo-sticker-concept-png','','','2017-01-13 21:04:26','2017-01-13 21:04:26','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-standard-bar-logo-sticker-concept.png',0,'attachment','image/png',0),(51,1,'2017-01-13 21:08:51','2017-01-13 21:08:51','','2','','inherit','open','closed','','2','','','2017-01-13 21:08:51','2017-01-13 21:08:51','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/2.jpg',0,'attachment','image/jpeg',0),(54,1,'2017-01-13 21:35:32','2017-01-13 21:35:32','','cropped-cropped-000043250008resized.jpg','','inherit','open','closed','','cropped-cropped-000043250008resized-jpg','','','2017-01-13 21:35:32','2017-01-13 21:35:32','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-cropped-000043250008resized.jpg',0,'attachment','image/jpeg',0),(55,1,'2017-01-13 21:36:24','2017-01-13 21:36:24','','24','','inherit','open','closed','','24','','','2017-01-13 21:36:24','2017-01-13 21:36:24','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/24.jpg',0,'attachment','image/jpeg',0),(56,1,'2017-01-13 21:36:48','2017-01-13 21:36:48','','cropped-24.jpg','','inherit','open','closed','','cropped-24-jpg','','','2017-01-13 21:36:48','2017-01-13 21:36:48','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-24.jpg',0,'attachment','image/jpeg',0),(57,1,'2017-01-13 21:38:56','2017-01-13 21:38:56','','24crop','','inherit','open','closed','','24crop','','','2017-01-13 21:38:56','2017-01-13 21:38:56','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/24crop.jpg',0,'attachment','image/jpeg',0),(58,1,'2017-01-13 21:39:04','2017-01-13 21:39:04','','cropped-24crop.jpg','','inherit','open','closed','','cropped-24crop-jpg','','','2017-01-13 21:39:04','2017-01-13 21:39:04','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-24crop.jpg',0,'attachment','image/jpeg',0),(67,1,'2017-01-15 03:37:12','2017-01-15 03:37:12','<label> Your Name (required)\n [text* your-name] </label>\n\n<label> Your Email (required)\n [email* your-email] </label>\n\n<label> Subject\n [text your-subject] </label>\n\n<label> Your Message\n [textarea your-message] </label>\n\n[submit \"Send\"]\nStandard Cycle Company \"[your-subject]\"\n[your-name] <wordpress@stdcycle.com>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Standard Cycle Company (http://stdcycle.com/company)\nstdcycle@gmail.com\nReply-To: [your-email]\n\n0\n0\n\nStandard Cycle Company \"[your-subject]\"\nStandard Cycle Company <wordpress@stdcycle.com>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Standard Cycle Company (http://stdcycle.com/company)\n[your-email]\nReply-To: stdcycle@gmail.com\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2017-01-15 03:37:12','2017-01-15 03:37:12','',0,'http://stdcycle.com/company/?post_type=wpcf7_contact_form&p=67',0,'wpcf7_contact_form','',0),(81,1,'2017-01-17 22:10:31','2017-01-17 22:10:31','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n.copyright {display: none}\n\n#header .bottom-header {\n padding-bottom: 120px;\n padding-top: 220px;\n text-align: center;\n width: 100%;}\n\n#contact-us {\n background-color: #999;\n padding: 40px 0 50px;\n text-align: center;\n width: 100%;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n background-color: #fff;\n color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n background-color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n border: none}\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n border:none}\n\n#contact-us .section-content .contact-us-box .box-right span {\n color: #eac132;}\n\n#contact-us .section-content .contact-us-box .box-right span a {\n color: #fff;\n text-decoration: none;}\n\n\n\n#header .bottom-header span.span-dot {\n color: #eac132;\n}\n\n#static-page-content .col-sm-12 {display:none}\n#static-page-content {padding: 10px 0 40px}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-submit {\n color:#eac132}\n\n#contact-us {padding: 30px 0 15px;}\n\n#about, #static-page-content {padding:30px 0 15px}\n\n#contact-us .section-header {\n margin-bottom: 30px;}\n\n#contact-us .section-content .contact-us-social a {\n font-size: 50px;}\n.col-sm-3 {\n width: 20%;\n}\n#about .section-header {\n margin-bottom: 0px;\n}','illdy','','publish','closed','closed','','illdy','','','2017-01-19 21:13:38','2017-01-19 21:13:38','',0,'http://stdcycle.com/company/2017/01/17/illdy/',0,'custom_css','',0),(82,1,'2017-01-17 22:10:31','2017-01-17 22:10:31','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n.copyright-credit {display: none}\n\n','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-17 22:10:31','2017-01-17 22:10:31','',81,'http://stdcycle.com/company/2017/01/17/81-revision-v1/',0,'revision','',0),(84,1,'2017-01-17 22:11:01','2017-01-17 22:11:01','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n#copyright-credit {display: none}\n\n','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-17 22:11:01','2017-01-17 22:11:01','',81,'http://stdcycle.com/company/2017/01/17/81-revision-v1/',0,'revision','',0),(86,1,'2017-01-17 22:11:12','2017-01-17 22:11:12','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\ncopyright-credit {display: none}\n\n','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-17 22:11:12','2017-01-17 22:11:12','',81,'http://stdcycle.com/company/2017/01/17/81-revision-v1/',0,'revision','',0),(88,1,'2017-01-17 22:12:01','2017-01-17 22:12:01','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\ndata-customizer {display: none}\n\n','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-17 22:12:01','2017-01-17 22:12:01','',81,'http://stdcycle.com/company/2017/01/17/81-revision-v1/',0,'revision','',0),(90,1,'2017-01-17 22:12:48','2017-01-17 22:12:48','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n.copyright-credit {display: none}\n\n','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-17 22:12:48','2017-01-17 22:12:48','',81,'http://stdcycle.com/company/2017/01/17/81-revision-v1/',0,'revision','',0),(92,1,'2017-01-17 22:13:45','2017-01-17 22:13:45','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\ncopyright {display: none}\n\n','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-17 22:13:45','2017-01-17 22:13:45','',81,'http://stdcycle.com/company/2017/01/17/81-revision-v1/',0,'revision','',0),(94,1,'2017-01-17 22:14:03','2017-01-17 22:14:03','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n.copyright {display: none}\n\n','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-17 22:14:03','2017-01-17 22:14:03','',81,'http://stdcycle.com/company/2017/01/17/81-revision-v1/',0,'revision','',0),(97,1,'2017-01-17 22:40:46','2017-01-17 22:40:46','','STD1-7','','inherit','open','closed','','std1-7','','','2017-01-17 22:40:46','2017-01-17 22:40:46','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD1-7.jpg',0,'attachment','image/jpeg',0),(99,1,'2017-01-17 23:19:28','2017-01-17 23:19:28','','standard bar logo trans','','inherit','open','closed','','standard-bar-logo-trans-2','','','2017-01-17 23:19:28','2017-01-17 23:19:28','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/standard-bar-logo-trans-1.png',0,'attachment','image/png',0),(100,1,'2017-01-17 23:23:13','2017-01-17 23:23:13','http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-standard-bar-logo-trans-e1484695204945.png','cropped-standard-bar-logo-trans-e1484695204945.png','','inherit','open','closed','','cropped-standard-bar-logo-trans-e1484695204945-png','','','2017-01-17 23:23:13','2017-01-17 23:23:13','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-standard-bar-logo-trans-e1484695204945.png',0,'attachment','image/png',0),(102,1,'2017-01-17 23:25:14','2017-01-17 23:25:14','http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-standard-bar-logo-sticker-concept-e1484695461151.png','cropped-standard-bar-logo-sticker-concept-e1484695461151.png','','inherit','open','closed','','cropped-standard-bar-logo-sticker-concept-e1484695461151-png','','','2017-01-17 23:25:14','2017-01-17 23:25:14','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-standard-bar-logo-sticker-concept-e1484695461151.png',0,'attachment','image/png',0),(105,1,'2017-01-17 23:35:14','2017-01-17 23:35:14','http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-standard-bar-logo-sticker-concept-e1484696056989.png','cropped-standard-bar-logo-sticker-concept-e1484696056989.png','','inherit','open','closed','','cropped-standard-bar-logo-sticker-concept-e1484696056989-png','','','2017-01-17 23:35:14','2017-01-17 23:35:14','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-standard-bar-logo-sticker-concept-e1484696056989.png',0,'attachment','image/png',0),(108,1,'2017-01-17 23:40:41','2017-01-17 23:40:41','http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-cropped-standard-bar-logo-trans-e1484695204945.png','cropped-cropped-standard-bar-logo-trans-e1484695204945.png','','inherit','open','closed','','cropped-cropped-standard-bar-logo-trans-e1484695204945-png','','','2017-01-17 23:40:41','2017-01-17 23:40:41','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-cropped-standard-bar-logo-trans-e1484695204945.png',0,'attachment','image/png',0),(110,1,'2017-01-17 23:45:01','2017-01-17 23:45:01','','cropped-STD1-7.jpg','','inherit','open','closed','','cropped-std1-7-jpg','','','2017-01-17 23:45:01','2017-01-17 23:45:01','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-STD1-7.jpg',0,'attachment','image/jpeg',0),(111,1,'2017-01-17 23:50:11','2017-01-17 23:50:11','http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-standard-bar-logo-sticker-concept-e1484696056989-1.png','cropped-standard-bar-logo-sticker-concept-e1484696056989-1.png','','inherit','open','closed','','cropped-standard-bar-logo-sticker-concept-e1484696056989-1-png','','','2017-01-17 23:50:11','2017-01-17 23:50:11','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-standard-bar-logo-sticker-concept-e1484696056989-1.png',0,'attachment','image/png',0),(117,1,'2017-01-18 00:04:54','2017-01-18 00:04:54','http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-standard-bar-logo-sticker-concept-e1484696056989-2.png','cropped-standard-bar-logo-sticker-concept-e1484696056989-2.png','','inherit','open','closed','','cropped-standard-bar-logo-sticker-concept-e1484696056989-2-png','','','2017-01-18 00:04:54','2017-01-18 00:04:54','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-standard-bar-logo-sticker-concept-e1484696056989-2.png',0,'attachment','image/png',0),(118,1,'2017-01-18 00:07:50','2017-01-18 00:07:50','','STD1-11','','inherit','open','closed','','std1-11','','','2017-01-18 00:07:50','2017-01-18 00:07:50','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD1-11.jpg',0,'attachment','image/jpeg',0),(121,1,'2017-01-18 01:18:44','2017-01-18 01:18:44','','STD3-1','','inherit','open','closed','','std3-1','','','2017-01-18 18:37:51','2017-01-18 18:37:51','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD3-1.jpg',0,'attachment','image/jpeg',0),(125,1,'2017-01-18 02:35:42','2017-01-18 02:35:42','','STD Badge 150','','inherit','open','closed','','std-badge-150','','','2017-01-18 02:35:42','2017-01-18 02:35:42','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD-Badge-150.png',0,'attachment','image/png',0),(126,1,'2017-01-18 02:43:11','2017-01-18 02:43:11','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n.copyright {display: none}\n\n#header .bottom-header {\n padding-bottom: 120px;\n padding-top: 220px;\n text-align: center;\n width: 100%;}\n\n#contact-us {\n background-color: #999;\n padding: 40px 0 50px;\n text-align: center;\n width: 100%;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n background-color: #fff;\n color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n background-color: #fff;}','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-18 02:43:11','2017-01-18 02:43:11','',81,'http://stdcycle.com/company/2017/01/18/81-revision-v1/',0,'revision','',0),(128,1,'2017-01-18 02:47:35','2017-01-18 02:47:35','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n.copyright {display: none}\n\n#header .bottom-header {\n padding-bottom: 120px;\n padding-top: 220px;\n text-align: center;\n width: 100%;}\n\n#contact-us {\n background-color: #999;\n padding: 40px 0 50px;\n text-align: center;\n width: 100%;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n background-color: #fff;\n color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n background-color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n border: none}\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n border:none}\n\n#contact-us .section-content .contact-us-box .box-right span {\n color: #eac132;}\n\n#contact-us .section-content .contact-us-box .box-right span a {\n color: #fff;\n text-decoration: none;}\n','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-18 02:47:35','2017-01-18 02:47:35','',81,'http://stdcycle.com/company/2017/01/18/81-revision-v1/',0,'revision','',0),(131,1,'2017-01-18 03:03:44','2017-01-18 03:03:44','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n.copyright {display: none}\n\n#header .bottom-header {\n padding-bottom: 120px;\n padding-top: 220px;\n text-align: center;\n width: 100%;}\n\n#contact-us {\n background-color: #999;\n padding: 40px 0 50px;\n text-align: center;\n width: 100%;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n background-color: #fff;\n color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n background-color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n border: none}\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n border:none}\n\n#contact-us .section-content .contact-us-box .box-right span {\n color: #eac132;}\n\n#contact-us .section-content .contact-us-box .box-right span a {\n color: #fff;\n text-decoration: none;}\n\n.fa-youtube {display:none}\n.fa-pinterest {display:none}\n.fa-vimeo {display:none}\n.fa-google-plus {display:none}\n.fa-linkedin {display:none}\n.fa-twitter {display:none}','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-18 03:03:44','2017-01-18 03:03:44','',81,'http://stdcycle.com/company/2017/01/18/81-revision-v1/',0,'revision','',0),(133,1,'2017-01-18 03:04:34','2017-01-18 03:04:34','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n.copyright {display: none}\n\n#header .bottom-header {\n padding-bottom: 120px;\n padding-top: 220px;\n text-align: center;\n width: 100%;}\n\n#contact-us {\n background-color: #999;\n padding: 40px 0 50px;\n text-align: center;\n width: 100%;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n background-color: #fff;\n color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n background-color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n border: none}\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n border:none}\n\n#contact-us .section-content .contact-us-box .box-right span {\n color: #eac132;}\n\n#contact-us .section-content .contact-us-box .box-right span a {\n color: #fff;\n text-decoration: none;}\n\n.fa-youtube {display:none}\n.fa-pinterest {display:none}\n.fa-vimeo {display:none}\n.fa-google-plus {display:none}\n.fa-linkedin {display:none}\n.fa-twitter {display:none}\n\n#header .bottom-header span.span-dot {\n color: #eac132;\n}','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-18 03:04:34','2017-01-18 03:04:34','',81,'http://stdcycle.com/company/2017/01/18/81-revision-v1/',0,'revision','',0),(135,1,'2017-01-18 03:14:36','2017-01-18 03:14:36','','STD Logo','','inherit','open','closed','','std-logo','','','2017-01-18 03:15:00','2017-01-18 03:15:00','',38,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD-Logo.png',0,'attachment','image/png',0),(136,1,'2017-01-18 03:15:04','2017-01-18 03:15:04','<img src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/STD-Logo-300x240.png\" alt=\"\" width=\"300\" height=\"240\" class=\"alignnone size-medium wp-image-135\" />','About','','inherit','closed','closed','','38-revision-v1','','','2017-01-18 03:15:04','2017-01-18 03:15:04','',38,'http://stdcycle.com/company/2017/01/18/38-revision-v1/',0,'revision','',0),(137,1,'2017-01-18 03:16:39','2017-01-18 03:16:39','','STD Logo','','inherit','open','closed','','std-logo-2','','','2017-01-18 03:16:39','2017-01-18 03:16:39','',38,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD-Logo-1.png',0,'attachment','image/png',0),(138,1,'2017-12-15 15:01:41','2017-12-15 15:01:41','<img class=\"alignleft wp-image-515 size-medium\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/12/662-300x200.jpeg\" alt=\"\" width=\"300\" height=\"200\" />\n\nStandard Cycle Company was born from a true love of all things motorcycle.\n\n \n\n \n\n \n\n \n\n \n\n \n\n[gallery size=\"large\" columns=\"4\" link=\"none\" type=\"slideshow\" ids=\"365,338,55,499,500,501,502,503,505,506,507,509,510\" orderby=\"rand\"]\n\n ','About','','inherit','closed','closed','','38-autosave-v1','','','2017-12-15 15:01:41','2017-12-15 15:01:41','',38,'http://stdcycle.com/company/2017/01/18/38-autosave-v1/',0,'revision','',0),(140,1,'2017-01-18 03:17:15','2017-01-18 03:17:15','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n.copyright {display: none}\n\n#header .bottom-header {\n padding-bottom: 120px;\n padding-top: 220px;\n text-align: center;\n width: 100%;}\n\n#contact-us {\n background-color: #999;\n padding: 40px 0 50px;\n text-align: center;\n width: 100%;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n background-color: #fff;\n color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n background-color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n border: none}\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n border:none}\n\n#contact-us .section-content .contact-us-box .box-right span {\n color: #eac132;}\n\n#contact-us .section-content .contact-us-box .box-right span a {\n color: #fff;\n text-decoration: none;}\n\n.fa-youtube {display:none}\n.fa-pinterest {display:none}\n.fa-vimeo {display:none}\n.fa-google-plus {display:none}\n.fa-linkedin {display:none}\n.fa-twitter {display:none}\n\n#header .bottom-header span.span-dot {\n color: #eac132;\n}\n\n.section-header {display:none}','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-18 03:17:15','2017-01-18 03:17:15','',81,'http://stdcycle.com/company/2017/01/18/81-revision-v1/',0,'revision','',0),(141,1,'2017-01-18 03:17:20','2017-01-18 03:17:20','','About','','inherit','closed','closed','','38-revision-v1','','','2017-01-18 03:17:20','2017-01-18 03:17:20','',38,'http://stdcycle.com/company/2017/01/18/38-revision-v1/',0,'revision','',0),(143,1,'2017-01-18 03:18:33','2017-01-18 03:18:33','<img src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/STD-Logo-1-300x240.png\" alt=\"\" width=\"300\" height=\"240\" class=\"alignnone size-medium wp-image-137\" />','About','','inherit','closed','closed','','38-revision-v1','','','2017-01-18 03:18:33','2017-01-18 03:18:33','',38,'http://stdcycle.com/company/2017/01/18/38-revision-v1/',0,'revision','',0),(144,1,'2017-01-18 03:18:44','2017-01-18 03:18:44','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n.copyright {display: none}\n\n#header .bottom-header {\n padding-bottom: 120px;\n padding-top: 220px;\n text-align: center;\n width: 100%;}\n\n#contact-us {\n background-color: #999;\n padding: 40px 0 50px;\n text-align: center;\n width: 100%;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n background-color: #fff;\n color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n background-color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n border: none}\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n border:none}\n\n#contact-us .section-content .contact-us-box .box-right span {\n color: #eac132;}\n\n#contact-us .section-content .contact-us-box .box-right span a {\n color: #fff;\n text-decoration: none;}\n\n.fa-youtube {display:none}\n.fa-pinterest {display:none}\n.fa-vimeo {display:none}\n.fa-google-plus {display:none}\n.fa-linkedin {display:none}\n.fa-twitter {display:none}\n\n#header .bottom-header span.span-dot {\n color: #eac132;\n}\n\n{display:none}','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-18 03:18:44','2017-01-18 03:18:44','',81,'http://stdcycle.com/company/2017/01/18/81-revision-v1/',0,'revision','',0),(146,1,'2017-01-18 03:22:08','2017-01-18 03:22:08','','About','','inherit','closed','closed','','38-revision-v1','','','2017-01-18 03:22:08','2017-01-18 03:22:08','',38,'http://stdcycle.com/company/2017/01/18/38-revision-v1/',0,'revision','',0),(147,1,'2017-01-18 03:28:23','2017-01-18 03:28:23','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n.copyright {display: none}\n\n#header .bottom-header {\n padding-bottom: 120px;\n padding-top: 220px;\n text-align: center;\n width: 100%;}\n\n#contact-us {\n background-color: #999;\n padding: 40px 0 50px;\n text-align: center;\n width: 100%;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n background-color: #fff;\n color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n background-color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n border: none}\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n border:none}\n\n#contact-us .section-content .contact-us-box .box-right span {\n color: #eac132;}\n\n#contact-us .section-content .contact-us-box .box-right span a {\n color: #fff;\n text-decoration: none;}\n\n.fa-youtube {display:none}\n.fa-pinterest {display:none}\n.fa-vimeo {display:none}\n.fa-google-plus {display:none}\n.fa-linkedin {display:none}\n.fa-twitter {display:none}\n\n#header .bottom-header span.span-dot {\n color: #eac132;\n}\n\n#static-page-content .col-sm-12 {display:none}\n#static-page-content {padding: 10px 0 40px}','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-18 03:28:23','2017-01-18 03:28:23','',81,'http://stdcycle.com/company/2017/01/18/81-revision-v1/',0,'revision','',0),(150,1,'2017-01-18 15:21:58','2017-01-18 15:21:58','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n.copyright {display: none}\n\n#header .bottom-header {\n padding-bottom: 120px;\n padding-top: 220px;\n text-align: center;\n width: 100%;}\n\n#contact-us {\n background-color: #999;\n padding: 40px 0 50px;\n text-align: center;\n width: 100%;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n background-color: #fff;\n color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n background-color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n border: none}\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n border:none}\n\n#contact-us .section-content .contact-us-box .box-right span {\n color: #eac132;}\n\n#contact-us .section-content .contact-us-box .box-right span a {\n color: #fff;\n text-decoration: none;}\n\n.fa-youtube {display:none}\n.fa-pinterest {display:none}\n.fa-vimeo {display:none}\n.fa-google-plus {display:none}\n.fa-linkedin {display:none}\n.fa-twitter {display:none}\n\n#header .bottom-header span.span-dot {\n color: #eac132;\n}\n\n#static-page-content .col-sm-12 {display:none}\n#static-page-content {padding: 10px 0 40px}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-submit {\n color:#eac132}','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-18 15:21:58','2017-01-18 15:21:58','',81,'http://stdcycle.com/company/2017/01/18/81-revision-v1/',0,'revision','',0),(156,1,'2017-01-18 15:27:19','2017-01-18 15:27:19','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n.copyright {display: none}\n\n#header .bottom-header {\n padding-bottom: 120px;\n padding-top: 220px;\n text-align: center;\n width: 100%;}\n\n#contact-us {\n background-color: #999;\n padding: 40px 0 50px;\n text-align: center;\n width: 100%;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n background-color: #fff;\n color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n background-color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n border: none}\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n border:none}\n\n#contact-us .section-content .contact-us-box .box-right span {\n color: #eac132;}\n\n#contact-us .section-content .contact-us-box .box-right span a {\n color: #fff;\n text-decoration: none;}\n\n\n\n#header .bottom-header span.span-dot {\n color: #eac132;\n}\n\n#static-page-content .col-sm-12 {display:none}\n#static-page-content {padding: 10px 0 40px}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-submit {\n color:#eac132}','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-18 15:27:19','2017-01-18 15:27:19','',81,'http://stdcycle.com/company/2017/01/18/81-revision-v1/',0,'revision','',0),(158,1,'2017-01-18 15:32:14','2017-01-18 15:32:14','','STD Badge_150','','inherit','open','closed','','std-badge_150','','','2017-01-18 15:32:14','2017-01-18 15:32:14','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD-Badge_150.png',0,'attachment','image/png',0),(168,1,'2017-01-18 16:05:15','2017-01-18 16:05:15','','WrenchPiston','','inherit','open','closed','','wrenchpiston','','','2017-01-18 16:05:15','2017-01-18 16:05:15','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/WrenchPiston.png',0,'attachment','image/png',0),(169,1,'2017-01-18 16:10:26','2017-01-18 16:10:26','','Services','','publish','closed','closed','','services','','','2017-01-19 17:00:39','2017-01-19 17:00:39','',0,'http://stdcycle.com/company/?page_id=169',0,'page','',0),(170,1,'2017-01-18 16:10:26','2017-01-18 16:10:26','','Services','','inherit','closed','closed','','169-revision-v1','','','2017-01-18 16:10:26','2017-01-18 16:10:26','',169,'http://stdcycle.com/company/2017/01/18/169-revision-v1/',0,'revision','',0),(176,1,'2017-01-18 16:39:31','2017-01-18 16:39:31','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n.copyright {display: none}\n\n#header .bottom-header {\n padding-bottom: 120px;\n padding-top: 220px;\n text-align: center;\n width: 100%;}\n\n#contact-us {\n background-color: #999;\n padding: 40px 0 50px;\n text-align: center;\n width: 100%;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n background-color: #fff;\n color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n background-color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n border: none}\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n border:none}\n\n#contact-us .section-content .contact-us-box .box-right span {\n color: #eac132;}\n\n#contact-us .section-content .contact-us-box .box-right span a {\n color: #fff;\n text-decoration: none;}\n\n\n\n#header .bottom-header span.span-dot {\n color: #eac132;\n}\n\n#static-page-content .col-sm-12 {display:none}\n#static-page-content {padding: 10px 0 40px}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-submit {\n color:#eac132}\n\n#services {\n background-attachment: fixed;\n background-image: url(\"http://stdcycle.com/company/wp-content/uploads/2017/01/STD3-1.jpg\");\n padding: 65px 0 75px;\n text-align: center;\n width: 100%;\n}','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-18 16:39:31','2017-01-18 16:39:31','',81,'http://stdcycle.com/company/2017/01/18/81-revision-v1/',0,'revision','',0),(178,1,'2017-01-18 16:47:44','2017-01-18 16:47:44','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n.copyright {display: none}\n\n#header .bottom-header {\n padding-bottom: 120px;\n padding-top: 220px;\n text-align: center;\n width: 100%;}\n\n#contact-us {\n background-color: #999;\n padding: 40px 0 50px;\n text-align: center;\n width: 100%;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n background-color: #fff;\n color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n background-color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n border: none}\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n border:none}\n\n#contact-us .section-content .contact-us-box .box-right span {\n color: #eac132;}\n\n#contact-us .section-content .contact-us-box .box-right span a {\n color: #fff;\n text-decoration: none;}\n\n\n\n#header .bottom-header span.span-dot {\n color: #eac132;\n}\n\n#static-page-content .col-sm-12 {display:none}\n#static-page-content {padding: 10px 0 40px}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-submit {\n color:#eac132}\n\n','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-18 16:47:44','2017-01-18 16:47:44','',81,'http://stdcycle.com/company/2017/01/18/81-revision-v1/',0,'revision','',0),(180,1,'2017-01-18 17:50:28','2017-01-18 17:50:28','<img class=\"alignleft size-medium wp-image-275\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/dyno-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\nStandard Cycle Company has over 15 years tuning experience utilizing chassis dynamometers and various on-board data acquisition systems, along with real world racing experience in many different racing disciplines. We have completed and keep up to date with Dynojet tuning and S&S Cycle VFi stand-alone ecu certifications.\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">We offer dyno tuning for all two-wheeled vehicles on our Dynoware RT powered Dynojet 250i eddy current and load controlled dynamometer in our custom designed climate controlled and sound attenuating dyno cell. </span><span class=\"text_exposed_show\">Utilizing Dynojet\'s latest Dynoware RT package</span> we can ensure the most accurate data collection. Combined with our knowledge and experience we guarantee the best possible tune for your street, track or dirt bike</p>\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">Our enclosed dyno cell has been engineered to ensure the cleanest ambient air possible by utilizing a sophisticated whole cell exhaust extraction system with a filtered fresh air inlet. Controlling the air inside the cell provides a sterile environment free from exhaust fumes and heat, which typically accumulates while tuning. The resulting errors in data collection make an accurate tune with peak performance in the real world difficult, if not impossible.</span></p>\r\nStandard Cycle has had the honor of being trusted tuners for multiple race winning motocross, road course, drag and national LSR record holding motorcycles.\r\n<p style=\"text-align: center;\"><strong>We offer</strong></p>\r\n\r\n<ul>\r\n <li style=\"text-align: left;\">Carburetor tuning including, Linkert, Amal, Mikuni, Keihin, Lectron, S&S among others</li>\r\n <li style=\"text-align: left;\">Dynojet Power Commander and ignition module tuning</li>\r\n <li style=\"text-align: left;\">Dynojet Power Vision and Power Vision CX ecu flash tuning for Harley and Victory/Indian applications</li>\r\n <li style=\"text-align: left;\">Bazzaz product tuning</li>\r\n <li style=\"text-align: left;\">S&S VFi stand-alone ECU tuning</li>\r\n <li style=\"text-align: left;\">Various stand-alone ignition products</li>\r\n <li style=\"text-align: left;\">Factory ECU tuning for select Suzuki and Triumph models with more applications becoming available in the future</li>\r\n <li>Wet and dry nitrous tuning</li>\r\n <li style=\"text-align: left;\">Progressive nitrous and turbo boost controller tuning</li>\r\n <li style=\"text-align: left;\">Microtech secondary fueling system tuning for boosted applications</li>\r\n</ul>\r\n[embed]https://youtu.be/G1O9cnGp8L8[/embed]\r\n\r\n \r\n\r\n[gallery size=\"large\" link=\"file\" ids=\"379,411,378,412,381,382,401,402,380,397,392,377,375,390,374,370,373,340,341,337,403,321,320,409,400,395,393\"]','Dyno Tuning','','publish','closed','closed','','dyno-tuning','','','2017-12-14 19:54:52','2017-12-14 19:54:52','',169,'http://stdcycle.com/company/?page_id=180',0,'page','',0),(181,1,'2017-01-18 17:50:28','2017-01-18 17:50:28','','Dyno Tuning','','inherit','closed','closed','','180-revision-v1','','','2017-01-18 17:50:28','2017-01-18 17:50:28','',180,'http://stdcycle.com/company/2017/01/18/180-revision-v1/',0,'revision','',0),(182,1,'2017-01-18 17:51:18','2017-01-18 17:51:18','Commodo habemus detraxit ea vix, nam novum legimus persequeris ad. Consul persius sea ea. Ius dicta patrioque abhorreant ea, vis sonet epicurei theophrastus ut. Et pro vocent perfecto concludaturque, no vix elitr integre intellegebat.\r\n\r\n<img class=\"alignleft size-full wp-image-225\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/DSC_7236.jpg\" alt=\"\" width=\"4928\" height=\"3264\" />\r\n\r\nHas in modus minim saepe. Assum cetero est ne, ad pri primis bonorum, pri no ubique prodesset. Dolor atomorum ne mea. Ne altera primis pro. Ei mentitum necessitatibus vel, at ferri facilisi eam, minim audiam eos no. Ea omnis prima latine pri.\r\n\r\n<img class=\"alignleft size-medium wp-image-230\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/13934718_10157168508435364_6802984478891619192_n-165x300.jpg\" alt=\"\" width=\"165\" height=\"300\" />\r\n\r\nHas te lorem vituperata, nec audiam placerat senserit in. Id per diam scriptorem reprehendunt, errem alterum inciderint duo ad, rebum dicat accusam sit an. Usu ne omnis timeam, regione debitis civibus ius ad. Ad modus accumsan appellantur ius, affert eruditi vix et. Eos ex cetero dignissim, id integre cotidieque ullamcorper eos.','Race Prep','','publish','closed','closed','','race-prep','','','2017-01-20 15:01:18','2017-01-20 15:01:18','',169,'http://stdcycle.com/company/?page_id=182',0,'page','',0),(183,1,'2017-01-18 17:51:18','2017-01-18 17:51:18','','Race Prep','','inherit','closed','closed','','182-revision-v1','','','2017-01-18 17:51:18','2017-01-18 17:51:18','',182,'http://stdcycle.com/company/2017/01/18/182-revision-v1/',0,'revision','',0),(184,1,'2017-01-18 17:53:34','2017-01-18 17:53:34','<span class=\"text_exposed_show\">Standard Cycle Co stocks all of your daily motorcycling needs here in our clean, bright and inviting showroom. Oils from companies such as Belray, Maxima, Motorex, NGK spark plugs, battery chargers and maintainers, Yuasa batteries, K&N and Hiflo oil filters, Liquid Performance fuel additives, inner tubes and tires, coolants, brake pads can all be found in stock for most popular motorcycles and ATVs.\r\n</span>\r\n\r\nIn addition to our stocked inventory we also special order some of the best replacement parts, accessories and riding gear from all over the globe. With 20 years experience repairing, modifying, racing, and outfitting motorcycles and ATV\'s, Standard Cycle can assist you in finding the perfect items for your safety, parts to maintain and repair your own motorcycle and the perfect accessories to help build your dream vehicle.\r\n\r\nStandard Cycle stands behind all of the products we sell and can assist you before and after the sale with advice and technical support. The specialized knowledge we have acquired from personally using, installing and supporting the products we sell is one of the biggest benefits of buying from an experienced brick and mortar motorcycle shop.\r\n\r\n[gallery link=\"none\" columns=\"9\" size=\"medium\" ids=\"484,483,482,481,480,479,478,477,476,467,468,469,470,471,472,473,474,475,466,465,464,463,462,461,460,459,458,449,450,451,452,453,454,455,456,457,448,447,446,445,444,443,442,441,440,439,438,437,436\" orderby=\"rand\"]\r\n\r\n[gallery size=\"medium\" link=\"file\" ids=\"28,426,118,358,245,425\"]','Retail','','publish','closed','closed','','retail','','','2017-12-14 19:20:28','2017-12-14 19:20:28','',169,'http://stdcycle.com/company/?page_id=184',0,'page','',0),(185,1,'2017-01-18 17:53:34','2017-01-18 17:53:34','','Retail','','inherit','closed','closed','','184-revision-v1','','','2017-01-18 17:53:34','2017-01-18 17:53:34','',184,'http://stdcycle.com/company/2017/01/18/184-revision-v1/',0,'revision','',0),(186,1,'2017-01-18 17:54:28','2017-01-18 17:54:28','','Specialty Work','','publish','closed','closed','','specialty','','','2017-01-18 22:21:42','2017-01-18 22:21:42','',169,'http://stdcycle.com/company/?page_id=186',0,'page','',0),(187,1,'2017-01-18 17:54:28','2017-01-18 17:54:28','','Specialty Work','','inherit','closed','closed','','186-revision-v1','','','2017-01-18 17:54:28','2017-01-18 17:54:28','',186,'http://stdcycle.com/company/2017/01/18/186-revision-v1/',0,'revision','',0),(188,1,'2017-01-18 17:55:31','2017-01-18 17:55:31','','Fabrication','','publish','closed','closed','','fabrication','','','2017-01-19 15:55:38','2017-01-19 15:55:38','',169,'http://stdcycle.com/company/?page_id=188',0,'page','',0),(189,1,'2017-01-18 17:55:31','2017-01-18 17:55:31','','Fabrication','','inherit','closed','closed','','188-revision-v1','','','2017-01-18 17:55:31','2017-01-18 17:55:31','',188,'http://stdcycle.com/company/2017/01/18/188-revision-v1/',0,'revision','',0),(190,1,'2017-01-18 18:15:41','2017-01-18 18:15:41',' ','','','publish','closed','closed','','190','','','2017-12-14 17:06:41','2017-12-14 17:06:41','',0,'http://stdcycle.com/company/?p=190',4,'nav_menu_item','',0),(191,1,'2017-01-18 18:15:41','2017-01-18 18:15:41',' ','','','publish','closed','closed','','191','','','2017-12-14 17:06:41','2017-12-14 17:06:41','',169,'http://stdcycle.com/company/?p=191',8,'nav_menu_item','',0),(192,1,'2017-01-18 18:15:41','2017-01-18 18:15:41',' ','','','publish','closed','closed','','192','','','2017-12-14 17:06:41','2017-12-14 17:06:41','',169,'http://stdcycle.com/company/?p=192',6,'nav_menu_item','',0),(193,1,'2017-01-18 18:15:41','2017-01-18 18:15:41',' ','','','publish','closed','closed','','193','','','2017-12-14 17:06:41','2017-12-14 17:06:41','',169,'http://stdcycle.com/company/?p=193',3,'nav_menu_item','',0),(194,1,'2017-01-18 18:15:41','2017-01-18 18:15:41',' ','','','publish','closed','closed','','194','','','2017-12-14 17:06:41','2017-12-14 17:06:41','',169,'http://stdcycle.com/company/?p=194',7,'nav_menu_item','',0),(195,1,'2017-01-18 18:15:41','2017-01-18 18:15:41',' ','','','publish','closed','closed','','195','','','2017-12-14 17:06:41','2017-12-14 17:06:41','',169,'http://stdcycle.com/company/?p=195',9,'nav_menu_item','',0),(198,1,'2017-01-18 20:45:43','2017-01-18 20:45:43','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n.copyright {display: none}\n\n#header .bottom-header {\n padding-bottom: 120px;\n padding-top: 220px;\n text-align: center;\n width: 100%;}\n\n#contact-us {\n background-color: #999;\n padding: 40px 0 50px;\n text-align: center;\n width: 100%;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n background-color: #fff;\n color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n background-color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n border: none}\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n border:none}\n\n#contact-us .section-content .contact-us-box .box-right span {\n color: #eac132;}\n\n#contact-us .section-content .contact-us-box .box-right span a {\n color: #fff;\n text-decoration: none;}\n\n\n\n#header .bottom-header span.span-dot {\n color: #eac132;\n}\n\n#static-page-content .col-sm-12 {display:none}\n#static-page-content {padding: 10px 0 40px}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-submit {\n color:#eac132}\n\n#contact-us {padding: 30px 0 15px;}','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-18 20:45:43','2017-01-18 20:45:43','',81,'http://stdcycle.com/company/2017/01/18/81-revision-v1/',0,'revision','',0),(200,1,'2017-01-18 20:46:49','2017-01-18 20:46:49','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n.copyright {display: none}\n\n#header .bottom-header {\n padding-bottom: 120px;\n padding-top: 220px;\n text-align: center;\n width: 100%;}\n\n#contact-us {\n background-color: #999;\n padding: 40px 0 50px;\n text-align: center;\n width: 100%;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n background-color: #fff;\n color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n background-color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n border: none}\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n border:none}\n\n#contact-us .section-content .contact-us-box .box-right span {\n color: #eac132;}\n\n#contact-us .section-content .contact-us-box .box-right span a {\n color: #fff;\n text-decoration: none;}\n\n\n\n#header .bottom-header span.span-dot {\n color: #eac132;\n}\n\n#static-page-content .col-sm-12 {display:none}\n#static-page-content {padding: 10px 0 40px}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-submit {\n color:#eac132}\n\n#contact-us {padding: 30px 0 15px;}\n\n#about, #static-page-content {padding:30px 0 15px}','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-18 20:46:49','2017-01-18 20:46:49','',81,'http://stdcycle.com/company/2017/01/18/81-revision-v1/',0,'revision','',0),(202,1,'2017-01-18 21:20:59','2017-01-18 21:20:59','','Pan Head','','inherit','open','closed','','000043250006','','','2017-01-18 21:21:19','2017-01-18 21:21:19','',186,'http://stdcycle.com/company/wp-content/uploads/2017/01/000043250006.jpg',0,'attachment','image/jpeg',0),(204,1,'2017-01-18 21:50:13','2017-01-18 21:50:13','','STD2-4','','inherit','open','closed','','std2-4','','','2017-01-18 21:50:13','2017-01-18 21:50:13','',188,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD2-4.jpg',0,'attachment','image/jpeg',0),(206,1,'2017-01-18 21:57:52','2017-01-18 21:57:52','','STD Badge_150','','inherit','open','closed','','std-badge_150-2','','','2017-01-18 21:57:52','2017-01-18 21:57:52','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD-Badge_150-1.png',0,'attachment','image/png',0),(209,1,'2017-01-18 21:58:09','2017-01-18 21:58:09','http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-STD-Badge_150-1.png','cropped-STD-Badge_150-1.png','','inherit','open','closed','','cropped-std-badge_150-1-png','','','2017-01-18 21:58:09','2017-01-18 21:58:09','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-STD-Badge_150-1.png',0,'attachment','image/png',0),(213,1,'2017-01-18 22:01:58','2017-01-18 22:01:58','','000043280033resize','','inherit','open','closed','','000043280033resize','','','2017-01-18 22:01:58','2017-01-18 22:01:58','',182,'http://stdcycle.com/company/wp-content/uploads/2017/01/000043280033resize.jpg',0,'attachment','image/jpeg',0),(215,1,'2017-01-18 22:03:22','2017-01-18 22:03:22','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n.copyright {display: none}\n\n#header .bottom-header {\n padding-bottom: 120px;\n padding-top: 220px;\n text-align: center;\n width: 100%;}\n\n#contact-us {\n background-color: #999;\n padding: 40px 0 50px;\n text-align: center;\n width: 100%;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n background-color: #fff;\n color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n background-color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n border: none}\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n border:none}\n\n#contact-us .section-content .contact-us-box .box-right span {\n color: #eac132;}\n\n#contact-us .section-content .contact-us-box .box-right span a {\n color: #fff;\n text-decoration: none;}\n\n\n\n#header .bottom-header span.span-dot {\n color: #eac132;\n}\n\n#static-page-content .col-sm-12 {display:none}\n#static-page-content {padding: 10px 0 40px}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-submit {\n color:#eac132}\n\n#contact-us {padding: 30px 0 15px;}\n\n#about, #static-page-content {padding:30px 0 15px}\n\n#contact-us .section-header {\n margin-bottom: 30px;}','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-18 22:03:22','2017-01-18 22:03:22','',81,'http://stdcycle.com/company/2017/01/18/81-revision-v1/',0,'revision','',0),(218,1,'2017-01-18 22:06:44','2017-01-18 22:06:44','','000047700005resize','','inherit','open','closed','','000047700005resize-2','','','2017-01-18 22:06:44','2017-01-18 22:06:44','',182,'http://stdcycle.com/company/wp-content/uploads/2017/01/000047700005resize-1.jpg',0,'attachment','image/jpeg',0),(221,1,'2017-01-18 22:20:35','2017-01-18 22:20:35','','12509261_942922315786706_8753407099223270164_n','','inherit','open','closed','','12509261_942922315786706_8753407099223270164_n','','','2017-01-19 21:02:12','2017-01-19 21:02:12','',38,'http://stdcycle.com/company/wp-content/uploads/2017/01/12509261_942922315786706_8753407099223270164_n.jpg',0,'attachment','image/jpeg',0),(222,1,'2017-01-18 22:20:43','2017-01-18 22:20:43','','12642622_953524241393180_4576894479941900654_n','','inherit','open','closed','','12642622_953524241393180_4576894479941900654_n','','','2017-01-18 22:20:43','2017-01-18 22:20:43','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/12642622_953524241393180_4576894479941900654_n.jpg',0,'attachment','image/jpeg',0),(223,1,'2017-01-18 22:20:47','2017-01-18 22:20:47','','13726568_10157088612265364_1460368688158996860_n','','inherit','open','closed','','13726568_10157088612265364_1460368688158996860_n','','','2017-01-18 22:20:47','2017-01-18 22:20:47','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/13726568_10157088612265364_1460368688158996860_n.jpg',0,'attachment','image/jpeg',0),(224,1,'2017-01-18 22:20:51','2017-01-18 22:20:51','','STD2-3','','inherit','open','closed','','std2-3','','','2017-01-18 22:20:51','2017-01-18 22:20:51','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD2-3.jpg',0,'attachment','image/jpeg',0),(225,1,'2017-01-18 22:21:01','2017-01-18 22:21:01','','DSC_7236','','inherit','open','closed','','dsc_7236','','','2017-01-20 14:54:52','2017-01-20 14:54:52','',182,'http://stdcycle.com/company/wp-content/uploads/2017/01/DSC_7236.jpg',0,'attachment','image/jpeg',0),(226,1,'2017-01-18 22:21:16','2017-01-18 22:21:16','','STD2-4','','inherit','open','closed','','std2-4-2','','','2017-01-18 22:21:16','2017-01-18 22:21:16','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD2-4-1.jpg',0,'attachment','image/jpeg',0),(227,1,'2017-01-18 22:21:28','2017-01-18 22:21:28','','STD4-2','','inherit','open','closed','','std4-2','','','2017-01-18 22:21:28','2017-01-18 22:21:28','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD4-2.jpg',0,'attachment','image/jpeg',0),(228,1,'2017-01-18 22:21:36','2017-01-18 22:21:36','','STD2-11','','inherit','open','closed','','std2-11','','','2017-01-18 22:21:36','2017-01-18 22:21:36','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD2-11.jpg',0,'attachment','image/jpeg',0),(229,1,'2017-01-18 22:21:42','2017-01-18 22:21:42','','STD2-8','','inherit','open','closed','','std2-8','','','2017-01-18 22:21:42','2017-01-18 22:21:42','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD2-8.jpg',0,'attachment','image/jpeg',0),(230,1,'2017-01-18 22:21:47','2017-01-18 22:21:47','','13934718_10157168508435364_6802984478891619192_n','','inherit','open','closed','','13934718_10157168508435364_6802984478891619192_n','','','2017-01-20 15:00:03','2017-01-20 15:00:03','',182,'http://stdcycle.com/company/wp-content/uploads/2017/01/13934718_10157168508435364_6802984478891619192_n.jpg',0,'attachment','image/jpeg',0),(232,1,'2017-01-18 22:31:38','2017-01-18 22:31:38','','STD_Flats-17','','inherit','open','closed','','std_flats-17','','','2017-01-18 22:31:38','2017-01-18 22:31:38','',180,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD_Flats-17.jpg',0,'attachment','image/jpeg',0),(235,1,'2017-01-19 01:40:19','2017-01-19 01:40:19','','Our Story','','publish','closed','closed','','235','','','2017-12-14 17:06:41','2017-12-14 17:06:41','',0,'http://stdcycle.com/company/?p=235',2,'nav_menu_item','',0),(236,1,'2017-01-19 01:42:22','2017-01-19 01:42:22','','Contact','','publish','closed','closed','','contact','','','2017-01-19 01:42:22','2017-01-19 01:42:22','',0,'http://stdcycle.com/company/?page_id=236',0,'page','',0),(237,1,'2017-01-19 01:42:22','2017-01-19 01:42:22','','Contact','','inherit','closed','closed','','236-revision-v1','','','2017-01-19 01:42:22','2017-01-19 01:42:22','',236,'http://stdcycle.com/company/2017/01/19/236-revision-v1/',0,'revision','',0),(238,1,'2017-01-19 15:00:27','2017-01-19 15:00:27','','STD_Flats-17','','inherit','open','closed','','std_flats-17-2','','','2017-01-19 15:00:27','2017-01-19 15:00:27','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD_Flats-17-1.jpg',0,'attachment','image/jpeg',0),(239,1,'2017-01-19 15:00:34','2017-01-19 15:00:34','','STD2-3','','inherit','open','closed','','std2-3-2','','','2017-01-19 15:00:34','2017-01-19 15:00:34','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD2-3-1.jpg',0,'attachment','image/jpeg',0),(240,1,'2017-01-19 15:00:44','2017-01-19 15:00:44','','STD2-4','','inherit','open','closed','','std2-4-3','','','2017-01-19 15:00:44','2017-01-19 15:00:44','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD2-4-2.jpg',0,'attachment','image/jpeg',0),(241,1,'2017-01-19 15:47:58','2017-01-19 15:47:58','','STD Seal','','inherit','open','closed','','std-seal','','','2017-01-19 15:50:11','2017-01-19 15:50:11','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD-Seal.png',0,'attachment','image/png',0),(242,1,'2017-01-19 15:48:35','2017-01-19 15:48:35','http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-STD-Seal.png','cropped-STD-Seal.png','','inherit','open','closed','','cropped-std-seal-png','','','2017-01-19 15:48:35','2017-01-19 15:48:35','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-STD-Seal.png',0,'attachment','image/png',0),(244,1,'2017-01-19 15:53:44','2017-01-19 15:53:44','','STD1-11','','inherit','open','closed','','std1-11-2','','','2017-01-19 15:53:44','2017-01-19 15:53:44','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD1-11-1.jpg',0,'attachment','image/jpeg',0),(245,1,'2017-01-19 15:53:50','2017-01-19 15:53:50','','STD1-7','','inherit','open','closed','','std1-7-2','','','2017-01-19 15:53:50','2017-01-19 15:53:50','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD1-7-1.jpg',0,'attachment','image/jpeg',0),(247,1,'2017-01-19 16:04:34','2017-01-19 16:04:34','','standard bar yellow','','inherit','open','closed','','standard-bar-yellow','','','2017-01-19 16:04:34','2017-01-19 16:04:34','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/standard-bar-yellow.png',0,'attachment','image/png',0),(249,1,'2017-01-19 16:06:02','2017-01-19 16:06:02','http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-standard-bar-yellow-e1484841898199.png','cropped-standard-bar-yellow-e1484841898199.png','','inherit','open','closed','','cropped-standard-bar-yellow-e1484841898199-png','','','2017-01-19 16:06:02','2017-01-19 16:06:02','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/cropped-standard-bar-yellow-e1484841898199.png',0,'attachment','image/png',0),(255,1,'2017-01-19 16:24:22','2017-01-19 16:24:22','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n.copyright {display: none}\n\n#header .bottom-header {\n padding-bottom: 120px;\n padding-top: 220px;\n text-align: center;\n width: 100%;}\n\n#contact-us {\n background-color: #999;\n padding: 40px 0 50px;\n text-align: center;\n width: 100%;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n background-color: #fff;\n color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n background-color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n border: none}\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n border:none}\n\n#contact-us .section-content .contact-us-box .box-right span {\n color: #eac132;}\n\n#contact-us .section-content .contact-us-box .box-right span a {\n color: #fff;\n text-decoration: none;}\n\n\n\n#header .bottom-header span.span-dot {\n color: #eac132;\n}\n\n#static-page-content .col-sm-12 {display:none}\n#static-page-content {padding: 10px 0 40px}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-submit {\n color:#eac132}\n\n#contact-us {padding: 30px 0 15px;}\n\n#about, #static-page-content {padding:30px 0 15px}\n\n#contact-us .section-header {\n margin-bottom: 30px;}\n\n.col-sm-10 {\n width: 59.333%;}\n\n.col-sm-2 {\n width: 40.667%;\n}\n.col-sm-10 img{\n width: 300px;}','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-19 16:24:22','2017-01-19 16:24:22','',81,'http://stdcycle.com/company/2017/01/19/81-revision-v1/',0,'revision','',0),(259,1,'2017-01-19 16:29:28','2017-01-19 16:29:28','','standard bar yellow2','','inherit','open','closed','','standard-bar-yellow2','','','2017-01-19 16:29:28','2017-01-19 16:29:28','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/standard-bar-yellow2.png',0,'attachment','image/png',0),(261,1,'2017-01-19 16:30:39','2017-01-19 16:30:39','','Home','','publish','closed','closed','','home','','','2017-01-19 16:30:39','2017-01-19 16:30:39','',0,'http://stdcycle.com/company/?page_id=261',0,'page','',0),(262,1,'2017-01-19 16:30:39','2017-01-19 16:30:39','','Home','','inherit','closed','closed','','261-revision-v1','','','2017-01-19 16:30:39','2017-01-19 16:30:39','',261,'http://stdcycle.com/company/2017/01/19/261-revision-v1/',0,'revision','',0),(263,1,'2017-01-19 16:38:01','2017-01-19 16:38:01',' ','','','publish','closed','closed','','263','','','2017-12-14 17:06:41','2017-12-14 17:06:41','',0,'http://stdcycle.com/company/?p=263',1,'nav_menu_item','',0),(266,1,'2017-01-19 16:35:07','2017-01-19 16:35:07','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n.copyright {display: none}\n\n#header .bottom-header {\n padding-bottom: 120px;\n padding-top: 220px;\n text-align: center;\n width: 100%;}\n\n#contact-us {\n background-color: #999;\n padding: 40px 0 50px;\n text-align: center;\n width: 100%;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n background-color: #fff;\n color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n background-color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n border: none}\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n border:none}\n\n#contact-us .section-content .contact-us-box .box-right span {\n color: #eac132;}\n\n#contact-us .section-content .contact-us-box .box-right span a {\n color: #fff;\n text-decoration: none;}\n\n\n\n#header .bottom-header span.span-dot {\n color: #eac132;\n}\n\n#static-page-content .col-sm-12 {display:none}\n#static-page-content {padding: 10px 0 40px}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-submit {\n color:#eac132}\n\n#contact-us {padding: 30px 0 15px;}\n\n#about, #static-page-content {padding:30px 0 15px}\n\n#contact-us .section-header {\n margin-bottom: 30px;}\n\n','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-19 16:35:07','2017-01-19 16:35:07','',81,'http://stdcycle.com/company/2017/01/19/81-revision-v1/',0,'revision','',0),(268,1,'2017-01-19 16:52:30','2017-01-19 16:52:30','','Contact','','publish','closed','closed','','contact','','','2017-12-14 17:06:41','2017-12-14 17:06:41','',0,'http://stdcycle.com/company/?p=268',10,'nav_menu_item','',0),(270,1,'2017-01-19 16:54:18','2017-01-19 16:54:18','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n.copyright {display: none}\n\n#header .bottom-header {\n padding-bottom: 120px;\n padding-top: 220px;\n text-align: center;\n width: 100%;}\n\n#contact-us {\n background-color: #999;\n padding: 40px 0 50px;\n text-align: center;\n width: 100%;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n background-color: #fff;\n color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n background-color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n border: none}\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n border:none}\n\n#contact-us .section-content .contact-us-box .box-right span {\n color: #eac132;}\n\n#contact-us .section-content .contact-us-box .box-right span a {\n color: #fff;\n text-decoration: none;}\n\n\n\n#header .bottom-header span.span-dot {\n color: #eac132;\n}\n\n#static-page-content .col-sm-12 {display:none}\n#static-page-content {padding: 10px 0 40px}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-submit {\n color:#eac132}\n\n#contact-us {padding: 30px 0 15px;}\n\n#about, #static-page-content {padding:30px 0 15px}\n\n#contact-us .section-header {\n margin-bottom: 30px;}\n\n#contact-us .section-content .contact-us-social a {\n font-size: 50px;}\n','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-19 16:54:18','2017-01-19 16:54:18','',81,'http://stdcycle.com/company/2017/01/19/81-revision-v1/',0,'revision','',0),(272,1,'2017-01-19 16:55:15','2017-01-19 16:55:15','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n.copyright {display: none}\n\n#header .bottom-header {\n padding-bottom: 120px;\n padding-top: 220px;\n text-align: center;\n width: 100%;}\n\n#contact-us {\n background-color: #999;\n padding: 40px 0 50px;\n text-align: center;\n width: 100%;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n background-color: #fff;\n color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n background-color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n border: none}\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n border:none}\n\n#contact-us .section-content .contact-us-box .box-right span {\n color: #eac132;}\n\n#contact-us .section-content .contact-us-box .box-right span a {\n color: #fff;\n text-decoration: none;}\n\n\n\n#header .bottom-header span.span-dot {\n color: #eac132;\n}\n\n#static-page-content .col-sm-12 {display:none}\n#static-page-content {padding: 10px 0 40px}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-submit {\n color:#eac132}\n\n#contact-us {padding: 30px 0 15px;}\n\n#about, #static-page-content {padding:30px 0 15px}\n\n#contact-us .section-header {\n margin-bottom: 30px;}\n\n#contact-us .section-content .contact-us-social a {\n font-size: 50px;}\n.col-sm-3 {\n width: 20%;\n}','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-19 16:55:15','2017-01-19 16:55:15','',81,'http://stdcycle.com/company/2017/01/19/81-revision-v1/',0,'revision','',0),(273,1,'2017-01-19 17:01:27','2017-01-19 17:01:27','','STD2-18','','inherit','open','closed','','std2-18','','','2017-01-19 17:01:27','2017-01-19 17:01:27','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD2-18.jpg',0,'attachment','image/jpeg',0),(274,1,'2017-01-19 17:54:48','2017-01-19 17:54:48','','WrenchPiston2','','inherit','open','closed','','wrenchpiston2','','','2017-01-19 17:54:48','2017-01-19 17:54:48','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/WrenchPiston2.png',0,'attachment','image/png',0),(275,1,'2017-01-19 19:28:25','2017-01-19 19:28:25','','dyno','','inherit','open','closed','','dyno','','','2017-12-13 20:21:04','2017-12-13 20:21:04','',180,'http://stdcycle.com/company/wp-content/uploads/2017/01/dyno.png',0,'attachment','image/png',0),(276,1,'2017-01-19 19:29:01','2017-01-19 19:29:01','','tree','','inherit','open','closed','','tree','','','2017-01-19 19:29:01','2017-01-19 19:29:01','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/tree.png',0,'attachment','image/png',0),(277,1,'2017-01-19 19:52:39','2017-01-19 19:52:39','','flags','','inherit','open','closed','','flags','','','2017-01-19 19:52:39','2017-01-19 19:52:39','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/flags.png',0,'attachment','image/png',0),(278,1,'2017-01-19 19:59:05','2017-01-19 19:59:05','Lorem ipsum dolor sit amet, aliquid accumsan ut pro. Ullum quando altera et pro, ignota facilis contentiones id pro. Quaeque equidem vulputate ea mea. Eos facer consul platonem ad, at mea habeo mutat. Veniam menandri assueverit sit cu. Vis no assum legendos, an utroque mandamus mel, aperiam minimum scaevola an vix.\r\n\r\nLorem ipsum dolor sit amet, aliquid accumsan ut pro. Ullum quando altera et pro, ignota facilis contentiones id pro. Quaeque equidem vulputate ea mea. Eos facer consul platonem ad, at mea habeo mutat. Veniam menandri assueverit sit cu. Vis no assum legendos, an utroque mandamus mel, aperiam minimum scaevola an vix.\r\n\r\nLorem ipsum dolor sit amet, aliquid accumsan ut pro. Ullum quando altera et pro, ignota facilis contentiones id pro. Quaeque equidem vulputate ea mea. Eos facer consul platonem ad, at mea habeo mutat. Veniam menandri assueverit sit cu. Vis no assum legendos, an utroque mandamus mel, aperiam minimum scaevola an vix.','About','','inherit','closed','closed','','38-revision-v1','','','2017-01-19 19:59:05','2017-01-19 19:59:05','',38,'http://stdcycle.com/company/2017/01/19/38-revision-v1/',0,'revision','',0),(279,1,'2017-01-19 20:58:03','2017-01-19 20:58:03','','torch','','inherit','open','closed','','torch','','','2017-01-19 20:58:03','2017-01-19 20:58:03','',0,'http://stdcycle.com/company/wp-content/uploads/2017/01/torch.png',0,'attachment','image/png',0),(280,1,'2017-01-19 21:02:26','2017-01-19 21:02:26','Lorem ipsum dolor sit amet, aliquid accumsan ut pro. Ullum quando altera et pro, ignota facilis contentiones id pro. Quaeque equidem vulputate ea mea. Eos facer consul platonem ad, at mea habeo mutat. Veniam menandri assueverit sit cu. Vis no assum legendos, an utroque mandamus mel, aperiam minimum scaevola an vix.\r\n\r\n<img class=\"alignleft size-full wp-image-221\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/12509261_942922315786706_8753407099223270164_n.jpg\" alt=\"\" width=\"960\" height=\"540\" />\r\n\r\nLorem ipsum dolor sit amet, aliquid accumsan ut pro. Ullum quando altera et pro, ignota facilis contentiones id pro. Quaeque equidem vulputate ea mea. Eos facer consul platonem ad, at mea habeo mutat. Veniam menandri assueverit sit cu. Vis no assum legendos, an utroque mandamus mel, aperiam minimum scaevola an vix.\r\n\r\nLorem ipsum dolor sit amet, aliquid accumsan ut pro. Ullum quando altera et pro, ignota facilis contentiones id pro. Quaeque equidem vulputate ea mea. Eos facer consul platonem ad, at mea habeo mutat. Veniam menandri assueverit sit cu. Vis no assum legendos, an utroque mandamus mel, aperiam minimum scaevola an vix.','About','','inherit','closed','closed','','38-revision-v1','','','2017-01-19 21:02:26','2017-01-19 21:02:26','',38,'http://stdcycle.com/company/2017/01/19/38-revision-v1/',0,'revision','',0),(281,1,'2017-01-19 21:04:09','2017-01-19 21:04:09','Lorem ipsum dolor sit amet, aliquid accumsan ut pro. Ullum quando altera et pro, ignota facilis contentiones id pro. Quaeque equidem vulputate ea mea. Eos facer consul platonem ad, at mea habeo mutat. Veniam menandri assueverit sit cu. Vis no assum legendos, an utroque mandamus mel, aperiam minimum scaevola an vix.\r\n\r\n<img class=\"alignleft size-full wp-image-221\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/12509261_942922315786706_8753407099223270164_n.jpg\" alt=\"\" width=\"960\" height=\"540\" />\r\n\r\n<img class=\"alignright size-medium wp-image-202\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/000043250006-245x300.jpg\" alt=\"\" width=\"245\" height=\"300\" />\r\n\r\nLorem ipsum dolor sit amet, aliquid accumsan ut pro. Ullum quando altera et pro, ignota facilis contentiones id pro. Quaeque equidem vulputate ea mea. Eos facer consul platonem ad, at mea habeo mutat. Veniam menandri assueverit sit cu. Vis no assum legendos, an utroque mandamus mel, aperiam minimum scaevola an vix.\r\n\r\nLorem ipsum dolor sit amet, aliquid accumsan ut pro. Ullum quando altera et pro, ignota facilis contentiones id pro. Quaeque equidem vulputate ea mea. Eos facer consul platonem ad, at mea habeo mutat. Veniam menandri assueverit sit cu. Vis no assum legendos, an utroque mandamus mel, aperiam minimum scaevola an vix.','About','','inherit','closed','closed','','38-revision-v1','','','2017-01-19 21:04:09','2017-01-19 21:04:09','',38,'http://stdcycle.com/company/2017/01/19/38-revision-v1/',0,'revision','',0),(283,1,'2017-01-19 21:13:38','2017-01-19 21:13:38','/*\nYou can add your own CSS here.\n\n\n\nClick the help icon above to learn more.\n*/\n\n\n.copyright {display: none}\n\n#header .bottom-header {\n padding-bottom: 120px;\n padding-top: 220px;\n text-align: center;\n width: 100%;}\n\n#contact-us {\n background-color: #999;\n padding: 40px 0 50px;\n text-align: center;\n width: 100%;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n background-color: #fff;\n color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n background-color: #fff;}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-text {\n border: none}\n#contact-us .section-content .wpcf7-form p .wpcf7-textarea {\n border:none}\n\n#contact-us .section-content .contact-us-box .box-right span {\n color: #eac132;}\n\n#contact-us .section-content .contact-us-box .box-right span a {\n color: #fff;\n text-decoration: none;}\n\n\n\n#header .bottom-header span.span-dot {\n color: #eac132;\n}\n\n#static-page-content .col-sm-12 {display:none}\n#static-page-content {padding: 10px 0 40px}\n\n#contact-us .section-content .wpcf7-form p .wpcf7-submit {\n color:#eac132}\n\n#contact-us {padding: 30px 0 15px;}\n\n#about, #static-page-content {padding:30px 0 15px}\n\n#contact-us .section-header {\n margin-bottom: 30px;}\n\n#contact-us .section-content .contact-us-social a {\n font-size: 50px;}\n.col-sm-3 {\n width: 20%;\n}\n#about .section-header {\n margin-bottom: 0px;\n}','illdy','','inherit','closed','closed','','81-revision-v1','','','2017-01-19 21:13:38','2017-01-19 21:13:38','',81,'http://stdcycle.com/company/2017/01/19/81-revision-v1/',0,'revision','',0),(284,1,'2017-01-20 14:59:46','2017-01-20 14:59:46','Commodo habemus detraxit ea vix, nam novum legimus persequeris ad. Consul persius sea ea. Ius dicta patrioque abhorreant ea, vis sonet epicurei theophrastus ut. Et pro vocent perfecto concludaturque, no vix elitr integre intellegebat.\n\n<img class=\"alignleft size-full wp-image-225\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/DSC_7236.jpg\" alt=\"\" width=\"4928\" height=\"3264\" />\n\nHas in modus minim saepe. Assum cetero est ne, ad pri primis bonorum, pri no ubique prodesset. Dolor atomorum ne mea. Ne altera primis pro. Ei mentitum necessitatibus vel, at ferri facilisi eam, minim audiam eos no. Ea omnis prima latine pri.\n\n \n\nHas te lorem vituperata, nec audiam placerat senserit in. Id per diam scriptorem reprehendunt, errem alterum inciderint duo ad, rebum dicat accusam sit an. Usu ne omnis timeam, regione debitis civibus ius ad. Ad modus accumsan appellantur ius, affert eruditi vix et. Eos ex cetero dignissim, id integre cotidieque ullamcorper eos.','Race Prep','','inherit','closed','closed','','182-autosave-v1','','','2017-01-20 14:59:46','2017-01-20 14:59:46','',182,'http://stdcycle.com/company/2017/01/20/182-autosave-v1/',0,'revision','',0),(285,1,'2017-01-20 14:56:12','2017-01-20 14:56:12','Commodo habemus detraxit ea vix, nam novum legimus persequeris ad. Consul persius sea ea. Ius dicta patrioque abhorreant ea, vis sonet epicurei theophrastus ut. Et pro vocent perfecto concludaturque, no vix elitr integre intellegebat.\r\n\r\n<img class=\"alignleft size-full wp-image-225\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/DSC_7236.jpg\" alt=\"\" width=\"4928\" height=\"3264\" />\r\n\r\nHas in modus minim saepe. Assum cetero est ne, ad pri primis bonorum, pri no ubique prodesset. Dolor atomorum ne mea. Ne altera primis pro. Ei mentitum necessitatibus vel, at ferri facilisi eam, minim audiam eos no. Ea omnis prima latine pri.\r\n\r\n<img class=\"alignleft size-full wp-image-221\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/12509261_942922315786706_8753407099223270164_n.jpg\" alt=\"\" width=\"960\" height=\"540\" />\r\n\r\nHas te lorem vituperata, nec audiam placerat senserit in. Id per diam scriptorem reprehendunt, errem alterum inciderint duo ad, rebum dicat accusam sit an. Usu ne omnis timeam, regione debitis civibus ius ad. Ad modus accumsan appellantur ius, affert eruditi vix et. Eos ex cetero dignissim, id integre cotidieque ullamcorper eos.','Race Prep','','inherit','closed','closed','','182-revision-v1','','','2017-01-20 14:56:12','2017-01-20 14:56:12','',182,'http://stdcycle.com/company/2017/01/20/182-revision-v1/',0,'revision','',0),(286,1,'2017-12-14 19:54:42','2017-12-14 19:54:42','<img class=\"alignleft size-medium wp-image-275\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/dyno-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\n\nStandard Cycle Company has over 15 years tuning experience utilizing chassis dynamometers and various on-board data acquisition systems, along with real world racing experience in many different racing disciplines. We have completed and keep up to date with Dynojet tuning and S&S Cycle VFi stand-alone ecu certifications.\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">We offer dyno tuning for all two-wheeled vehicles on our Dynoware RT powered Dynojet 250i eddy current and load controlled dynamometer in our custom designed climate controlled and sound attenuating dyno cell. </span><span class=\"text_exposed_show\">Utilizing Dynojet\'s latest Dynoware RT package</span> we can ensure the most accurate data collection. Combined with our knowledge and experience we guarantee the best possible tune for your street, track or dirt bike</p>\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">Our enclosed dyno cell has been engineered to ensure the cleanest ambient air possible by utilizing a sophisticated whole cell exhaust extraction system with a filtered fresh air inlet. Controlling the air inside the cell provides a sterile environment free from exhaust fumes and heat, which typically accumulates while tuning. The resulting errors in data collection make an accurate tune with peak performance in the real world difficult, if not impossible.</span></p>\nStandard Cycle has had the honor of being trusted tuners for multiple race winning motocross, road course, drag and national LSR record holding motorcycles.\n<p style=\"text-align: center;\"><strong>We offer</strong></p>\n\n<ul>\n <li style=\"text-align: left;\">Carburetor tuning including, Linkert, Amal, Mikuni, Keihin, Lectron, S&S among others</li>\n <li style=\"text-align: left;\">Dynojet Power Commander and ignition module tuning</li>\n <li style=\"text-align: left;\">Dynojet Power Vision and Power Vision CX ecu flash tuning for Harley and Victory/Indian applications</li>\n <li style=\"text-align: left;\">Bazzaz product tuning</li>\n <li style=\"text-align: left;\">S&S VFi stand-alone ECU tuning</li>\n <li style=\"text-align: left;\">Various stand-alone ignition products</li>\n <li style=\"text-align: left;\">Factory ECU tuning for select Suzuki and Triumph models with more applications becoming available in the future</li>\n <li>Both wet and dry nitrous tuning</li>\n <li style=\"text-align: left;\">Progressive nitrous and turbo boost controller tuning</li>\n <li style=\"text-align: left;\">Microtech secondary fueling system tuning for boosted applications</li>\n</ul>\n[embed]https://youtu.be/G1O9cnGp8L8[/embed]\n\n \n\n[gallery size=\"large\" link=\"file\" ids=\"379,411,378,412,381,382,401,402,380,397,392,377,375,390,374,370,373,340,341,337,403,321,320,409,400,395,393\"]','Dyno Tuning','','inherit','closed','closed','','180-autosave-v1','','','2017-12-14 19:54:42','2017-12-14 19:54:42','',180,'http://stdcycle.com/company/2017/01/20/180-autosave-v1/',0,'revision','',0),(287,1,'2017-01-20 14:59:09','2017-01-20 14:59:09','','STD_Flats-8','','inherit','open','closed','','std_flats-8','','','2017-01-20 14:59:09','2017-01-20 14:59:09','',180,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD_Flats-8.jpg',0,'attachment','image/jpeg',0),(288,1,'2017-01-20 14:59:26','2017-01-20 14:59:26','','STD_Flats-9','','inherit','open','closed','','std_flats-9','','','2017-01-20 14:59:26','2017-01-20 14:59:26','',180,'http://stdcycle.com/company/wp-content/uploads/2017/01/STD_Flats-9.jpg',0,'attachment','image/jpeg',0),(289,1,'2017-01-20 15:00:21','2017-01-20 15:00:21','Commodo habemus detraxit ea vix, nam novum legimus persequeris ad. Consul persius sea ea. Ius dicta patrioque abhorreant ea, vis sonet epicurei theophrastus ut. Et pro vocent perfecto concludaturque, no vix elitr integre intellegebat.\r\n\r\n<img class=\"alignleft size-full wp-image-225\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/DSC_7236.jpg\" alt=\"\" width=\"4928\" height=\"3264\" />\r\n\r\nHas in modus minim saepe. Assum cetero est ne, ad pri primis bonorum, pri no ubique prodesset. Dolor atomorum ne mea. Ne altera primis pro. Ei mentitum necessitatibus vel, at ferri facilisi eam, minim audiam eos no. Ea omnis prima latine pri.\r\n\r\n<img class=\"alignleft size-medium wp-image-230\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/13934718_10157168508435364_6802984478891619192_n-165x300.jpg\" alt=\"\" width=\"165\" height=\"300\" />\r\n\r\nHas te lorem vituperata, nec audiam placerat senserit in. Id per diam scriptorem reprehendunt, errem alterum inciderint duo ad, rebum dicat accusam sit an. Usu ne omnis timeam, regione debitis civibus ius ad. Ad modus accumsan appellantur ius, affert eruditi vix et. Eos ex cetero dignissim, id integre cotidieque ullamcorper eos.','Race Prep','','inherit','closed','closed','','182-revision-v1','','','2017-01-20 15:00:21','2017-01-20 15:00:21','',182,'http://stdcycle.com/company/2017/01/20/182-revision-v1/',0,'revision','',0),(290,1,'2017-01-20 15:00:52','2017-01-20 15:00:52','<span class=\"text_exposed_show\"> We offer dyno tuning for all two wheeled vehicles on our Dynojet 250i eddy current and load controlled dynamometer. Being a Certified Dynojet tuning center and utilizing Dynojet\'s latest Dynoware RT package, we can ensured the best possible data logging and the most accurate tune for your motorcycle.</span>\r\n\r\n<img class=\"alignleft size-full wp-image-288\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/STD_Flats-9.jpg\" alt=\"\" width=\"1920\" height=\"1280\" />','Dyno Tuning','','inherit','closed','closed','','180-revision-v1','','','2017-01-20 15:00:52','2017-01-20 15:00:52','',180,'http://stdcycle.com/company/2017/01/20/180-revision-v1/',0,'revision','',0),(291,1,'2017-01-20 15:02:51','2017-01-20 15:02:51','<img class=\"alignleft size-medium wp-image-32\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/11855849_10155837807335364_8050995259848581690_n-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" /><span class=\"text_exposed_show\"> Stocking all your daily needs, including premium oils from Motorex, Maxima, and Belray, Yuasa batteries, K&N filters, NGK plugs, Liquid Performance chemicals and S100 cleaners in our clean, bright, and hip showroom. </span>','Retail','','inherit','closed','closed','','184-revision-v1','','','2017-01-20 15:02:51','2017-01-20 15:02:51','',184,'http://stdcycle.com/company/2017/01/20/184-revision-v1/',0,'revision','',0),(293,1,'2017-11-09 17:48:39','2017-11-09 17:48:39','Standard Cycle Company is a complete service center and retail store for all motorcycles. Located in Berkeley Heights, right at the foothills of some of the best riding in New Jersey. With over 20 years professional experience in the powersports industry, various forms of modern and vintage motorcycle racing and the latest in technology in repair and fabrication equipment we can repair and maintain all American, metric, sport, cruiser, dirt, racing motorcycles and atv\'s.\r\n\r\nStocking all your daily needs, including premium oils from Motorex, Maxima, and Belray, Yuasa batteries, K&N filters, NGK plugs, Liquid Performance chemicals and S100 cleaners in our clean, bright, and hip showroom.\r\n\r\nStop by anytime and talk moto or have your bike\'s oil changed while listening to Coltrane playing on vinyl, watch \"The world\'s Fastest Indian\" or Dana Brown\'s \"On any Sunday\", or enjoy our free guest wifi.','About','','inherit','closed','closed','','38-revision-v1','','','2017-11-09 17:48:39','2017-11-09 17:48:39','',38,'http://stdcycle.com/company/2017/11/09/38-revision-v1/',0,'revision','',0),(294,1,'2017-11-09 17:49:39','2017-11-09 17:49:39','Lorem ipsum dolor sit amet, aliquid accumsan ut pro. Ullum quando altera et pro, ignota facilis contentiones id pro. Quaeque equidem vulputate ea mea. Eos facer consul platonem ad, at mea habeo mutat. Veniam menandri assueverit sit cu. Vis no assum legendos, an utroque mandamus mel, aperiam minimum scaevola an vix.\r\n\r\n<img class=\"alignleft size-full wp-image-221\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/12509261_942922315786706_8753407099223270164_n.jpg\" alt=\"\" width=\"960\" height=\"540\" />\r\n\r\n<img class=\"alignright size-medium wp-image-202\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/000043250006-245x300.jpg\" alt=\"\" width=\"245\" height=\"300\" />\r\n\r\nLorem ipsum dolor sit amet, aliquid accumsan ut pro. Ullum quando altera et pro, ignota facilis contentiones id pro. Quaeque equidem vulputate ea mea. Eos facer consul platonem ad, at mea habeo mutat. Veniam menandri assueverit sit cu. Vis no assum legendos, an utroque mandamus mel, aperiam minimum scaevola an vix.\r\n\r\nLorem ipsum dolor sit amet, aliquid accumsan ut pro. Ullum quando altera et pro, ignota facilis contentiones id pro. Quaeque equidem vulputate ea mea. Eos facer consul platonem ad, at mea habeo mutat. Veniam menandri assueverit sit cu. Vis no assum legendos, an utroque mandamus mel, aperiam minimum scaevola an vix.','About','','inherit','closed','closed','','38-revision-v1','','','2017-11-09 17:49:39','2017-11-09 17:49:39','',38,'http://stdcycle.com/company/2017/11/09/38-revision-v1/',0,'revision','',0),(295,1,'2017-11-09 17:50:49','2017-11-09 17:50:49','Standard Cycle Company is a complete service center and retail store for all motorcycles. Located in Berkeley Heights, right at the foothills of some of the best riding in New Jersey. With over 20 years professional experience in the powersports industry, various forms of modern and vintage racing and the latest in technology in repair and fabrication equipment we can repair and maintain all American, metric, sport, cruiser, dirt, racing motorcycles and atv\'s.\r\n\r\n<img class=\"alignleft size-full wp-image-221\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/12509261_942922315786706_8753407099223270164_n.jpg\" alt=\"\" width=\"960\" height=\"540\" />\r\n\r\n<img class=\"alignright size-medium wp-image-202\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/000043250006-245x300.jpg\" alt=\"\" width=\"245\" height=\"300\" />\r\n\r\nStocking all your daily needs, including premium oils from Motorex, Maxima, and Belray, Yuasa batteries, K&N filters, NGK plugs, Liquid Performance chemicals and S100 cleaners in our clean, bright, and hip showroom.\r\n\r\nStop by anytime and talk moto or have your bike\'s oil changed while listening to Coltrane playing on vinyl, watch \"The world\'s Fastest Indian\" or Dana Brown\'s \"On any Sunday\", or enjoy our free guest wifi.','About','','inherit','closed','closed','','38-revision-v1','','','2017-11-09 17:50:49','2017-11-09 17:50:49','',38,'http://stdcycle.com/company/2017/11/09/38-revision-v1/',0,'revision','',0),(296,1,'2017-11-09 17:52:56','2017-11-09 17:52:56','Standard Cycle Company is a complete service center and retail store for all motorcycles. Located in Berkeley Heights, right at the foothills of some of the best riding in New Jersey. With over 20 years professional experience in the powersports industry, along with various forms of modern and vintage racing. Utilizing the latest in technology in repair and fabrication equipment we can repair, maintain, and modify all American, metric, sport, cruiser, dirt, racing motorcycles and atv\'s.\r\n\r\n<img class=\"alignleft size-full wp-image-221\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/12509261_942922315786706_8753407099223270164_n.jpg\" alt=\"\" width=\"960\" height=\"540\" />\r\n\r\n<img class=\"alignright size-medium wp-image-202\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/000043250006-245x300.jpg\" alt=\"\" width=\"245\" height=\"300\" />\r\n\r\nStocking all your daily needs, including premium oils from Motorex, Maxima, and Belray, Yuasa batteries, K&N filters, NGK plugs, Liquid Performance chemicals and S100 cleaners in our clean, bright, and hip showroom.\r\n\r\nStop by anytime and talk moto or have your bike\'s oil changed while listening to Coltrane playing on vinyl, watch \"The world\'s Fastest Indian\" or Dana Brown\'s \"On any Sunday\", or enjoy our free guest wifi.','About','','inherit','closed','closed','','38-revision-v1','','','2017-11-09 17:52:56','2017-11-09 17:52:56','',38,'http://stdcycle.com/company/2017/11/09/38-revision-v1/',0,'revision','',0),(297,1,'2017-11-09 19:23:59','0000-00-00 00:00:00','','widget_image','','draft','closed','closed','','','','','2017-11-09 19:23:59','0000-00-00 00:00:00','a:1:{s:12:\"_multiwidget\";i:1;}',0,'http://stdcycle.com/company/?post_type=jetpack_migration&p=297',0,'jetpack_migration','',0),(298,1,'2017-11-09 19:23:59','0000-00-00 00:00:00','','sidebars_widgets','','draft','closed','closed','','','','','2017-11-09 19:23:59','0000-00-00 00:00:00','a:12:{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:19:\"wp_inactive_widgets\";a:4:{i:0;s:6:\"text-2\";i:1;s:6:\"text-3\";i:2;s:6:\"text-4\";i:3;s:6:\"text-5\";}s:12:\"blog-sidebar\";a:1:{i:0;s:21:\"widget_contact_info-4\";}s:12:\"page-sidebar\";a:1:{i:0;s:10:\"nav_menu-3\";}s:16:\"footer-sidebar-1\";a:1:{i:0;s:10:\"nav_menu-2\";}s:16:\"footer-sidebar-2\";a:1:{i:0;s:18:\"googlemapswidget-3\";}s:16:\"footer-sidebar-3\";a:1:{i:0;s:21:\"widget_contact_info-5\";}s:24:\"front-page-about-sidebar\";a:0:{}s:27:\"front-page-projects-sidebar\";a:0:{}s:27:\"front-page-services-sidebar\";a:6:{i:0;s:6:\"text-6\";i:1;s:6:\"text-7\";i:2;s:6:\"text-8\";i:3;s:6:\"text-9\";i:4;s:7:\"text-10\";i:5;s:7:\"text-11\";}s:26:\"front-page-counter-sidebar\";a:0:{}s:23:\"front-page-team-sidebar\";a:0:{}}',0,'http://stdcycle.com/company/?post_type=jetpack_migration&p=298',0,'jetpack_migration','',0),(299,0,'2017-12-14 19:51:26','0000-00-00 00:00:00','','Illdy Backup Settings','','draft','closed','closed','','','','','2017-12-14 19:51:26','2017-12-14 19:51:26','',0,'http://stdcycle.com/company/?page_id=299',0,'page','',0),(305,1,'2017-12-11 22:04:38','2017-12-11 22:04:38','','Illdy Backup Settings','','inherit','closed','closed','','299-revision-v1','','','2017-12-11 22:04:38','2017-12-11 22:04:38','',299,'http://stdcycle.com/company/2017/12/11/299-revision-v1/',0,'revision','',0),(307,0,'2017-12-15 15:36:46','0000-00-00 00:00:00','PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCEtLWdlbmVyYXRvcj0namV0cGFjay01LjYnLS0+Cjw/eG1sLXN0eWxlc2hlZXQgdHlwZT0idGV4dC94c2wiIGhyZWY9Imh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zaXRlbWFwLnhzbCI/Pgo8dXJsc2V0IHhtbG5zPSJodHRwOi8vd3d3LnNpdGVtYXBzLm9yZy9zY2hlbWFzL3NpdGVtYXAvMC45IiB4bWxuczp4c2k9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1MU2NoZW1hLWluc3RhbmNlIiB4c2k6c2NoZW1hTG9jYXRpb249Imh0dHA6Ly93d3cuc2l0ZW1hcHMub3JnL3NjaGVtYXMvc2l0ZW1hcC8wLjkgaHR0cDovL3d3dy5zaXRlbWFwcy5vcmcvc2NoZW1hcy9zaXRlbWFwLzAuOS9zaXRlbWFwLnhzZCI+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueTwvbG9jPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvMjAxNi8xMi8xMi9oZWxsby13b3JsZC88L2xvYz48bGFzdG1vZD4yMDE2LTEyLTEyVDE5OjQ3OjM2WjwvbGFzdG1vZD48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NhbXBsZS1wYWdlLzwvbG9jPjxsYXN0bW9kPjIwMTYtMTItMTJUMTk6NDc6MzZaPC9sYXN0bW9kPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvYWJvdXQvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xNVQxNTozNjo0Nlo8L2xhc3Rtb2Q+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTE5VDE3OjAwOjM5WjwvbGFzdG1vZD48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL2R5bm8tdHVuaW5nLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTk6NTQ6NTJaPC9sYXN0bW9kPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmFjZS1wcmVwLzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMjBUMTU6MDE6MThaPC9sYXN0bW9kPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTk6MjA6MjhaPC9sYXN0bW9kPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvc3BlY2lhbHR5LzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMThUMjI6MjE6NDJaPC9sYXN0bW9kPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvZmFicmljYXRpb24vPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMS0xOVQxNTo1NTozOFo8L2xhc3Rtb2Q+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9jb250YWN0LzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMTlUMDE6NDI6MjJaPC9sYXN0bW9kPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMS0xOVQxNjozMDozOVo8L2xhc3Rtb2Q+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9yZXBhaXItYW5kLW1haW50ZW5hbmNlLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMjE6MzE6MzlaPC9sYXN0bW9kPjwvdXJsPjwvdXJsc2V0Pgo=','sitemap-1.xml','','draft','closed','closed','','','','','2018-01-12 03:44:38','2018-01-12 03:44:38','',0,'http://stdcycle.com/company/?p=307',0,'jp_sitemap','',0),(308,0,'2017-12-15 14:55:28','0000-00-00 00:00:00','PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCEtLWdlbmVyYXRvcj0namV0cGFjay01LjYnLS0+Cjw/eG1sLXN0eWxlc2hlZXQgdHlwZT0idGV4dC94c2wiIGhyZWY9Imh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9pbWFnZS1zaXRlbWFwLnhzbCI/Pgo8dXJsc2V0IHhtbG5zPSJodHRwOi8vd3d3LnNpdGVtYXBzLm9yZy9zY2hlbWFzL3NpdGVtYXAvMC45IiB4bWxuczp4c2k9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1MU2NoZW1hLWluc3RhbmNlIiB4c2k6c2NoZW1hTG9jYXRpb249Imh0dHA6Ly93d3cuc2l0ZW1hcHMub3JnL3NjaGVtYXMvc2l0ZW1hcC8wLjkgaHR0cDovL3d3dy5zaXRlbWFwcy5vcmcvc2NoZW1hcy9zaXRlbWFwLzAuOS9zaXRlbWFwLnhzZCIgeG1sbnM6aW1hZ2U9Imh0dHA6Ly93d3cuZ29vZ2xlLmNvbS9zY2hlbWFzL3NpdGVtYXAtaW1hZ2UvMS4xIj48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3N0YW5kYXJkLWJhci1sb2dvLXRyYW5zLzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMTNUMTY6NDQ6MTZaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMS9zdGFuZGFyZC1iYXItbG9nby10cmFucy1lMTQ4NDY5NTIwNDk0NS5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+c3RhbmRhcmQgYmFyIGxvZ28gdHJhbnM8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc3RhbmRhcmQtYmFyLWxvZ28tc3RpY2tlci1jb25jZXB0LzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMTdUMjM6MzQ6MjBaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMS9zdGFuZGFyZC1iYXItbG9nby1zdGlja2VyLWNvbmNlcHQtZTE0ODQ2OTYwNTY5ODkucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPnN0YW5kYXJkIGJhciBsb2dvIHN0aWNrZXIgY29uY2VwdDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9pbWdfOTU3NTEvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMS0xM1QyMDoxNDoyOFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAxL0lNR185NTc1MS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+SU1HXzk1NzUxPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L2Nyb3BwZWQtaW1nXzk1NzUxLWpwZy88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTEzVDIwOjE0OjQ2WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvY3JvcHBlZC1JTUdfOTU3NTEuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPmNyb3BwZWQtSU1HXzk1NzUxLmpwZzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9jcm9wcGVkLXN0YW5kYXJkLWJhci1sb2dvLXRyYW5zLXBuZy88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTE3VDIzOjMxOjU0WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvY3JvcHBlZC1zdGFuZGFyZC1iYXItbG9nby10cmFucy1lMTQ4NDY5NTkwNTQ1NS5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Y3JvcHBlZC1zdGFuZGFyZC1iYXItbG9nby10cmFucy5wbmc8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvMDAwMDQzMjUwMDA4cmVzaXplZC88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTEzVDIwOjE4OjI0WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvMDAwMDQzMjUwMDA4cmVzaXplZC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MDAwMDQzMjUwMDA4cmVzaXplZDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9jcm9wcGVkLTAwMDA0MzI1MDAwOHJlc2l6ZWQtanBnLzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMTNUMjA6MTg6NTBaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMS9jcm9wcGVkLTAwMDA0MzI1MDAwOHJlc2l6ZWQuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPmNyb3BwZWQtMDAwMDQzMjUwMDA4cmVzaXplZC5qcGc8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMjBUMTU6MDI6MzNaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMS8xMTg1NTg0OV8xMDE1NTgzNzgwNzMzNTM2NF84MDUwOTk1MjU5ODQ4NTgxNjkwX24uanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjExODU1ODQ5XzEwMTU1ODM3ODA3MzM1MzY0XzgwNTA5OTUyNTk4NDg1ODE2OTBfbjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zdGFuZGFyZC1iYXItbG9nby1zdGlja2VyLWNvbmNlcHQtMi88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTEzVDIxOjAyOjI3WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvc3RhbmRhcmQtYmFyLWxvZ28tc3RpY2tlci1jb25jZXB0LTEucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPnN0YW5kYXJkIGJhciBsb2dvIHN0aWNrZXIgY29uY2VwdDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9jcm9wcGVkLWNyb3BwZWQtc3RhbmRhcmQtYmFyLWxvZ28tdHJhbnMtcG5nLzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMTdUMjM6MjE6NTJaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMS9jcm9wcGVkLWNyb3BwZWQtc3RhbmRhcmQtYmFyLWxvZ28tdHJhbnMtZTE0ODQ2OTUzMDI2ODUucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPmNyb3BwZWQtY3JvcHBlZC1zdGFuZGFyZC1iYXItbG9nby10cmFucy5wbmc8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvY3JvcHBlZC1zdGFuZGFyZC1iYXItbG9nby1zdGlja2VyLWNvbmNlcHQtcG5nLzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMTNUMjE6MDQ6MjZaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMS9jcm9wcGVkLXN0YW5kYXJkLWJhci1sb2dvLXN0aWNrZXItY29uY2VwdC5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Y3JvcHBlZC1zdGFuZGFyZC1iYXItbG9nby1zdGlja2VyLWNvbmNlcHQucG5nPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55LzIvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMS0xM1QyMTowODo1MVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAxLzIuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjI8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvY3JvcHBlZC1jcm9wcGVkLTAwMDA0MzI1MDAwOHJlc2l6ZWQtanBnLzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMTNUMjE6MzU6MzJaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMS9jcm9wcGVkLWNyb3BwZWQtMDAwMDQzMjUwMDA4cmVzaXplZC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Y3JvcHBlZC1jcm9wcGVkLTAwMDA0MzI1MDAwOHJlc2l6ZWQuanBnPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55LzI0LzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMTNUMjE6MzY6MjRaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMS8yNC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MjQ8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvY3JvcHBlZC0yNC1qcGcvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMS0xM1QyMTozNjo0OFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAxL2Nyb3BwZWQtMjQuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPmNyb3BwZWQtMjQuanBnPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55LzI0Y3JvcC88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTEzVDIxOjM4OjU2WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvMjRjcm9wLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4yNGNyb3A8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvY3JvcHBlZC0yNGNyb3AtanBnLzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMTNUMjE6Mzk6MDRaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMS9jcm9wcGVkLTI0Y3JvcC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Y3JvcHBlZC0yNGNyb3AuanBnPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3N0ZDEtNy88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTE3VDIyOjQwOjQ2WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvU1REMS03LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5TVEQxLTc8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc3RhbmRhcmQtYmFyLWxvZ28tdHJhbnMtMi88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTE3VDIzOjE5OjI4WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvc3RhbmRhcmQtYmFyLWxvZ28tdHJhbnMtMS5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+c3RhbmRhcmQgYmFyIGxvZ28gdHJhbnM8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvY3JvcHBlZC1zdGFuZGFyZC1iYXItbG9nby10cmFucy1lMTQ4NDY5NTIwNDk0NS1wbmcvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMS0xN1QyMzoyMzoxM1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAxL2Nyb3BwZWQtc3RhbmRhcmQtYmFyLWxvZ28tdHJhbnMtZTE0ODQ2OTUyMDQ5NDUucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPmNyb3BwZWQtc3RhbmRhcmQtYmFyLWxvZ28tdHJhbnMtZTE0ODQ2OTUyMDQ5NDUucG5nPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L2Nyb3BwZWQtc3RhbmRhcmQtYmFyLWxvZ28tc3RpY2tlci1jb25jZXB0LWUxNDg0Njk1NDYxMTUxLXBuZy88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTE3VDIzOjI1OjE0WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvY3JvcHBlZC1zdGFuZGFyZC1iYXItbG9nby1zdGlja2VyLWNvbmNlcHQtZTE0ODQ2OTU0NjExNTEucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPmNyb3BwZWQtc3RhbmRhcmQtYmFyLWxvZ28tc3RpY2tlci1jb25jZXB0LWUxNDg0Njk1NDYxMTUxLnBuZzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9jcm9wcGVkLXN0YW5kYXJkLWJhci1sb2dvLXN0aWNrZXItY29uY2VwdC1lMTQ4NDY5NjA1Njk4OS1wbmcvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMS0xN1QyMzozNToxNFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAxL2Nyb3BwZWQtc3RhbmRhcmQtYmFyLWxvZ28tc3RpY2tlci1jb25jZXB0LWUxNDg0Njk2MDU2OTg5LnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5jcm9wcGVkLXN0YW5kYXJkLWJhci1sb2dvLXN0aWNrZXItY29uY2VwdC1lMTQ4NDY5NjA1Njk4OS5wbmc8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvY3JvcHBlZC1jcm9wcGVkLXN0YW5kYXJkLWJhci1sb2dvLXRyYW5zLWUxNDg0Njk1MjA0OTQ1LXBuZy88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTE3VDIzOjQwOjQxWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvY3JvcHBlZC1jcm9wcGVkLXN0YW5kYXJkLWJhci1sb2dvLXRyYW5zLWUxNDg0Njk1MjA0OTQ1LnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5jcm9wcGVkLWNyb3BwZWQtc3RhbmRhcmQtYmFyLWxvZ28tdHJhbnMtZTE0ODQ2OTUyMDQ5NDUucG5nPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L2Nyb3BwZWQtc3RkMS03LWpwZy88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTE3VDIzOjQ1OjAxWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvY3JvcHBlZC1TVEQxLTcuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPmNyb3BwZWQtU1REMS03LmpwZzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9jcm9wcGVkLXN0YW5kYXJkLWJhci1sb2dvLXN0aWNrZXItY29uY2VwdC1lMTQ4NDY5NjA1Njk4OS0xLXBuZy88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTE3VDIzOjUwOjExWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvY3JvcHBlZC1zdGFuZGFyZC1iYXItbG9nby1zdGlja2VyLWNvbmNlcHQtZTE0ODQ2OTYwNTY5ODktMS5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Y3JvcHBlZC1zdGFuZGFyZC1iYXItbG9nby1zdGlja2VyLWNvbmNlcHQtZTE0ODQ2OTYwNTY5ODktMS5wbmc8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvY3JvcHBlZC1zdGFuZGFyZC1iYXItbG9nby1zdGlja2VyLWNvbmNlcHQtZTE0ODQ2OTYwNTY5ODktMi1wbmcvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMS0xOFQwMDowNDo1NFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAxL2Nyb3BwZWQtc3RhbmRhcmQtYmFyLWxvZ28tc3RpY2tlci1jb25jZXB0LWUxNDg0Njk2MDU2OTg5LTIucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPmNyb3BwZWQtc3RhbmRhcmQtYmFyLWxvZ28tc3RpY2tlci1jb25jZXB0LWUxNDg0Njk2MDU2OTg5LTIucG5nPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3N0ZDEtMTEvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMS0xOFQwMDowNzo1MFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAxL1NURDEtMTEuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNURDEtMTE8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc3RkMy0xLzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMThUMTg6Mzc6NTFaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMS9TVEQzLTEtZTE0ODQ4NDUxOTY5NzcuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNURDMtMTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zdGQtYmFkZ2UtMTUwLzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMThUMDI6MzU6NDJaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMS9TVEQtQmFkZ2UtMTUwLnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5TVEQgQmFkZ2UgMTUwPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L2Fib3V0LzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMThUMDM6MTU6MDBaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMS9TVEQtTG9nby5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+U1REIExvZ288L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvYWJvdXQvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMS0xOFQwMzoxNjozOVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAxL1NURC1Mb2dvLTEucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNURCBMb2dvPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3N0ZC1iYWRnZV8xNTAvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMS0xOFQxNTozMjoxNFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAxL1NURC1CYWRnZV8xNTAucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNURCBCYWRnZV8xNTA8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3JlbmNocGlzdG9uLzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMThUMTY6MDU6MTVaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMS9XcmVuY2hQaXN0b24ucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPldyZW5jaFBpc3RvbjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9zcGVjaWFsdHkvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMS0xOFQyMToyMToxOVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAxLzAwMDA0MzI1MDAwNi1lMTQ4NDc3NDQ5NzczMS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UGFuIEhlYWQ8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvZmFicmljYXRpb24vPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMS0xOFQyMTo1MDoxM1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAxL1NURDItNC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+U1REMi00PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3N0ZC1iYWRnZV8xNTAtMi88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTE4VDIxOjU3OjUyWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvU1RELUJhZGdlXzE1MC0xLnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5TVEQgQmFkZ2VfMTUwPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L2Nyb3BwZWQtc3RkLWJhZGdlXzE1MC0xLXBuZy88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTE4VDIxOjU4OjA5WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvY3JvcHBlZC1TVEQtQmFkZ2VfMTUwLTEucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPmNyb3BwZWQtU1RELUJhZGdlXzE1MC0xLnBuZzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9yYWNlLXByZXAvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMS0xOFQyMjowMTo1OFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAxLzAwMDA0MzI4MDAzM3Jlc2l6ZS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MDAwMDQzMjgwMDMzcmVzaXplPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL3JhY2UtcHJlcC88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTE4VDIyOjA2OjQ0WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvMDAwMDQ3NzAwMDA1cmVzaXplLTEuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjAwMDA0NzcwMDAwNXJlc2l6ZTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9hYm91dC88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTE5VDIxOjAyOjEyWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvMTI1MDkyNjFfOTQyOTIyMzE1Nzg2NzA2Xzg3NTM0MDcwOTkyMjMyNzAxNjRfbi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MTI1MDkyNjFfOTQyOTIyMzE1Nzg2NzA2Xzg3NTM0MDcwOTkyMjMyNzAxNjRfbjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS8xMjY0MjYyMl85NTM1MjQyNDEzOTMxODBfNDU3Njg5NDQ3OTk0MTkwMDY1NF9uLzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMThUMjI6MjA6NDNaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMS8xMjY0MjYyMl85NTM1MjQyNDEzOTMxODBfNDU3Njg5NDQ3OTk0MTkwMDY1NF9uLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4xMjY0MjYyMl85NTM1MjQyNDEzOTMxODBfNDU3Njg5NDQ3OTk0MTkwMDY1NF9uPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55LzEzNzI2NTY4XzEwMTU3MDg4NjEyMjY1MzY0XzE0NjAzNjg2ODgxNTg5OTY4NjBfbi88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTE4VDIyOjIwOjQ3WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvMTM3MjY1NjhfMTAxNTcwODg2MTIyNjUzNjRfMTQ2MDM2ODY4ODE1ODk5Njg2MF9uLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4xMzcyNjU2OF8xMDE1NzA4ODYxMjI2NTM2NF8xNDYwMzY4Njg4MTU4OTk2ODYwX248L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc3RkMi0zLzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMThUMjI6MjA6NTFaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMS9TVEQyLTMuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNURDItMzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9yYWNlLXByZXAvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMS0yMFQxNDo1NDo1Mlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAxL0RTQ183MjM2LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5EU0NfNzIzNjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zdGQyLTQtMi88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTE4VDIyOjIxOjE2WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvU1REMi00LTEuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNURDItNDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zdGQ0LTIvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMS0xOFQyMjoyMToyOFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAxL1NURDQtMi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+U1RENC0yPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3N0ZDItMTEvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMS0xOFQyMjoyMTozNlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAxL1NURDItMTEuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNURDItMTE8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc3RkMi04LzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMThUMjI6MjE6NDJaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMS9TVEQyLTguanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNURDItODwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9yYWNlLXByZXAvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMS0yMFQxNTowMDowM1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAxLzEzOTM0NzE4XzEwMTU3MTY4NTA4NDM1MzY0XzY4MDI5ODQ0Nzg4OTE2MTkxOTJfbi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MTM5MzQ3MThfMTAxNTcxNjg1MDg0MzUzNjRfNjgwMjk4NDQ3ODg5MTYxOTE5Ml9uPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL2R5bm8tdHVuaW5nLzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMThUMjI6MzE6MzhaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMS9TVERfRmxhdHMtMTcuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNURF9GbGF0cy0xNzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zdGRfZmxhdHMtMTctMi88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTE5VDE1OjAwOjI3WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvU1REX0ZsYXRzLTE3LTEuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNURF9GbGF0cy0xNzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zdGQyLTMtMi88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTE5VDE1OjAwOjM0WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvU1REMi0zLTEuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNURDItMzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zdGQyLTQtMy88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTE5VDE1OjAwOjQ0WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvU1REMi00LTIuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNURDItNDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zdGQtc2VhbC88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTE5VDE1OjUwOjExWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvU1RELVNlYWwtZTE0ODQ4NDEwMDIyNTMucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNURCBTZWFsPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L2Nyb3BwZWQtc3RkLXNlYWwtcG5nLzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMTlUMTU6NDg6MzVaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMS9jcm9wcGVkLVNURC1TZWFsLnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5jcm9wcGVkLVNURC1TZWFsLnBuZzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zdGQxLTExLTIvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMS0xOVQxNTo1Mzo0NFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAxL1NURDEtMTEtMS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+U1REMS0xMTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zdGQxLTctMi88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTE5VDE1OjUzOjUwWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvU1REMS03LTEuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNURDEtNzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zdGFuZGFyZC1iYXIteWVsbG93LzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMTlUMTY6MDQ6MzRaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMS9zdGFuZGFyZC1iYXIteWVsbG93LWUxNDg0ODQxODk4MTk5LnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5zdGFuZGFyZCBiYXIgeWVsbG93PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L2Nyb3BwZWQtc3RhbmRhcmQtYmFyLXllbGxvdy1lMTQ4NDg0MTg5ODE5OS1wbmcvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMS0xOVQxNjowNjowMlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAxL2Nyb3BwZWQtc3RhbmRhcmQtYmFyLXllbGxvdy1lMTQ4NDg0MTg5ODE5OS5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Y3JvcHBlZC1zdGFuZGFyZC1iYXIteWVsbG93LWUxNDg0ODQxODk4MTk5LnBuZzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zdGFuZGFyZC1iYXIteWVsbG93Mi88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTE5VDE2OjI5OjI4WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvc3RhbmRhcmQtYmFyLXllbGxvdzItZTE0ODQ4NDM5OTM3NDcucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPnN0YW5kYXJkIGJhciB5ZWxsb3cyPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3N0ZDItMTgvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMS0xOVQxNzowMToyN1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAxL1NURDItMTguanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNURDItMTg8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3JlbmNocGlzdG9uMi88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTE5VDE3OjU0OjQ4WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvV3JlbmNoUGlzdG9uMi5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+V3JlbmNoUGlzdG9uMjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9keW5vLXR1bmluZy88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTEzVDIwOjIxOjA0WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvZHluby5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+ZHlubzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS90cmVlLzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMTlUMTk6Mjk6MDFaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMS90cmVlLnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT50cmVlPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L2ZsYWdzLzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMTlUMTk6NTI6MzlaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMS9mbGFncy5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+ZmxhZ3M8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvdG9yY2gvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0wMS0xOVQyMDo1ODowM1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzAxL3RvcmNoLnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT50b3JjaDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9keW5vLXR1bmluZy88L2xvYz48bGFzdG1vZD4yMDE3LTAxLTIwVDE0OjU5OjA5WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMDEvU1REX0ZsYXRzLTguanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNURF9GbGF0cy04PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL2R5bm8tdHVuaW5nLzwvbG9jPjxsYXN0bW9kPjIwMTctMDEtMjBUMTQ6NTk6MjZaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8wMS9TVERfRmxhdHMtOS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+U1REX0ZsYXRzLTk8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvczEwMDByX2xzci0xLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTJUMTg6MzQ6MThaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9TMTAwMFJfTFNSLTEuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlMxMDAwUl9MU1ItMTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9wMTA4MDE5Mi88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTEyVDE4OjQwOjA5WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvUDEwODAxOTIuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlAxMDgwMTkyPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3MxMDAwcl9sc3ItMTYvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xMlQxODo0NTo1MVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL1MxMDAwUl9MU1ItMTYuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlMxMDAwUl9MU1ItMTY8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvZHluby10dW5pbmcvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xM1QxOToyNzoyOVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL1AxMDgwNDgzLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5QMTA4MDQ4MzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS8yMzkyNjUyMV8xMDIxNDA4MDIyOTk3NjU4NV81MjQ4NDMxODY3NTE0NzcyNzIwX28vPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xMlQxOToxOToxNFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyLzIzOTI2NTIxXzEwMjE0MDgwMjI5OTc2NTg1XzUyNDg0MzE4Njc1MTQ3NzI3MjBfby5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MjM5MjY1MjFfMTAyMTQwODAyMjk5NzY1ODVfNTI0ODQzMTg2NzUxNDc3MjcyMF9vPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55LzEzOTEyMzgzXzExNjQ2NTEyNjY4OTA2OTBfMTk5ODMxNTk3Mjk4MzAzNjYzMF9uLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTJUMTk6MjE6MTJaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi8xMzkxMjM4M18xMTY0NjUxMjY2ODkwNjkwXzE5OTgzMTU5NzI5ODMwMzY2MzBfbi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MTM5MTIzODNfMTE2NDY1MTI2Njg5MDY5MF8xOTk4MzE1OTcyOTgzMDM2NjMwX248L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvMjM3NTQ5NzJfMTAyMTQ2NTAyNjAzOTk3NzBfNDU3MDc5OTU2NTQ1ODU1Mjg4MV9uLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTJUMTk6MjM6MTBaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi8yMzc1NDk3Ml8xMDIxNDY1MDI2MDM5OTc3MF80NTcwNzk5NTY1NDU4NTUyODgxX24uanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjIzNzU0OTcyXzEwMjE0NjUwMjYwMzk5NzcwXzQ1NzA3OTk1NjU0NTg1NTI4ODFfbjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS8yMTE0OTkwNF8zNDI1Njk3OTI4NjI3NDNfMTYwMjA3OTAzODYwNzUyODQ1MV9uLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTJUMTk6Mjg6MjNaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi8yMTE0OTkwNF8zNDI1Njk3OTI4NjI3NDNfMTYwMjA3OTAzODYwNzUyODQ1MV9uLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4yMTE0OTkwNF8zNDI1Njk3OTI4NjI3NDNfMTYwMjA3OTAzODYwNzUyODQ1MV9uPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55LzI3NDUwMTA0MzMtcjEtZTAzMS88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTEyVDE5OjU3OjIyWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvMjc0NTAxMDQzMy1SMS1FMDMxLmdpZjwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4yNzQ1MDEwNDMzLVIxLUUwMzE8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvYWJvdXQvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xMlQyMDowNjoxMlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL1NURDYtMy5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+U1RENi0zPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L2Fib3V0LzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTJUMjA6MDg6NDlaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9TVEQ3LTQuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNURDctNDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9hYm91dC88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTEyVDIwOjEyOjA5WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvU1RENy0xNC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+U1RENy0xNDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9hYm91dC88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTEyVDIwOjEzOjEwWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvU1REMTAtNy5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+U1REMTAtNzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9hYm91dC88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTEyVDIwOjE0OjI3WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvU1RENi00LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5TVEQ2LTQ8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvYWJvdXQvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xMlQyMDoxOToxMVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL1NURDUtOC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+U1RENS04PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3N0ZDEwLTE1LzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTJUMjA6NTQ6NTlaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9TVEQxMC0xNS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+U1REMTAtMTU8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvdHJpdG9uLTYvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xMlQyMDo1Nzo1M1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL1RyaXRvbi02LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5Ucml0b24tNjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS90cml0b24tMjUvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xMlQyMDo1OTo0N1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL1RyaXRvbi0yNS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+VHJpdG9uLTI1PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L2J3X3N0ZC0xNy88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTEyVDIxOjAzOjE2WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvQldfU1RELTE3LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5CJmFtcDtXX1NURC0xNzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS90cml0b24tMzMvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xMlQyMToxMDowMlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL1RyaXRvbi0zMy5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+VHJpdG9uLTMzPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3N0ZDYtMS88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTEyVDIxOjEyOjA1WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvU1RENi0xLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5TVEQ2LTE8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvYWJvdXQvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xMlQyMTozMjozNVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL0RTQ18wMzY3X0RldGFpbC0zLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5EU0NfMDM2N19EZXRhaWwgKDMpPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L2Fib3V0LzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTJUMjE6NTQ6MTdaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9EU0NfMDM0OS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+RFNDXzAzNDk8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvZHluby10dW5pbmcvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xM1QxODo1MDo0NFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL1AxMDgwNDEzLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5QMTA4MDQxMzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9keW5vLXR1bmluZy88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTEzVDE4OjU3OjIwWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvUDEwODAxNjMuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlAxMDgwMTYzPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL2R5bm8tdHVuaW5nLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTNUMTk6MTM6MDNaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9QMTA4MDQ0Ni5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UDEwODA0NDY8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvZHluby10dW5pbmcvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xM1QxOToxNjoyMlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL1AxMDgwMzYyLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5QMTA4MDM2MjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9keW5vLXR1bmluZy88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTEzVDE5OjM0OjE3WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvUDEwODA0NDYtMS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UDEwODA0NDY8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvZHluby10dW5pbmcvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xM1QxOTozNzowNVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL1AxMDgwMjc3LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5QMTA4MDI3NzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9keW5vLXR1bmluZy88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTEzVDE5OjQzOjIzWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvUDEwODAwODYuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlAxMDgwMDg2PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL2R5bm8tdHVuaW5nLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTNUMTk6NDM6NTJaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9QMTA4MDE2My0xLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5QMTA4MDE2MzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9keW5vLXR1bmluZy88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTEzVDE5OjQ0OjE5WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvUDEwODAyMzQuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlAxMDgwMjM0PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL2R5bm8tdHVuaW5nLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTNUMTk6NDQ6NDhaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9QMTA4MDI1Ni5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UDEwODAyNTY8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvZHluby10dW5pbmcvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xM1QxOTo0NToxNFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL1AxMDgwMzQ3LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5QMTA4MDM0NzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9keW5vLXR1bmluZy88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTEzVDE5OjQ1OjUxWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvUDEwODA0NDQuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlAxMDgwNDQ0PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL2R5bm8tdHVuaW5nLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTNUMjA6MjA6NDhaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9keW5vamV0LnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5keW5vamV0PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL2R5bm8tdHVuaW5nLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTNUMjE6MTI6NDRaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9QMTA4MDExMS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UDEwODAxMTE8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvZHluby10dW5pbmcvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xM1QyMToxMzoxM1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL1AxMDgwMTEzLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5QMTA4MDExMzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9keW5vLXR1bmluZy88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTEzVDIxOjEzOjM5WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvUDEwODAxMjYuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlAxMDgwMTI2PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL2R5bm8tdHVuaW5nLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTNUMjE6MTQ6MTNaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9QMTA4MDEzNi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UDEwODAxMzY8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvZHluby10dW5pbmcvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xM1QyMToxNDo0Nlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL1AxMDgwMTg2LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5QMTA4MDE4NjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9keW5vLXR1bmluZy88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTEzVDIxOjE1OjE0WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvUDEwODAxOTQuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlAxMDgwMTk0PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL2R5bm8tdHVuaW5nLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTNUMjE6MTU6NDBaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9QMTA4MDE5NS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UDEwODAxOTU8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvZHluby10dW5pbmcvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xM1QyMToxNjowNVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL1AxMDgwMTk3LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5QMTA4MDE5NzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9keW5vLXR1bmluZy88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTEzVDIxOjE2OjM4WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvUDEwODAxOTkuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlAxMDgwMTk5PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL2R5bm8tdHVuaW5nLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTNUMjE6MTc6MThaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9QMTA4MDIxMi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UDEwODAyMTI8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvZHluby10dW5pbmcvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xM1QyMToxNzo1Mlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL1AxMDgwMjE1LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5QMTA4MDIxNTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9keW5vLXR1bmluZy88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTEzVDIxOjE4OjIwWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvUDEwODAyMjEuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlAxMDgwMjIxPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL2R5bm8tdHVuaW5nLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTNUMjE6MTg6NTFaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9QMTA4MDIyNi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UDEwODAyMjY8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvZHluby10dW5pbmcvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xM1QyMToxOToyMFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL1AxMDgwMjU0LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5QMTA4MDI1NDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9keW5vLXR1bmluZy88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTEzVDIxOjE5OjQ4WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvUDEwODAyNjMuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlAxMDgwMjYzPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL2R5bm8tdHVuaW5nLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTNUMjE6MjA6MTdaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9QMTA4MDI2OS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UDEwODAyNjk8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvZHluby10dW5pbmcvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xM1QyMToyMDo0Mlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL1AxMDgwMjc2LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5QMTA4MDI3NjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9keW5vLXR1bmluZy88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTEzVDIxOjIxOjExWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvUDEwODAzMDUuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlAxMDgwMzA1PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL2R5bm8tdHVuaW5nLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTNUMjE6MjE6NDFaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9QMTA4MDMzMC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UDEwODAzMzA8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvZHluby10dW5pbmcvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xM1QyMToyMjoxMFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL1AxMDgwMzUzLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5QMTA4MDM1MzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9keW5vLXR1bmluZy88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTEzVDIxOjIyOjM5WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvUDEwODAzNTcuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlAxMDgwMzU3PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL2R5bm8tdHVuaW5nLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTNUMjE6MjM6MDRaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9QMTA4MDQ0Ny5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UDEwODA0NDc8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvZHluby10dW5pbmcvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xM1QyMToyMzozNVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL1AxMDgwNDgwLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5QMTA4MDQ4MDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9yZXRhaWwvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xNFQxNzo0MzoxOVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyLzIuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjI8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTc6NDM6NDVaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi80LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT40PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL3JldGFpbC88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTE0VDE3OjUyOjM3WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvSU1HXzIwMTYxMjA2XzExMjkzMC1lMTUxMzI3Mzc5OTE4OC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+SU1HXzIwMTYxMjA2XzExMjkzMDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9yZXRhaWwvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xNFQxNzo0ODo1NVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL0lNR18yMDE3MDEwM18xMjU2MzUuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPklNR18yMDE3MDEwM18xMjU2MzU8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTc6NDk6MThaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9QMTA4MDAxOC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UDEwODAwMTg8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTc6NDk6MzhaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9QMTA4MDAyNi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UDEwODAwMjY8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTc6NTA6MDJaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9QMTA4MDA3Ny5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UDEwODAwNzc8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTc6NTA6MjZaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9QMTA4MDA4Mi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UDEwODAwODI8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTc6NTA6NTBaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9QMTA4MDE4OC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UDEwODAxODg8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTc6NTE6MTlaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9QMTA4MDM2MC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UDEwODAzNjA8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTc6NTE6NDZaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9QMTA4MDM3My5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UDEwODAzNzM8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTc6NTY6MDFaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9ha3JhcG92aWMtbG9nby1ob3Jpem9udGFsLnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5ha3JhcG92aWMtbG9nby1ob3Jpem9udGFsPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL3JldGFpbC88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTE0VDE3OjU2OjExWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvQU5TUi5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+QU5TUjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9yZXRhaWwvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xNFQxNzo1NjoyMlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL2JhaG4tbG9nby5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+YmFobi1sb2dvPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL3JldGFpbC88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTE0VDE3OjU2OjMzWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvYmFzc2FuaS5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+YmFzc2FuaTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9yZXRhaWwvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xNFQxNzo1Njo0N1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL2Jhenphei5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+YmF6emF6PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL3JldGFpbC88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTE0VDE3OjU2OjU5WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvQmlrZU1hc3Rlci5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+QmlrZU1hc3RlcjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9yZXRhaWwvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xNFQxNzo1NzoxMFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL0JpbGxzLVBpcGVzLVRyaS1Mb2dvLnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5CaWxsJ3MgUGlwZXMgVHJpIExvZ288L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTc6NTc6MjRaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9iaWx0d2VsbC1sb2dvLW5ldy5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+YmlsdHdlbGwtbG9nby1uZXc8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTc6NTc6MzZaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9ibGFja2JyYW5kLWJ3LWxvZ28ucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPmJsYWNrYnJhbmQtYnctbG9nbzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9yZXRhaWwvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xNFQxNzo1Nzo0N1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL2Jyb2Nrcy1wZXJmb3JtYW5jZS1zbWFsbC5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+YnJvY2tzLXBlcmZvcm1hbmNlLXNtYWxsPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL3JldGFpbC88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTE0VDE3OjU4OjAwWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvQlNULnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5CU1Q8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTc6NTg6MTNaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9CdWxseS5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+QnVsbHk8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTc6NTg6MjVaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9CdXJseS5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+QnVybHk8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTc6NTg6MzdaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9jcnVzaGVyLXBlcmZvcm1hbmNlLWxvZ28ucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPmNydXNoZXItcGVyZm9ybWFuY2UtbG9nbzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9yZXRhaWwvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xNFQxNzo1ODo0OFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL0RyYWdTcGVjaWFsdGllc0xvZ28ucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkRyYWcrU3BlY2lhbHRpZXMrTG9nbzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9yZXRhaWwvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xNFQxNzo1OTowM1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL2RyYWdvbi1maXJlLnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5kcmFnb24tZmlyZTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9yZXRhaWwvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xNFQxNzo1OToxNFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL2R5bm9qZXQtMS5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+ZHlub2pldDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9yZXRhaWwvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xNFQxNzo1OToyOVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL0ZpcnN0R2Vhci5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Rmlyc3RHZWFyPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL3JldGFpbC88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTE0VDE3OjU5OjQxWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvRk1GTG9nbzEucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkZNRkxvZ28xPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL3JldGFpbC88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTE0VDE3OjU5OjUyWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvSThJRU1tdlFfNDAweDQwMC5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+SThJRU1tdlFfNDAweDQwMDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9yZXRhaWwvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xNFQxODowMDowM1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL2ljb24tbG9nby1pY29uLWxvZ28tMjEuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPmljb24tbG9nby1pY29uLWxvZ28tMjE8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTg6MDA6MTZaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9LdXIucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkt1cjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9yZXRhaWwvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xNFQxODowMDoyOVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL2xvZ28ucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPmxvZ288L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTg6MDA6NDRaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9sb2dvX2JpZy5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+bG9nb19iaWc8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTg6MDA6NTZaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9sb3dicm93LWN1c3RvbXMtbG9nby0xMS5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+bG93YnJvdy1jdXN0b21zLWxvZ28tMTE8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTg6MDE6MTFaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9tb29zZS1yYWNpbmctbG9nby5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+bW9vc2UtcmFjaW5nLWxvZ288L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTg6MDE6MjZaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9NU1IucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPk1TUjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9yZXRhaWwvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xNFQxODowMTo0NFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL211c3RhbmcucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPm11c3Rhbmc8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTg6MDI6MDFaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9QTS5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UE08L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTg6MDI6MTVaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9wcm9ncmVzc2l2ZS5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+cHJvZ3Jlc3NpdmU8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTg6MDI6MzBaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9Qcm9UYXBlci5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UHJvVGFwZXI8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTg6MDI6NDFaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9RQm9zcy5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UUJvc3M8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTg6MDI6NTNaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9yZWtsdXNlLWxvZ28tNDczRTQyOEQzMi1zZWVrbG9nby5jb21fLnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5yZWtsdXNlLWxvZ28tNDczRTQyOEQzMi1zZWVrbG9nby5jb208L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTg6MDM6MDZaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9SZW50aGFsLnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5SZW50aGFsPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL3JldGFpbC88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTE0VDE4OjAzOjE3WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvUlIucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlJSPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL3JldGFpbC88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTE0VDE4OjAzOjM2WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvUlMucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlJTPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL3JldGFpbC88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTE0VDE4OjAzOjU1WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvc2tpZC1saWQucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPnNraWQtbGlkPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL3JldGFpbC88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTE0VDE4OjA0OjEwWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvU1MucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNTPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL3JldGFpbC88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTE0VDE4OjA0OjI3WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvc3RyaWRlci1sb2dvLnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5zdHJpZGVyLWxvZ288L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTg6MDQ6NDdaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi90YmFncy5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+dGJhZ3M8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTg6MDQ6NThaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi90aG9yX3RodW1iLnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT50aG9yX3RodW1iPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL3JldGFpbC88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTE0VDE4OjA1OjA5WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvdGhvci02MDAuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPnRob3ItNjAwPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3NlcnZpY2VzL3JldGFpbC88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTE0VDE4OjA1OjIyWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvdHN1a2lnaS1sb2dvLnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT50c3VraWdpLWxvZ288L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTg6MDU6MzRaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9WSC5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Vkg8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTg6MDU6NDRaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9WVHdpbi5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+VlR3aW48L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTg6MDU6NTVaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi92LXR3aW4tbWFudWZhY3R1cmluZy5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+di10d2luLW1hbnVmYWN0dXJpbmc8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTg6MDY6MDdaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi93b3JsZHdpZGUtYmVhcmluZ3Mtd2Vic2l0ZS5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+d29ybGR3aWRlLWJlYXJpbmdzLXdlYnNpdGU8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvc2VydmljZXMvcmV0YWlsLzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMTg6MDY6MjVaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi94dHJlbWUucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPnh0cmVtZTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zZXJ2aWNlcy9yZXRhaWwvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xNFQxODowNjozOFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL3lvc2hpbXVyYS5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+eW9zaGltdXJhPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L2Fib3V0LzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMjA6MDM6MjdaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9TVERfRmxhdHMtMjMuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNURF9GbGF0cy0yMzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9hYm91dC88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTE0VDIwOjA0OjA1WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvRkhGXzYxNy03LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5GSEZfNjE3LTc8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvYWJvdXQvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xNFQyMDowNTowNlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyLzEwODg3MjY3XzEwMTU0OTIxMzc0MzE1MzY0XzY1MDg1NzQyNzQ5NDEyNzE5OF9vLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4xMDg4NzI2N18xMDE1NDkyMTM3NDMxNTM2NF82NTA4NTc0Mjc0OTQxMjcxOThfbzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9hYm91dC88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTE0VDIwOjA1OjIwWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvMTQxMTQ5MzVfMTA5NDQ4NDA3Mzk2Mzg2Ml83NTExNDkxMjU5MjY3MzY5ODcxX28uanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjE0MTE0OTM1XzEwOTQ0ODQwNzM5NjM4NjJfNzUxMTQ5MTI1OTI2NzM2OTg3MV9vPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L2Fib3V0LzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMjA6MDU6MzNaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi8wMDAwNDMyODAwMDUuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjAwMDA0MzI4MDAwNTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9hYm91dC88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTE0VDIwOjA2OjQ4WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvQldfU1RELTIuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkImYW1wO1dfU1RELTI8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvYWJvdXQvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xNFQyMDowNzowMlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL0JXX1NURC0xMy5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+QiZhbXA7V19TVEQtMTM8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvYWJvdXQvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xNFQyMDowNzoxNlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL1NURDYtNS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+U1RENi01PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L2Fib3V0LzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMjA6MDc6MjlaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9TVEQ3LTE0LTEuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNURDctMTQ8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvYWJvdXQvPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xNFQyMDowNzo0NVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE3LzEyL1NURDEwLTIwLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5TVEQxMC0yMDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9hYm91dC88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTE0VDIwOjA4OjAyWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvU1REMTAtMjEuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNURDEwLTIxPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L2Fib3V0LzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTRUMjA6MTA6MTZaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi9XaGl0ZS1TaG92ZWwtMi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+V2hpdGUgU2hvdmVsLTI8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvcmVwYWlyLWFuZC1tYWludGVuYW5jZS88L2xvYz48bGFzdG1vZD4yMDE3LTEyLTE0VDIxOjMxOjA2WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vc3RkY3ljbGUuY29tL2NvbXBhbnkvd3AtY29udGVudC91cGxvYWRzLzIwMTcvMTIvUDEwODAzNDEuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlAxMDgwMzQxPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L2Fib3V0LzwvbG9jPjxsYXN0bW9kPjIwMTctMTItMTVUMTQ6NTU6MjhaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS93cC1jb250ZW50L3VwbG9hZHMvMjAxNy8xMi82NjIuanBlZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT42NjI8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjwvdXJsc2V0Pgo=','image-sitemap-1.xml','','draft','closed','closed','','','','','2018-01-12 03:44:39','2018-01-12 03:44:39','',0,'http://stdcycle.com/company/?p=308',0,'jp_img_sitemap','',0),(309,0,'1970-01-01 00:00:00','0000-00-00 00:00:00','PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCEtLWdlbmVyYXRvcj0namV0cGFjay01LjYnLS0+Cjw/eG1sLXN0eWxlc2hlZXQgdHlwZT0idGV4dC94c2wiIGhyZWY9Imh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zaXRlbWFwLWluZGV4LnhzbCI/Pgo8c2l0ZW1hcGluZGV4IHhtbG5zPSJodHRwOi8vd3d3LnNpdGVtYXBzLm9yZy9zY2hlbWFzL3NpdGVtYXAvMC45Ij48c2l0ZW1hcD48bG9jPmh0dHA6Ly9zdGRjeWNsZS5jb20vY29tcGFueS9zaXRlbWFwLTEueG1sPC9sb2M+PGxhc3Rtb2Q+MjAxNy0xMi0xNVQxNTozNjo0Nlo8L2xhc3Rtb2Q+PC9zaXRlbWFwPjxzaXRlbWFwPjxsb2M+aHR0cDovL3N0ZGN5Y2xlLmNvbS9jb21wYW55L2ltYWdlLXNpdGVtYXAtMS54bWw8L2xvYz48bGFzdG1vZD4yMDE3LTEyLTE1VDE0OjU1OjI4WjwvbGFzdG1vZD48L3NpdGVtYXA+PC9zaXRlbWFwaW5kZXg+Cg==','sitemap.xml','','draft','closed','closed','','','','','2018-01-12 03:44:39','2018-01-12 03:44:39','',0,'http://stdcycle.com/company/?p=309',0,'jp_sitemap_master','',0),(311,1,'2017-12-12 16:54:12','2017-12-12 16:54:12','','Repair and Maintenance','','publish','closed','closed','','repair-and-maintenance','','','2017-12-14 21:31:39','2017-12-14 21:31:39','',0,'http://stdcycle.com/company/?page_id=311',0,'page','',0),(312,1,'2017-12-12 16:54:12','2017-12-12 16:54:12','','Repair and Maintenance','','inherit','closed','closed','','311-revision-v1','','','2017-12-12 16:54:12','2017-12-12 16:54:12','',311,'http://stdcycle.com/company/2017/12/12/311-revision-v1/',0,'revision','',0),(313,1,'2017-12-12 16:54:12','2017-12-12 16:54:12',' ','','','publish','closed','closed','','313','','','2017-12-14 17:06:41','2017-12-14 17:06:41','',0,'http://stdcycle.com/company/2017/12/12/313/',5,'nav_menu_item','',0),(320,1,'2017-12-12 18:34:18','2017-12-12 18:34:18','','S1000R_LSR-1','','inherit','open','closed','','s1000r_lsr-1','','','2017-12-12 18:34:18','2017-12-12 18:34:18','',0,'http://stdcycle.com/company/wp-content/uploads/2017/12/S1000R_LSR-1.jpg',0,'attachment','image/jpeg',0),(321,1,'2017-12-12 18:39:02','2017-12-12 18:39:02','','P1080192','','inherit','open','closed','','p1080192','','','2017-12-12 18:40:09','2017-12-12 18:40:09','',0,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080192.jpg',0,'attachment','image/jpeg',0),(324,1,'2017-12-12 18:45:51','2017-12-12 18:45:51','','S1000R_LSR-16','','inherit','open','closed','','s1000r_lsr-16','','','2017-12-12 18:45:51','2017-12-12 18:45:51','',0,'http://stdcycle.com/company/wp-content/uploads/2017/12/S1000R_LSR-16.jpg',0,'attachment','image/jpeg',0),(326,1,'2017-12-12 18:51:21','2017-12-12 18:51:21','','P1080483','','inherit','open','closed','','p1080483','','','2017-12-13 19:27:29','2017-12-13 19:27:29','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080483.jpg',0,'attachment','image/jpeg',0),(330,1,'2017-12-12 19:19:14','2017-12-12 19:19:14','','23926521_10214080229976585_5248431867514772720_o','','inherit','open','closed','','23926521_10214080229976585_5248431867514772720_o','','','2017-12-12 19:19:14','2017-12-12 19:19:14','',0,'http://stdcycle.com/company/wp-content/uploads/2017/12/23926521_10214080229976585_5248431867514772720_o.jpg',0,'attachment','image/jpeg',0),(332,1,'2017-12-12 19:21:12','2017-12-12 19:21:12','','13912383_1164651266890690_1998315972983036630_n','','inherit','open','closed','','13912383_1164651266890690_1998315972983036630_n','','','2017-12-12 19:21:12','2017-12-12 19:21:12','',0,'http://stdcycle.com/company/wp-content/uploads/2017/12/13912383_1164651266890690_1998315972983036630_n.jpg',0,'attachment','image/jpeg',0),(333,1,'2017-12-12 19:23:10','2017-12-12 19:23:10','','23754972_10214650260399770_4570799565458552881_n','','inherit','open','closed','','23754972_10214650260399770_4570799565458552881_n','','','2017-12-12 19:23:10','2017-12-12 19:23:10','',0,'http://stdcycle.com/company/wp-content/uploads/2017/12/23754972_10214650260399770_4570799565458552881_n.jpg',0,'attachment','image/jpeg',0),(334,1,'2017-12-12 19:28:23','2017-12-12 19:28:23','','21149904_342569792862743_1602079038607528451_n','','inherit','open','closed','','21149904_342569792862743_1602079038607528451_n','','','2017-12-12 19:28:23','2017-12-12 19:28:23','',0,'http://stdcycle.com/company/wp-content/uploads/2017/12/21149904_342569792862743_1602079038607528451_n.jpg',0,'attachment','image/jpeg',0),(336,1,'2017-12-12 19:57:22','2017-12-12 19:57:22','','2745010433-R1-E031','','inherit','open','closed','','2745010433-r1-e031','','','2017-12-12 19:57:22','2017-12-12 19:57:22','',0,'http://stdcycle.com/company/wp-content/uploads/2017/12/2745010433-R1-E031.gif',0,'attachment','image/gif',0),(337,1,'2017-12-12 20:06:12','2017-12-12 20:06:12','','STD6-3','','inherit','open','closed','','std6-3','','','2017-12-12 20:06:12','2017-12-12 20:06:12','',38,'http://stdcycle.com/company/wp-content/uploads/2017/12/STD6-3.jpg',0,'attachment','image/jpeg',0),(338,1,'2017-12-12 20:08:49','2017-12-12 20:08:49','','STD7-4','','inherit','open','closed','','std7-4','','','2017-12-12 20:08:49','2017-12-12 20:08:49','',38,'http://stdcycle.com/company/wp-content/uploads/2017/12/STD7-4.jpg',0,'attachment','image/jpeg',0),(339,1,'2017-12-12 20:12:09','2017-12-12 20:12:09','','STD7-14','','inherit','open','closed','','std7-14','','','2017-12-12 20:12:09','2017-12-12 20:12:09','',38,'http://stdcycle.com/company/wp-content/uploads/2017/12/STD7-14.jpg',0,'attachment','image/jpeg',0),(340,1,'2017-12-12 20:13:10','2017-12-12 20:13:10','','STD10-7','','inherit','open','closed','','std10-7','','','2017-12-12 20:13:10','2017-12-12 20:13:10','',38,'http://stdcycle.com/company/wp-content/uploads/2017/12/STD10-7.jpg',0,'attachment','image/jpeg',0),(341,1,'2017-12-12 20:14:27','2017-12-12 20:14:27','','STD6-4','','inherit','open','closed','','std6-4','','','2017-12-12 20:14:27','2017-12-12 20:14:27','',38,'http://stdcycle.com/company/wp-content/uploads/2017/12/STD6-4.jpg',0,'attachment','image/jpeg',0),(342,1,'2017-12-12 20:16:29','2017-12-12 20:16:29','Standard Cycle Company is a complete service center and retail store for all motorcycles. Located in Berkeley Heights, right at the foothills of some of the best riding in New Jersey. With over 20 years professional experience in the powersports industry, along with various forms of modern and vintage racing. Utilizing the latest in technology in repair and fabrication equipment we can repair, maintain, and modify all American, metric, sport, cruiser, dirt, racing motorcycles and atv\'s.\r\n\r\n<img class=\"alignleft size-large wp-image-338\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/12/STD7-4-1024x683.jpg\" alt=\"\" width=\"640\" height=\"427\" />\r\n\r\n \r\n\r\n<img class=\"alignright wp-image-341 size-medium\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/12/STD6-4-200x300.jpg\" alt=\"\" width=\"200\" height=\"300\" />\r\n\r\nStocking all your daily needs, including premium oils from Motorex, Maxima, and Belray, Yuasa batteries, K&N filters, NGK plugs, Liquid Performance chemicals and S100 cleaners in our clean, bright, and hip showroom.\r\n\r\nStop by anytime and talk moto or have your bike\'s oil changed while listening to Coltrane playing on vinyl, watch \"The world\'s Fastest Indian\" or Dana Brown\'s \"On any Sunday\", or enjoy our free guest wifi.','About','','inherit','closed','closed','','38-revision-v1','','','2017-12-12 20:16:29','2017-12-12 20:16:29','',38,'http://stdcycle.com/company/2017/12/12/38-revision-v1/',0,'revision','',0),(343,1,'2017-12-12 20:19:11','2017-12-12 20:19:11','','STD5-8','','inherit','open','closed','','std5-8','','','2017-12-12 20:19:11','2017-12-12 20:19:11','',38,'http://stdcycle.com/company/wp-content/uploads/2017/12/STD5-8.jpg',0,'attachment','image/jpeg',0),(344,1,'2017-12-12 20:24:47','2017-12-12 20:24:47','Standard Cycle Company is a complete service center and retail store for all motorcycles. Located in Berkeley Heights, right at the foothills of some of the best riding in New Jersey. With over 20 years professional experience in the powersports industry, along with various forms of modern and vintage racing. Utilizing the latest in technology in repair and fabrication equipment we can repair, maintain, and modify all American, metric, sport, cruiser, dirt, racing motorcycles and atv\'s.\r\n\r\n<img class=\"alignleft wp-image-55 size-large\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/24-1024x1024.jpg\" alt=\"\" width=\"640\" height=\"640\" />\r\n\r\n \r\n\r\n<img class=\"alignright wp-image-341 size-medium\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/12/STD6-4-200x300.jpg\" alt=\"\" width=\"200\" height=\"300\" />\r\n\r\nStocking all your daily needs, including premium oils from Motorex, Maxima, and Belray, Yuasa batteries, K&N filters, NGK plugs, Liquid Performance chemicals and S100 cleaners in our clean, bright, and hip showroom.\r\n\r\nStop by anytime and talk moto or have your bike\'s oil changed while listening to Coltrane playing on vinyl, watch \"The world\'s Fastest Indian\" or Dana Brown\'s \"On any Sunday\", or enjoy our free guest wifi.','About','','inherit','closed','closed','','38-revision-v1','','','2017-12-12 20:24:47','2017-12-12 20:24:47','',38,'http://stdcycle.com/company/2017/12/12/38-revision-v1/',0,'revision','',0),(348,1,'2017-12-12 20:54:59','2017-12-12 20:54:59','','STD10-15','','inherit','open','closed','','std10-15','','','2017-12-12 20:54:59','2017-12-12 20:54:59','',0,'http://stdcycle.com/company/wp-content/uploads/2017/12/STD10-15.jpg',0,'attachment','image/jpeg',0),(351,1,'2017-12-12 20:57:53','2017-12-12 20:57:53','','Triton-6','','inherit','open','closed','','triton-6','','','2017-12-12 20:57:53','2017-12-12 20:57:53','',0,'http://stdcycle.com/company/wp-content/uploads/2017/12/Triton-6.jpg',0,'attachment','image/jpeg',0),(353,1,'2017-12-12 20:59:47','2017-12-12 20:59:47','','Triton-25','','inherit','open','closed','','triton-25','','','2017-12-12 20:59:47','2017-12-12 20:59:47','',0,'http://stdcycle.com/company/wp-content/uploads/2017/12/Triton-25.jpg',0,'attachment','image/jpeg',0),(355,1,'2017-12-12 21:03:16','2017-12-12 21:03:16','','B&W_STD-17','','inherit','open','closed','','bw_std-17','','','2017-12-12 21:03:16','2017-12-12 21:03:16','',0,'http://stdcycle.com/company/wp-content/uploads/2017/12/BW_STD-17.jpg',0,'attachment','image/jpeg',0),(358,1,'2017-12-12 21:10:02','2017-12-12 21:10:02','','Triton-33','','inherit','open','closed','','triton-33','','','2017-12-12 21:10:02','2017-12-12 21:10:02','',0,'http://stdcycle.com/company/wp-content/uploads/2017/12/Triton-33.jpg',0,'attachment','image/jpeg',0),(360,1,'2017-12-12 21:12:05','2017-12-12 21:12:05','','STD6-1','','inherit','open','closed','','std6-1','','','2017-12-12 21:12:05','2017-12-12 21:12:05','',0,'http://stdcycle.com/company/wp-content/uploads/2017/12/STD6-1.jpg',0,'attachment','image/jpeg',0),(361,1,'2017-12-12 21:22:48','2017-12-12 21:22:48','Standard Cycle Company is a complete service center and retail store for all motorcycles. Located in Berkeley Heights, right at the foothills of some of the best riding in New Jersey. With over 20 years professional experience in the powersports industry, along with various forms of modern and vintage racing. Utilizing the latest in technology in repair and fabrication equipment we can repair, maintain, and modify all American, metric, sport, cruiser, dirt, racing motorcycles and atv\'s.\r\n\r\n<img class=\"alignleft wp-image-55 size-large\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/24-1024x1024.jpg\" alt=\"\" width=\"640\" height=\"640\" />\r\n\r\n \r\n\r\n<img class=\"alignright wp-image-202 size-medium\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/000043250006-245x300.jpg\" alt=\"\" width=\"245\" height=\"300\" />\r\n\r\nStocking all your daily needs, including premium oils from Motorex, Maxima, and Belray, Yuasa batteries, K&N filters, NGK plugs, Liquid Performance chemicals and S100 cleaners in our clean, bright, and hip showroom.\r\n\r\nStop by anytime and talk moto or have your bike\'s oil changed while listening to Coltrane playing on vinyl, watch \"The world\'s Fastest Indian\" or Dana Brown\'s \"On any Sunday\", or enjoy our free guest wifi.','About','','inherit','closed','closed','','38-revision-v1','','','2017-12-12 21:22:48','2017-12-12 21:22:48','',38,'http://stdcycle.com/company/2017/12/12/38-revision-v1/',0,'revision','',0),(362,1,'2017-12-12 21:32:35','2017-12-12 21:32:35','','DSC_0367_Detail (3)','','inherit','open','closed','','dsc_0367_detail-3','','','2017-12-12 21:32:35','2017-12-12 21:32:35','',38,'http://stdcycle.com/company/wp-content/uploads/2017/12/DSC_0367_Detail-3.jpg',0,'attachment','image/jpeg',0),(363,1,'2017-12-12 21:33:24','2017-12-12 21:33:24','Standard Cycle Company is a complete service center and retail store for all motorcycles. Located in Berkeley Heights, right at the foothills of some of the best riding in New Jersey. With over 20 years professional experience in the powersports industry, along with various forms of modern and vintage racing. Utilizing the latest in technology in repair and fabrication equipment we can repair, maintain, and modify all American, metric, sport, cruiser, dirt, racing motorcycles and atv\'s.\r\n\r\n<img class=\"alignleft wp-image-202 size-large\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/000043250006-836x1024.jpg\" alt=\"\" width=\"640\" height=\"784\" />\r\n\r\n \r\n\r\n<img class=\"wp-image-362 size-large alignright\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/12/DSC_0367_Detail-3-1024x819.jpg\" alt=\"\" width=\"640\" height=\"512\" />\r\n\r\nStocking all your daily needs, including premium oils from Motorex, Maxima, and Belray, Yuasa batteries, K&N filters, NGK plugs, Liquid Performance chemicals and S100 cleaners in our clean, bright, and hip showroom.\r\n\r\nStop by anytime and talk moto or have your bike\'s oil changed while listening to Coltrane playing on vinyl, watch \"The world\'s Fastest Indian\" or Dana Brown\'s \"On any Sunday\", or enjoy our free guest wifi.','About','','inherit','closed','closed','','38-revision-v1','','','2017-12-12 21:33:24','2017-12-12 21:33:24','',38,'http://stdcycle.com/company/2017/12/12/38-revision-v1/',0,'revision','',0),(364,1,'2017-12-12 21:43:12','2017-12-12 21:43:12','Standard Cycle Company is a complete service center and retail store for all motorcycles. Located in Berkeley Heights, right at the foothills of some of the best riding in New Jersey. With over 20 years professional experience in the powersports industry, along with various forms of modern and vintage racing. Utilizing the latest in technology in repair and fabrication equipment we can repair, maintain, and modify all American, metric, sport, cruiser, dirt, racing motorcycles and atv\'s.\r\n\r\n<img class=\"alignleft wp-image-202 size-large\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/000043250006-836x1024.jpg\" alt=\"\" width=\"640\" height=\"784\" />\r\n\r\n \r\n\r\n<img class=\"alignright wp-image-362 size-medium\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/12/DSC_0367_Detail-3-300x240.jpg\" alt=\"\" width=\"300\" height=\"240\" />\r\n\r\nStocking all your daily needs, including premium oils from Motorex, Maxima, and Belray, Yuasa batteries, K&N filters, NGK plugs, Liquid Performance chemicals and S100 cleaners in our clean, bright, and hip showroom.\r\n\r\nStop by anytime and talk moto or have your bike\'s oil changed while listening to Coltrane playing on vinyl, watch \"The world\'s Fastest Indian\" or Dana Brown\'s \"On any Sunday\", or enjoy our free guest wifi.','About','','inherit','closed','closed','','38-revision-v1','','','2017-12-12 21:43:12','2017-12-12 21:43:12','',38,'http://stdcycle.com/company/2017/12/12/38-revision-v1/',0,'revision','',0),(365,1,'2017-12-12 21:54:17','2017-12-12 21:54:17','','DSC_0349','','inherit','open','closed','','dsc_0349','','','2017-12-12 21:54:17','2017-12-12 21:54:17','',38,'http://stdcycle.com/company/wp-content/uploads/2017/12/DSC_0349.jpg',0,'attachment','image/jpeg',0),(366,1,'2017-12-12 21:55:05','2017-12-12 21:55:05','Standard Cycle Company is a complete service center and retail store for all motorcycles. Located in Berkeley Heights, right at the foothills of some of the best riding in New Jersey. With over 20 years professional experience in the powersports industry, along with various forms of modern and vintage racing. Utilizing the latest in technology in repair and fabrication equipment we can repair, maintain, and modify all American, metric, sport, cruiser, dirt, racing motorcycles and atv\'s.\r\n\r\n<img class=\"alignleft wp-image-202 size-large\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/000043250006-836x1024.jpg\" alt=\"\" width=\"640\" height=\"784\" />\r\n\r\n \r\n\r\n<img class=\"alignright wp-image-365 size-medium\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/12/DSC_0349-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" />\r\n\r\nStocking all your daily needs, including premium oils from Motorex, Maxima, and Belray, Yuasa batteries, K&N filters, NGK plugs, Liquid Performance chemicals and S100 cleaners in our clean, bright, and hip showroom.\r\n\r\nStop by anytime and talk moto or have your bike\'s oil changed while listening to Coltrane playing on vinyl, watch \"The world\'s Fastest Indian\" or Dana Brown\'s \"On any Sunday\", or enjoy our free guest wifi.','About','','inherit','closed','closed','','38-revision-v1','','','2017-12-12 21:55:05','2017-12-12 21:55:05','',38,'http://stdcycle.com/company/2017/12/12/38-revision-v1/',0,'revision','',0),(367,1,'2017-12-12 21:56:53','2017-12-12 21:56:53','Standard Cycle Company is a complete service center and retail store for all motorcycles. Located in Berkeley Heights, right at the foothills of some of the best riding in New Jersey. With over 20 years professional experience in the powersports industry, along with various forms of modern and vintage racing. Utilizing the latest in technology in repair and fabrication equipment we can repair, maintain, and modify all American, metric, sport, cruiser, dirt, racing motorcycles and atv\'s.\r\n\r\n<img class=\"alignleft wp-image-202 size-large\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/000043250006-836x1024.jpg\" alt=\"\" width=\"640\" height=\"784\" />\r\n\r\n \r\n\r\n<img class=\"alignleft wp-image-365 size-large\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/12/DSC_0349-1024x576.jpg\" alt=\"\" width=\"640\" height=\"360\" />\r\n\r\nStocking all your daily needs, including premium oils from Motorex, Maxima, and Belray, Yuasa batteries, K&N filters, NGK plugs, Liquid Performance chemicals and S100 cleaners in our clean, bright, and hip showroom.\r\n\r\nStop by anytime and talk moto or have your bike\'s oil changed while listening to Coltrane playing on vinyl, watch \"The world\'s Fastest Indian\" or Dana Brown\'s \"On any Sunday\", or enjoy our free guest wifi.','About','','inherit','closed','closed','','38-revision-v1','','','2017-12-12 21:56:53','2017-12-12 21:56:53','',38,'http://stdcycle.com/company/2017/12/12/38-revision-v1/',0,'revision','',0),(368,1,'2017-12-12 21:58:38','2017-12-12 21:58:38','Standard Cycle Company is a complete service center and retail store for all motorcycles. Located in Berkeley Heights, right at the foothills of some of the best riding in New Jersey. With over 20 years professional experience in the powersports industry, along with various forms of modern and vintage racing. Utilizing the latest in technology in repair and fabrication equipment we can repair, maintain, and modify all American, metric, sport, cruiser, dirt, racing motorcycles and atv\'s.\r\n\r\n<img class=\"wp-image-202 size-large aligncenter\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/000043250006-836x1024.jpg\" alt=\"\" width=\"640\" height=\"784\" />\r\n\r\n \r\n\r\n<img class=\"alignleft wp-image-365 size-large\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/12/DSC_0349-1024x576.jpg\" alt=\"\" width=\"640\" height=\"360\" />\r\n\r\nStocking all your daily needs, including premium oils from Motorex, Maxima, and Belray, Yuasa batteries, K&N filters, NGK plugs, Liquid Performance chemicals and S100 cleaners in our clean, bright, and hip showroom.\r\n\r\nStop by anytime and talk moto or have your bike\'s oil changed while listening to Coltrane playing on vinyl, watch \"The world\'s Fastest Indian\" or Dana Brown\'s \"On any Sunday\", or enjoy our free guest wifi.','About','','inherit','closed','closed','','38-revision-v1','','','2017-12-12 21:58:38','2017-12-12 21:58:38','',38,'http://stdcycle.com/company/2017/12/12/38-revision-v1/',0,'revision','',0),(369,1,'2017-12-12 22:01:10','2017-12-12 22:01:10','Standard Cycle Company is a complete service center and retail store for all motorcycles. Located in Berkeley Heights, right at the foothills of some of the best riding in New Jersey. With over 20 years professional experience in the powersports industry, along with various forms of modern and vintage racing. Utilizing the latest in technology in repair and fabrication equipment we can repair, maintain, and modify all American, metric, sport, cruiser, dirt, racing motorcycles and atv\'s.\r\n\r\nStocking all your daily needs, including premium oils from Motorex, Maxima, and Belray, Yuasa batteries, K&N filters, NGK plugs, Liquid Performance chemicals and S100 cleaners in our clean, bright, and hip showroom.\r\n\r\nStop by anytime and talk moto or have your bike\'s oil changed while listening to Coltrane playing on vinyl, watch \"The world\'s Fastest Indian\" or Dana Brown\'s \"On any Sunday\", or enjoy our free guest wifi.\r\n\r\n<img class=\"wp-image-202 size-large alignleft\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/000043250006-836x1024.jpg\" alt=\"\" width=\"640\" height=\"784\" />\r\n\r\n \r\n\r\n<img class=\"wp-image-365 size-large alignright\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/12/DSC_0349-1024x576.jpg\" alt=\"\" width=\"640\" height=\"360\" />\r\n\r\n ','About','','inherit','closed','closed','','38-revision-v1','','','2017-12-12 22:01:10','2017-12-12 22:01:10','',38,'http://stdcycle.com/company/2017/12/12/38-revision-v1/',0,'revision','',0),(370,1,'2017-12-13 18:50:44','2017-12-13 18:50:44','','P1080413','','inherit','open','closed','','p1080413','','','2017-12-13 18:50:44','2017-12-13 18:50:44','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080413.jpg',0,'attachment','image/jpeg',0),(371,1,'2017-12-13 18:57:20','2017-12-13 18:57:20','','P1080163','','inherit','open','closed','','p1080163','','','2017-12-13 18:57:20','2017-12-13 18:57:20','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080163.jpg',0,'attachment','image/jpeg',0),(372,1,'2017-12-13 19:13:03','2017-12-13 19:13:03','','P1080446','','inherit','open','closed','','p1080446','','','2017-12-13 19:13:03','2017-12-13 19:13:03','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080446.jpg',0,'attachment','image/jpeg',0),(373,1,'2017-12-13 19:16:22','2017-12-13 19:16:22','','P1080362','','inherit','open','closed','','p1080362','','','2017-12-13 19:16:22','2017-12-13 19:16:22','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080362.jpg',0,'attachment','image/jpeg',0),(374,1,'2017-12-13 19:34:17','2017-12-13 19:34:17','','P1080446','','inherit','open','closed','','p1080446-2','','','2017-12-13 19:34:17','2017-12-13 19:34:17','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080446-1.jpg',0,'attachment','image/jpeg',0),(375,1,'2017-12-13 19:37:05','2017-12-13 19:37:05','','P1080277','','inherit','open','closed','','p1080277','','','2017-12-13 19:37:05','2017-12-13 19:37:05','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080277.jpg',0,'attachment','image/jpeg',0),(376,1,'2017-12-13 19:38:15','2017-12-13 19:38:15','<span class=\"text_exposed_show\"> We offer dyno tuning for all two wheeled vehicles on our Dynojet 250i eddy current and load controlled dynamometer. Being a Certified Dynojet tuning center and utilizing Dynojet\'s latest Dynoware RT package, we can ensured the best possible<img class=\"alignleft size-large wp-image-370\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/12/P1080413-1024x768.jpg\" alt=\"\" width=\"640\" height=\"480\" /><img class=\"alignleft size-large wp-image-341\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/12/STD6-4-683x1024.jpg\" alt=\"\" width=\"640\" height=\"960\" /> data logging and the most accurate tune for your <img class=\"alignleft size-large wp-image-374\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/12/P1080446-1-768x1024.jpg\" alt=\"\" width=\"640\" height=\"853\" /> <img class=\"alignleft size-large wp-image-375\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/12/P1080277-768x1024.jpg\" alt=\"\" width=\"640\" height=\"853\" />motorcycle.<img class=\"alignleft size-large wp-image-337\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/12/STD6-3-683x1024.jpg\" alt=\"\" width=\"640\" height=\"960\" /><img class=\"alignleft size-large wp-image-326\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/12/P1080483-768x1024.jpg\" alt=\"\" width=\"640\" height=\"853\" /></span>\r\n\r\n<img class=\"alignleft size-large wp-image-340\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/12/STD10-7-683x1024.jpg\" alt=\"\" width=\"640\" height=\"960\" />','Dyno Tuning','','inherit','closed','closed','','180-revision-v1','','','2017-12-13 19:38:15','2017-12-13 19:38:15','',180,'http://stdcycle.com/company/2017/12/13/180-revision-v1/',0,'revision','',0),(377,1,'2017-12-13 19:43:23','2017-12-13 19:43:23','','P1080086','','inherit','open','closed','','p1080086','','','2017-12-13 19:43:23','2017-12-13 19:43:23','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080086.jpg',0,'attachment','image/jpeg',0),(378,1,'2017-12-13 19:43:52','2017-12-13 19:43:52','','P1080163','','inherit','open','closed','','p1080163-2','','','2017-12-13 19:43:52','2017-12-13 19:43:52','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080163-1.jpg',0,'attachment','image/jpeg',0),(379,1,'2017-12-13 19:44:19','2017-12-13 19:44:19','','P1080234','','inherit','open','closed','','p1080234','','','2017-12-13 19:44:19','2017-12-13 19:44:19','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080234.jpg',0,'attachment','image/jpeg',0),(380,1,'2017-12-13 19:44:48','2017-12-13 19:44:48','','P1080256','','inherit','open','closed','','p1080256','','','2017-12-13 19:44:48','2017-12-13 19:44:48','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080256.jpg',0,'attachment','image/jpeg',0),(381,1,'2017-12-13 19:45:14','2017-12-13 19:45:14','','P1080347','','inherit','open','closed','','p1080347','','','2017-12-13 19:45:14','2017-12-13 19:45:14','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080347.jpg',0,'attachment','image/jpeg',0),(382,1,'2017-12-13 19:45:51','2017-12-13 19:45:51','','P1080444','','inherit','open','closed','','p1080444','','','2017-12-13 19:45:51','2017-12-13 19:45:51','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080444.jpg',0,'attachment','image/jpeg',0),(383,1,'2017-12-13 20:20:48','2017-12-13 20:20:48','','dynojet','','inherit','open','closed','','dynojet','','','2017-12-13 20:20:48','2017-12-13 20:20:48','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/dynojet.png',0,'attachment','image/png',0),(384,1,'2017-12-13 20:42:40','2017-12-13 20:42:40','<img class=\"alignleft size-medium wp-image-275\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/dyno-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\nStandard Cycle Company has over 15 years tuning experience utilizing chassis dynamometers and various on board data acquisition systems, along with real world racing experience in various racing disciplines. We have completed and keep up to date with Dynojet tuning and S&S Cycle VFi stand alone ecu certifications.\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">We offer dyno tuning for all two wheeled vehicles on our Dynoware RT powered, Dynojet, 250i eddy current and load controlled dynamometer in our custom designed climate controlled and sound attenuating dyno cell. </span><span class=\"text_exposed_show\">Utilizing Dynojet\'s latest Dynoware RT package</span> we can ensure the most accurate data collection and the knowledge and experience to get the best possible tune for your street, track or dirt bike</p>\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">Our enclosed dyno cell has been engineered to ensure the cleanest ambient air possible utilizing a sophisticated whole cell exhaust extraction system with a filtered fresh air inlet. Controlling the air inside the cell provides the motorcycle being tuned with air that is free from exhaust fumes that can make its way back into the the intake tract along with removing the large amounts of heat created from the motorcycle engine and eddy current load unit. This recycling of exhaust gases into the intake and excessive room heat in non environment controlled tuning areas causes errors in data collection while tuning and makes an accurate tune that performs in the real world difficult, if not impossible. </span></p>\r\nStandard Cycle has had the honor of being trusted tuners of multiple race winning motocross, road course, drag and national LSR record holding motorcycles','Dyno Tuning','','inherit','closed','closed','','180-revision-v1','','','2017-12-13 20:42:40','2017-12-13 20:42:40','',180,'http://stdcycle.com/company/2017/12/13/180-revision-v1/',0,'revision','',0),(385,1,'2017-12-13 20:44:10','2017-12-13 20:44:10','<img class=\"alignleft size-medium wp-image-275\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/dyno-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\nStandard Cycle Company has over 15 years tuning experience utilizing chassis dynamometers and various on board data acquisition systems, along with real world racing experience in various racing disciplines. We have completed and keep up to date with Dynojet tuning and S&S Cycle VFi stand alone ecu certifications.\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">We offer dyno tuning for all two wheeled vehicles on our Dynoware RT powered, Dynojet, 250i eddy current and load controlled dynamometer in our custom designed climate controlled and sound attenuating dyno cell. </span><span class=\"text_exposed_show\">Utilizing Dynojet\'s latest Dynoware RT package</span> we can ensure the most accurate data collection and the knowledge and experience to get the best possible tune for your street, track or dirt bike</p>\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">Our enclosed dyno cell has been engineered to ensure the cleanest ambient air possible utilizing a sophisticated whole cell exhaust extraction system with a filtered fresh air inlet. Controlling the air inside the cell provides the motorcycle being tuned with air that is free from exhaust fumes that can make its way back into the the intake tract along with removing the large amounts of heat created from the motorcycle engine and eddy current load unit. This recycling of exhaust gases into the intake and excessive room heat in non environment controlled tuning areas causes errors in data collection while tuning and makes an accurate tune that performs in the real world difficult, if not impossible. </span></p>\r\nStandard Cycle has had the honor of being trusted tuners for multiple race winning motocross, road course, drag and national LSR record holding motorcycles','Dyno Tuning','','inherit','closed','closed','','180-revision-v1','','','2017-12-13 20:44:10','2017-12-13 20:44:10','',180,'http://stdcycle.com/company/2017/12/13/180-revision-v1/',0,'revision','',0),(386,1,'2017-12-13 20:58:13','2017-12-13 20:58:13','<img class=\"alignleft size-medium wp-image-275\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/dyno-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\nStandard Cycle Company has over 15 years tuning experience utilizing chassis dynamometers and various on board data acquisition systems, along with real world racing experience in various racing disciplines. We have completed and keep up to date with Dynojet tuning and S&S Cycle VFi stand alone ecu certifications.\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">We offer dyno tuning for all two wheeled vehicles on our Dynoware RT powered, Dynojet, 250i eddy current and load controlled dynamometer in our custom designed climate controlled and sound attenuating dyno cell. </span><span class=\"text_exposed_show\">Utilizing Dynojet\'s latest Dynoware RT package</span> we can ensure the most accurate data collection and the knowledge and experience to get the best possible tune for your street, track or dirt bike</p>\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">Our enclosed dyno cell has been engineered to ensure the cleanest ambient air possible utilizing a sophisticated whole cell exhaust extraction system with a filtered fresh air inlet. Controlling the air inside the cell provides the motorcycle being tuned with air that is free from exhaust fumes that can make its way back into the the intake tract along with removing the large amounts of heat created from the motorcycle engine and eddy current load unit. This recycling of exhaust gases into the intake and excessive room heat in non environment controlled tuning areas causes errors in data collection while tuning and makes an accurate tune that performs in the real world difficult, if not impossible. </span></p>\r\nStandard Cycle has had the honor of being trusted tuners for multiple race winning motocross, road course, drag and national LSR record holding motorcycles.\r\n<p style=\"text-align: center;\"><strong>We offer</strong></p>\r\n\r\n<ul>\r\n <li style=\"text-align: center;\">Carburetor tuning for various different carb companies, including, Linkert, Amal, Mikuni, Keihin, Lectron, S&S among others.</li>\r\n <li style=\"text-align: center;\">Dynojet Power Commander and ignition module tuning</li>\r\n <li style=\"text-align: center;\">Dynojet Power Vision and Power Vision CX ecu flash tuning for Harley and Victory/Indian applications</li>\r\n <li style=\"text-align: center;\">Bazzaz product tuning</li>\r\n <li style=\"text-align: center;\">S&S VFi stand alone ECU tuning</li>\r\n <li style=\"text-align: center;\">Various stand alone ignition products</li>\r\n <li style=\"text-align: center;\">Factory ECU tuning for select Suzuki and Triumph models with more applications becoming available in the future.</li>\r\n <li style=\"text-align: center;\">Progressive nitrous and turbo boost controller tuning</li>\r\n <li style=\"text-align: center;\">Microtech secondary fueling system tuning for boosted applications</li>\r\n</ul>','Dyno Tuning','','inherit','closed','closed','','180-revision-v1','','','2017-12-13 20:58:13','2017-12-13 20:58:13','',180,'http://stdcycle.com/company/2017/12/13/180-revision-v1/',0,'revision','',0),(387,1,'2017-12-13 20:59:25','2017-12-13 20:59:25','<img class=\"alignleft size-medium wp-image-275\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/dyno-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\nStandard Cycle Company has over 15 years tuning experience utilizing chassis dynamometers and various on board data acquisition systems, along with real world racing experience in many different racing disciplines. We have completed and keep up to date with Dynojet tuning and S&S Cycle VFi stand alone ecu certifications.\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">We offer dyno tuning for all two wheeled vehicles on our Dynoware RT powered, Dynojet, 250i eddy current and load controlled dynamometer in our custom designed climate controlled and sound attenuating dyno cell. </span><span class=\"text_exposed_show\">Utilizing Dynojet\'s latest Dynoware RT package</span> we can ensure the most accurate data collection and the knowledge and experience to get the best possible tune for your street, track or dirt bike</p>\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">Our enclosed dyno cell has been engineered to ensure the cleanest ambient air possible utilizing a sophisticated whole cell exhaust extraction system with a filtered fresh air inlet. Controlling the air inside the cell provides the motorcycle being tuned with air that is free from exhaust fumes that can make its way back into the the intake tract along with removing the large amounts of heat created from the motorcycle engine and eddy current load unit. This recycling of exhaust gases into the intake and excessive room heat in non environment controlled tuning areas causes errors in data collection while tuning and makes an accurate tune that performs in the real world difficult, if not impossible. </span></p>\r\nStandard Cycle has had the honor of being trusted tuners for multiple race winning motocross, road course, drag and national LSR record holding motorcycles.\r\n<p style=\"text-align: center;\"><strong>We offer</strong></p>\r\n\r\n<ul>\r\n <li style=\"text-align: center;\">Carburetor tuning for various different carb companies, including, Linkert, Amal, Mikuni, Keihin, Lectron, S&S among others.</li>\r\n <li style=\"text-align: center;\">Dynojet Power Commander and ignition module tuning</li>\r\n <li style=\"text-align: center;\">Dynojet Power Vision and Power Vision CX ecu flash tuning for Harley and Victory/Indian applications</li>\r\n <li style=\"text-align: center;\">Bazzaz product tuning</li>\r\n <li style=\"text-align: center;\">S&S VFi stand alone ECU tuning</li>\r\n <li style=\"text-align: center;\">Various stand alone ignition products</li>\r\n <li style=\"text-align: center;\">Factory ECU tuning for select Suzuki and Triumph models with more applications becoming available in the future.</li>\r\n <li style=\"text-align: center;\">Progressive nitrous and turbo boost controller tuning</li>\r\n <li style=\"text-align: center;\">Microtech secondary fueling system tuning for boosted applications</li>\r\n</ul>','Dyno Tuning','','inherit','closed','closed','','180-revision-v1','','','2017-12-13 20:59:25','2017-12-13 20:59:25','',180,'http://stdcycle.com/company/2017/12/13/180-revision-v1/',0,'revision','',0),(388,1,'2017-12-13 21:03:30','2017-12-13 21:03:30','<img class=\"alignleft size-medium wp-image-275\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/dyno-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\nStandard Cycle Company has over 15 years tuning experience utilizing chassis dynamometers and various on board data acquisition systems, along with real world racing experience in many different racing disciplines. We have completed and keep up to date with Dynojet tuning and S&S Cycle VFi stand alone ecu certifications.\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">We offer dyno tuning for all two wheeled vehicles on our Dynoware RT powered, Dynojet, 250i eddy current and load controlled dynamometer in our custom designed climate controlled and sound attenuating dyno cell. </span><span class=\"text_exposed_show\">Utilizing Dynojet\'s latest Dynoware RT package</span> we can ensure the most accurate data collection and the knowledge and experience to get the best possible tune for your street, track or dirt bike</p>\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">Our enclosed dyno cell has been engineered to ensure the cleanest ambient air possible utilizing a sophisticated whole cell exhaust extraction system with a filtered fresh air inlet. Controlling the air inside the cell provides the motorcycle being tuned with air that is free from exhaust fumes that can make its way back into the the intake tract along with removing the large amounts of heat created from the motorcycle engine and eddy current load unit. This recycling of exhaust gases into the intake and excessive room heat in non environment controlled tuning areas causes errors in data collection while tuning and makes an accurate tune that performs in the real world difficult, if not impossible. </span></p>\r\nStandard Cycle has had the honor of being trusted tuners for multiple race winning motocross, road course, drag and national LSR record holding motorcycles.\r\n<p style=\"text-align: center;\"><strong>We offer</strong></p>\r\n\r\n<ul>\r\n <li style=\"text-align: center;\">Carburetor tuning for various different carb companies, including, Linkert, Amal, Mikuni, Keihin, Lectron, S&S among others.</li>\r\n <li style=\"text-align: center;\">Dynojet Power Commander and ignition module tuning</li>\r\n <li style=\"text-align: center;\">Dynojet Power Vision and Power Vision CX ecu flash tuning for Harley and Victory/Indian applications</li>\r\n <li style=\"text-align: center;\">Bazzaz product tuning</li>\r\n <li style=\"text-align: center;\">S&S VFi stand alone ECU tuning</li>\r\n <li style=\"text-align: center;\">Various stand alone ignition products</li>\r\n <li style=\"text-align: center;\">Factory ECU tuning for select Suzuki and Triumph models with more applications becoming available in the future.</li>\r\n <li style=\"text-align: center;\">Progressive nitrous and turbo boost controller tuning</li>\r\n <li style=\"text-align: center;\">Microtech secondary fueling system tuning for boosted applications</li>\r\n</ul>\r\n<img class=\"alignright size-large wp-image-380\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/12/P1080256-1024x768.jpg\" alt=\"\" width=\"640\" height=\"480\" />','Dyno Tuning','','inherit','closed','closed','','180-revision-v1','','','2017-12-13 21:03:30','2017-12-13 21:03:30','',180,'http://stdcycle.com/company/2017/12/13/180-revision-v1/',0,'revision','',0),(389,1,'2017-12-13 21:08:52','2017-12-13 21:08:52','<img class=\"alignleft size-medium wp-image-275\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/dyno-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\nStandard Cycle Company has over 15 years tuning experience utilizing chassis dynamometers and various on board data acquisition systems, along with real world racing experience in many different racing disciplines. We have completed and keep up to date with Dynojet tuning and S&S Cycle VFi stand alone ecu certifications.\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">We offer dyno tuning for all two wheeled vehicles on our Dynoware RT powered, Dynojet, 250i eddy current and load controlled dynamometer in our custom designed climate controlled and sound attenuating dyno cell. </span><span class=\"text_exposed_show\">Utilizing Dynojet\'s latest Dynoware RT package</span> we can ensure the most accurate data collection and the knowledge and experience to get the best possible tune for your street, track or dirt bike</p>\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">Our enclosed dyno cell has been engineered to ensure the cleanest ambient air possible utilizing a sophisticated whole cell exhaust extraction system with a filtered fresh air inlet. Controlling the air inside the cell provides the motorcycle being tuned with air that is free from exhaust fumes that can make its way back into the the intake tract along with removing the large amounts of heat created from the motorcycle engine and eddy current load unit. This recycling of exhaust gases into the intake and excessive room heat in non environment controlled tuning areas causes errors in data collection while tuning and makes an accurate tune that performs in the real world difficult, if not impossible. </span></p>\r\nStandard Cycle has had the honor of being trusted tuners for multiple race winning motocross, road course, drag and national LSR record holding motorcycles.\r\n<p style=\"text-align: center;\"><strong>We offer</strong></p>\r\n\r\n<ul>\r\n <li style=\"text-align: center;\">Carburetor tuning for various different carb companies, including, Linkert, Amal, Mikuni, Keihin, Lectron, S&S among others.</li>\r\n <li style=\"text-align: center;\">Dynojet Power Commander and ignition module tuning</li>\r\n <li style=\"text-align: center;\">Dynojet Power Vision and Power Vision CX ecu flash tuning for Harley and Victory/Indian applications</li>\r\n <li style=\"text-align: center;\">Bazzaz product tuning</li>\r\n <li style=\"text-align: center;\">S&S VFi stand alone ECU tuning</li>\r\n <li style=\"text-align: center;\">Various stand alone ignition products</li>\r\n <li style=\"text-align: center;\">Factory ECU tuning for select Suzuki and Triumph models with more applications becoming available in the future.</li>\r\n <li style=\"text-align: center;\">Progressive nitrous and turbo boost controller tuning</li>\r\n <li style=\"text-align: center;\">Microtech secondary fueling system tuning for boosted applications</li>\r\n</ul>\r\n \r\n\r\n[gallery size=\"large\" ids=\"379,378,381,382,380,377,375,374,370,373,340,341,337,321,320\"]','Dyno Tuning','','inherit','closed','closed','','180-revision-v1','','','2017-12-13 21:08:52','2017-12-13 21:08:52','',180,'http://stdcycle.com/company/2017/12/13/180-revision-v1/',0,'revision','',0),(390,1,'2017-12-13 21:12:44','2017-12-13 21:12:44','','P1080111','','inherit','open','closed','','p1080111','','','2017-12-13 21:12:44','2017-12-13 21:12:44','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080111.jpg',0,'attachment','image/jpeg',0),(391,1,'2017-12-13 21:13:13','2017-12-13 21:13:13','','P1080113','','inherit','open','closed','','p1080113','','','2017-12-13 21:13:13','2017-12-13 21:13:13','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080113.jpg',0,'attachment','image/jpeg',0),(392,1,'2017-12-13 21:13:39','2017-12-13 21:13:39','','P1080126','','inherit','open','closed','','p1080126','','','2017-12-13 21:13:39','2017-12-13 21:13:39','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080126.jpg',0,'attachment','image/jpeg',0),(393,1,'2017-12-13 21:14:13','2017-12-13 21:14:13','','P1080136','','inherit','open','closed','','p1080136','','','2017-12-13 21:14:13','2017-12-13 21:14:13','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080136.jpg',0,'attachment','image/jpeg',0),(394,1,'2017-12-13 21:14:46','2017-12-13 21:14:46','','P1080186','','inherit','open','closed','','p1080186','','','2017-12-13 21:14:46','2017-12-13 21:14:46','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080186.jpg',0,'attachment','image/jpeg',0),(395,1,'2017-12-13 21:15:14','2017-12-13 21:15:14','','P1080194','','inherit','open','closed','','p1080194','','','2017-12-13 21:15:14','2017-12-13 21:15:14','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080194.jpg',0,'attachment','image/jpeg',0),(396,1,'2017-12-13 21:15:40','2017-12-13 21:15:40','','P1080195','','inherit','open','closed','','p1080195','','','2017-12-13 21:15:40','2017-12-13 21:15:40','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080195.jpg',0,'attachment','image/jpeg',0),(397,1,'2017-12-13 21:16:05','2017-12-13 21:16:05','','P1080197','','inherit','open','closed','','p1080197','','','2017-12-13 21:16:05','2017-12-13 21:16:05','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080197.jpg',0,'attachment','image/jpeg',0),(398,1,'2017-12-13 21:16:38','2017-12-13 21:16:38','','P1080199','','inherit','open','closed','','p1080199','','','2017-12-13 21:16:38','2017-12-13 21:16:38','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080199.jpg',0,'attachment','image/jpeg',0),(399,1,'2017-12-13 21:17:18','2017-12-13 21:17:18','','P1080212','','inherit','open','closed','','p1080212','','','2017-12-13 21:17:18','2017-12-13 21:17:18','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080212.jpg',0,'attachment','image/jpeg',0),(400,1,'2017-12-13 21:17:52','2017-12-13 21:17:52','','P1080215','','inherit','open','closed','','p1080215','','','2017-12-13 21:17:52','2017-12-13 21:17:52','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080215.jpg',0,'attachment','image/jpeg',0),(401,1,'2017-12-13 21:18:20','2017-12-13 21:18:20','','P1080221','','inherit','open','closed','','p1080221','','','2017-12-13 21:18:20','2017-12-13 21:18:20','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080221.jpg',0,'attachment','image/jpeg',0),(402,1,'2017-12-13 21:18:51','2017-12-13 21:18:51','','P1080226','','inherit','open','closed','','p1080226','','','2017-12-13 21:18:51','2017-12-13 21:18:51','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080226.jpg',0,'attachment','image/jpeg',0),(403,1,'2017-12-13 21:19:20','2017-12-13 21:19:20','','P1080254','','inherit','open','closed','','p1080254','','','2017-12-13 21:19:20','2017-12-13 21:19:20','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080254.jpg',0,'attachment','image/jpeg',0),(404,1,'2017-12-13 21:19:48','2017-12-13 21:19:48','','P1080263','','inherit','open','closed','','p1080263','','','2017-12-13 21:19:48','2017-12-13 21:19:48','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080263.jpg',0,'attachment','image/jpeg',0),(405,1,'2017-12-13 21:20:17','2017-12-13 21:20:17','','P1080269','','inherit','open','closed','','p1080269','','','2017-12-13 21:20:17','2017-12-13 21:20:17','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080269.jpg',0,'attachment','image/jpeg',0),(406,1,'2017-12-13 21:20:42','2017-12-13 21:20:42','','P1080276','','inherit','open','closed','','p1080276','','','2017-12-13 21:20:42','2017-12-13 21:20:42','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080276.jpg',0,'attachment','image/jpeg',0),(407,1,'2017-12-13 21:21:11','2017-12-13 21:21:11','','P1080305','','inherit','open','closed','','p1080305','','','2017-12-13 21:21:11','2017-12-13 21:21:11','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080305.jpg',0,'attachment','image/jpeg',0),(408,1,'2017-12-13 21:21:41','2017-12-13 21:21:41','','P1080330','','inherit','open','closed','','p1080330','','','2017-12-13 21:21:41','2017-12-13 21:21:41','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080330.jpg',0,'attachment','image/jpeg',0),(409,1,'2017-12-13 21:22:10','2017-12-13 21:22:10','','P1080353','','inherit','open','closed','','p1080353','','','2017-12-13 21:22:10','2017-12-13 21:22:10','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080353.jpg',0,'attachment','image/jpeg',0),(410,1,'2017-12-13 21:22:39','2017-12-13 21:22:39','','P1080357','','inherit','open','closed','','p1080357','','','2017-12-13 21:22:39','2017-12-13 21:22:39','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080357.jpg',0,'attachment','image/jpeg',0),(411,1,'2017-12-13 21:23:04','2017-12-13 21:23:04','','P1080447','','inherit','open','closed','','p1080447','','','2017-12-13 21:23:04','2017-12-13 21:23:04','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080447.jpg',0,'attachment','image/jpeg',0),(412,1,'2017-12-13 21:23:35','2017-12-13 21:23:35','','P1080480','','inherit','open','closed','','p1080480','','','2017-12-13 21:23:35','2017-12-13 21:23:35','',180,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080480.jpg',0,'attachment','image/jpeg',0),(413,1,'2017-12-14 15:38:00','2017-12-14 15:38:00','<img class=\"alignleft size-medium wp-image-275\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/dyno-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\nStandard Cycle Company has over 15 years tuning experience utilizing chassis dynamometers and various on board data acquisition systems, along with real world racing experience in many different racing disciplines. We have completed and keep up to date with Dynojet tuning and S&S Cycle VFi stand alone ecu certifications.\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">We offer dyno tuning for all two wheeled vehicles on our Dynoware RT powered, Dynojet, 250i eddy current and load controlled dynamometer in our custom designed climate controlled and sound attenuating dyno cell. </span><span class=\"text_exposed_show\">Utilizing Dynojet\'s latest Dynoware RT package</span> we can ensure the most accurate data collection and the knowledge and experience to get the best possible tune for your street, track or dirt bike</p>\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">Our enclosed dyno cell has been engineered to ensure the cleanest ambient air possible utilizing a sophisticated whole cell exhaust extraction system with a filtered fresh air inlet. Controlling the air inside the cell provides the motorcycle being tuned with air that is free from exhaust fumes that can make its way back into the the intake tract along with removing the large amounts of heat created from the motorcycle engine and eddy current load unit. This recycling of exhaust gases into the intake and excessive room heat in non environment controlled tuning areas causes errors in data collection while tuning and makes an accurate tune that performs in the real world difficult, if not impossible. </span></p>\r\nStandard Cycle has had the honor of being trusted tuners for multiple race winning motocross, road course, drag and national LSR record holding motorcycles.\r\n<p style=\"text-align: center;\"><strong>We offer</strong></p>\r\n\r\n<ul>\r\n <li style=\"text-align: center;\">Carburetor tuning for various different carb companies, including, Linkert, Amal, Mikuni, Keihin, Lectron, S&S among others.</li>\r\n <li style=\"text-align: center;\">Dynojet Power Commander and ignition module tuning</li>\r\n <li style=\"text-align: center;\">Dynojet Power Vision and Power Vision CX ecu flash tuning for Harley and Victory/Indian applications</li>\r\n <li style=\"text-align: center;\">Bazzaz product tuning</li>\r\n <li style=\"text-align: center;\">S&S VFi stand alone ECU tuning</li>\r\n <li style=\"text-align: center;\">Various stand alone ignition products</li>\r\n <li style=\"text-align: center;\">Factory ECU tuning for select Suzuki and Triumph models with more applications becoming available in the future.</li>\r\n <li style=\"text-align: center;\">Progressive nitrous and turbo boost controller tuning</li>\r\n <li style=\"text-align: center;\">Microtech secondary fueling system tuning for boosted applications</li>\r\n</ul>\r\n \r\n\r\n[embed]https://youtu.be/G1O9cnGp8L8[/embed]\r\n\r\n \r\n\r\n[gallery size=\"large\" ids=\"379,378,381,382,380,377,375,374,370,373,340,341,337,321,320\"]','Dyno Tuning','','inherit','closed','closed','','180-revision-v1','','','2017-12-14 15:38:00','2017-12-14 15:38:00','',180,'http://stdcycle.com/company/2017/12/14/180-revision-v1/',0,'revision','',0),(414,1,'2017-12-14 15:43:50','2017-12-14 15:43:50','<img class=\"alignleft size-medium wp-image-275\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/dyno-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\nStandard Cycle Company has over 15 years tuning experience utilizing chassis dynamometers and various on board data acquisition systems, along with real world racing experience in many different racing disciplines. We have completed and keep up to date with Dynojet tuning and S&S Cycle VFi stand alone ecu certifications.\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">We offer dyno tuning for all two wheeled vehicles on our Dynoware RT powered, Dynojet, 250i eddy current and load controlled dynamometer in our custom designed climate controlled and sound attenuating dyno cell. </span><span class=\"text_exposed_show\">Utilizing Dynojet\'s latest Dynoware RT package</span> we can ensure the most accurate data collection and the knowledge and experience to get the best possible tune for your street, track or dirt bike</p>\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">Our enclosed dyno cell has been engineered to ensure the cleanest ambient air possible utilizing a sophisticated whole cell exhaust extraction system with a filtered fresh air inlet. Controlling the air inside the cell provides the motorcycle being tuned with air that is free from exhaust fumes that can make its way back into the the intake tract along with removing the large amounts of heat created from the motorcycle engine and eddy current load unit. This recycling of exhaust gases into the intake and excessive room heat in non environment controlled tuning areas causes errors in data collection while tuning and makes an accurate tune that performs in the real world difficult, if not impossible. </span></p>\r\nStandard Cycle has had the honor of being trusted tuners for multiple race winning motocross, road course, drag and national LSR record holding motorcycles.\r\n<p style=\"text-align: center;\"><strong>We offer</strong></p>\r\n\r\n<ul>\r\n <li style=\"text-align: center;\">Carburetor tuning for various different carb companies, including, Linkert, Amal, Mikuni, Keihin, Lectron, S&S among others.</li>\r\n <li style=\"text-align: center;\">Dynojet Power Commander and ignition module tuning</li>\r\n <li style=\"text-align: center;\">Dynojet Power Vision and Power Vision CX ecu flash tuning for Harley and Victory/Indian applications</li>\r\n <li style=\"text-align: center;\">Bazzaz product tuning</li>\r\n <li style=\"text-align: center;\">S&S VFi stand alone ECU tuning</li>\r\n <li style=\"text-align: center;\">Various stand alone ignition products</li>\r\n <li style=\"text-align: center;\">Factory ECU tuning for select Suzuki and Triumph models with more applications becoming available in the future.</li>\r\n <li style=\"text-align: center;\">Progressive nitrous and turbo boost controller tuning</li>\r\n <li style=\"text-align: center;\">Microtech secondary fueling system tuning for boosted applications</li>\r\n</ul>\r\n \r\n\r\n[embed]https://youtu.be/G1O9cnGp8L8[/embed]\r\n\r\n \r\n\r\n[gallery size=\"large\" ids=\"379,378,381,382,380,377,375,374,370,373,340,341,337,321,320,411,409,401,402,403,400,397,395,393,392,390,412\"]','Dyno Tuning','','inherit','closed','closed','','180-revision-v1','','','2017-12-14 15:43:50','2017-12-14 15:43:50','',180,'http://stdcycle.com/company/2017/12/14/180-revision-v1/',0,'revision','',0),(415,1,'2017-12-14 15:50:48','2017-12-14 15:50:48','<img class=\"alignleft size-medium wp-image-275\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/dyno-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\nStandard Cycle Company has over 15 years tuning experience utilizing chassis dynamometers and various on board data acquisition systems, along with real world racing experience in many different racing disciplines. We have completed and keep up to date with Dynojet tuning and S&S Cycle VFi stand alone ecu certifications.\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">We offer dyno tuning for all two wheeled vehicles on our Dynoware RT powered, Dynojet, 250i eddy current and load controlled dynamometer in our custom designed climate controlled and sound attenuating dyno cell. </span><span class=\"text_exposed_show\">Utilizing Dynojet\'s latest Dynoware RT package</span> we can ensure the most accurate data collection and the knowledge and experience to get the best possible tune for your street, track or dirt bike</p>\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">Our enclosed dyno cell has been engineered to ensure the cleanest ambient air possible utilizing a sophisticated whole cell exhaust extraction system with a filtered fresh air inlet. Controlling the air inside the cell provides the motorcycle being tuned with air that is free from exhaust fumes that can make its way back into the the intake tract along with removing the large amounts of heat created from the motorcycle engine and eddy current load unit. This recycling of exhaust gases into the intake and excessive room heat in non environment controlled tuning areas causes errors in data collection while tuning and makes an accurate tune that performs in the real world difficult, if not impossible. </span></p>\r\nStandard Cycle has had the honor of being trusted tuners for multiple race winning motocross, road course, drag and national LSR record holding motorcycles.\r\n<p style=\"text-align: center;\"><strong>We offer</strong></p>\r\n\r\n<ul>\r\n <li style=\"text-align: center;\">Carburetor tuning for various different carb companies, including, Linkert, Amal, Mikuni, Keihin, Lectron, S&S among others.</li>\r\n <li style=\"text-align: center;\">Dynojet Power Commander and ignition module tuning</li>\r\n <li style=\"text-align: center;\">Dynojet Power Vision and Power Vision CX ecu flash tuning for Harley and Victory/Indian applications</li>\r\n <li style=\"text-align: center;\">Bazzaz product tuning</li>\r\n <li style=\"text-align: center;\">S&S VFi stand alone ECU tuning</li>\r\n <li style=\"text-align: center;\">Various stand alone ignition products</li>\r\n <li style=\"text-align: center;\">Factory ECU tuning for select Suzuki and Triumph models with more applications becoming available in the future.</li>\r\n <li style=\"text-align: center;\">Progressive nitrous and turbo boost controller tuning</li>\r\n <li style=\"text-align: center;\">Microtech secondary fueling system tuning for boosted applications</li>\r\n</ul>\r\n \r\n\r\n[embed]https://youtu.be/G1O9cnGp8L8[/embed]\r\n\r\n \r\n\r\n[gallery size=\"large\" ids=\"379,411,378,412,381,382,401,402,380,397,392,377,375,390,374,370,373,340,341,337,403,321,320,409,400,395,393\"]','Dyno Tuning','','inherit','closed','closed','','180-revision-v1','','','2017-12-14 15:50:48','2017-12-14 15:50:48','',180,'http://stdcycle.com/company/2017/12/14/180-revision-v1/',0,'revision','',0),(416,1,'2017-12-14 15:57:39','2017-12-14 15:57:39','<img class=\"alignleft size-medium wp-image-275\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/dyno-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\nStandard Cycle Company has over 15 years tuning experience utilizing chassis dynamometers and various on board data acquisition systems, along with real world racing experience in many different racing disciplines. We have completed and keep up to date with Dynojet tuning and S&S Cycle VFi stand alone ecu certifications.\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">We offer dyno tuning for all two wheeled vehicles on our Dynoware RT powered, Dynojet, 250i eddy current and load controlled dynamometer in our custom designed climate controlled and sound attenuating dyno cell. </span><span class=\"text_exposed_show\">Utilizing Dynojet\'s latest Dynoware RT package</span> we can ensure the most accurate data collection and the knowledge and experience to get the best possible tune for your street, track or dirt bike</p>\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">Our enclosed dyno cell has been engineered to ensure the cleanest ambient air possible utilizing a sophisticated whole cell exhaust extraction system with a filtered fresh air inlet. Controlling the air inside the cell provides the motorcycle being tuned with air that is free from exhaust fumes that can make its way back into the the intake tract along with removing the large amounts of heat created from the motorcycle engine and eddy current load unit. This recycling of exhaust gases into the intake and excessive room heat in non environment controlled tuning areas causes errors in data collection while tuning and makes an accurate tune that performs in the real world difficult, if not impossible. </span></p>\r\nStandard Cycle has had the honor of being trusted tuners for multiple race winning motocross, road course, drag and national LSR record holding motorcycles.\r\n<p style=\"text-align: center;\"><strong>We offer</strong></p>\r\n\r\n<ul>\r\n <li style=\"text-align: center;\">Carburetor tuning for various different carb companies, including, Linkert, Amal, Mikuni, Keihin, Lectron, S&S among others.</li>\r\n <li style=\"text-align: center;\">Dynojet Power Commander and ignition module tuning</li>\r\n <li style=\"text-align: center;\">Dynojet Power Vision and Power Vision CX ecu flash tuning for Harley and Victory/Indian applications</li>\r\n <li style=\"text-align: center;\">Bazzaz product tuning</li>\r\n <li style=\"text-align: center;\">S&S VFi stand alone ECU tuning</li>\r\n <li style=\"text-align: center;\">Various stand alone ignition products</li>\r\n <li style=\"text-align: center;\">Factory ECU tuning for select Suzuki and Triumph models with more applications becoming available in the future.</li>\r\n <li style=\"text-align: center;\">Progressive nitrous and turbo boost controller tuning</li>\r\n <li style=\"text-align: center;\">Microtech secondary fueling system tuning for boosted applications</li>\r\n</ul>\r\n \r\n\r\n[embed]https://youtu.be/G1O9cnGp8L8[/embed]\r\n\r\n \r\n\r\n[gallery size=\"large\" link=\"file\" ids=\"379,411,378,412,381,382,401,402,380,397,392,377,375,390,374,370,373,340,341,337,403,321,320,409,400,395,393\"]','Dyno Tuning','','inherit','closed','closed','','180-revision-v1','','','2017-12-14 15:57:39','2017-12-14 15:57:39','',180,'http://stdcycle.com/company/2017/12/14/180-revision-v1/',0,'revision','',0),(417,1,'2017-12-14 16:23:49','2017-12-14 16:23:49','{\n \"sidebars_widgets[front-page-about-sidebar]\": {\n \"value\": [\n \"illdy_skill-3\"\n ],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2017-12-14 16:23:49\"\n },\n \"illdy::illdy_about_general_title\": {\n \"value\": \"About\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2017-12-14 16:23:49\"\n },\n \"widget_illdy_skill[3]\": {\n \"value\": [],\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2017-12-14 16:23:49\"\n }\n}','','','trash','closed','closed','','3566ba9f-1569-4f75-90ae-6d965489a4be','','','2017-12-14 16:23:49','2017-12-14 16:23:49','',0,'http://stdcycle.com/company/2017/12/14/3566ba9f-1569-4f75-90ae-6d965489a4be/',0,'customize_changeset','',0),(418,1,'2017-12-14 16:27:58','2017-12-14 16:27:58','{\n \"illdy::illdy_about_general_entry\": {\n \"value\": \"Standard Cycle Company is a complete service center and retail store for all motorcycles. Located in Berkeley Heights, right at the foothills of some of the best riding in New Jersey. With over 20 years professional experience in the powersports industry, along with various forms of modern and vintage racing. Utilizing the latest in technology in repair and fabrication equipment we can repair, maintain, and modify all American, metric, sport, cruiser, dirt, racing motorcycles and atv\\u2019s.\\n\\nStocking all your daily needs, including premium oils from Motorex, Maxima, and Belray, Yuasa batteries, K&N filters, NGK plugs, Liquid Performance chemicals and S100 cleaners in our clean, bright, and hip showroom.\\n\\nStop by anytime and talk moto or have your bike\\u2019s oil changed while listening to Coltrane playing on vinyl, watch \\u201cThe world\\u2019s Fastest Indian\\u201d or Dana Brown\\u2019s \\u201cOn any Sunday\\u201d, or enjoy our free guest wifi.\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2017-12-14 16:27:47\"\n }\n}','','','trash','closed','closed','','e1baed29-f9fb-4e35-a070-906aa436a14d','','','2017-12-14 16:27:58','2017-12-14 16:27:58','',0,'http://stdcycle.com/company/?p=418',0,'customize_changeset','',0),(419,1,'2017-12-14 16:44:25','2017-12-14 16:44:25','{\n \"illdy::illdy_services_general_show\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2017-12-14 16:42:10\"\n },\n \"illdy::illdy_services_general_entry\": {\n \"value\": \"<ul>\\n \\t<li>Parts and accessories</li>\\n \\t<li>General repairs and maintenance</li>\\n \\t<li>Dyno tuning and performance modifications</li>\\n \\t<li>Race bike setup and building</li>\\n \\t<li>Welding and fabrication</li>\\n \\t<li>Vintage and antique motorcycle refurbishing and repairs</li>\\n</ul>\",\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2017-12-14 16:44:25\"\n }\n}','','','trash','closed','closed','','0c949a0d-49d7-4555-bc70-4638dfab8099','','','2017-12-14 16:44:25','2017-12-14 16:44:25','',0,'http://stdcycle.com/company/?p=419',0,'customize_changeset','',0),(420,1,'2017-12-14 16:45:35','2017-12-14 16:45:35','{\n \"illdy::illdy_services_general_show\": {\n \"value\": false,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2017-12-14 16:45:35\"\n }\n}','','','trash','closed','closed','','964ab449-e539-479d-9cbc-9ccda34278d9','','','2017-12-14 16:45:35','2017-12-14 16:45:35','',0,'http://stdcycle.com/company/2017/12/14/964ab449-e539-479d-9cbc-9ccda34278d9/',0,'customize_changeset','',0),(421,1,'2017-12-14 16:50:17','2017-12-14 16:50:17','{\n \"illdy::illdy_preloader_enable\": {\n \"value\": true,\n \"type\": \"theme_mod\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2017-12-14 16:50:17\"\n }\n}','','','trash','closed','closed','','2167f125-3f04-42b3-9c77-c42abda33e76','','','2017-12-14 16:50:17','2017-12-14 16:50:17','',0,'http://stdcycle.com/company/2017/12/14/2167f125-3f04-42b3-9c77-c42abda33e76/',0,'customize_changeset','',0),(422,1,'2017-12-14 16:53:59','2017-12-14 16:53:59','{\n \"nav_menu[3]\": {\n \"value\": {\n \"name\": \"Our story\",\n \"description\": \"\",\n \"parent\": 0,\n \"auto_add\": false\n },\n \"type\": \"nav_menu\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2017-12-14 16:53:59\"\n }\n}','','','trash','closed','closed','','52c41a8b-459d-4932-acca-97a09b21c4ae','','','2017-12-14 16:53:59','2017-12-14 16:53:59','',0,'http://stdcycle.com/company/2017/12/14/52c41a8b-459d-4932-acca-97a09b21c4ae/',0,'customize_changeset','',0),(424,1,'2017-12-14 19:18:46','2017-12-14 19:18:46','<span class=\"text_exposed_show\">Standard Cycle Co stocks all of your daily motorcycling needs here in our clean, bright and inviting showroom. Oils from companies such as Belray, Maxima, Motorex, NGK spark plugs, battery chargers and maintainers, Yuasa batteries, K&N and Hiflo oil filters, Liquid Performance fuel additives, inner tubes and tires, coolants, brake pads can all be found in stock for most popular motorcycles and ATVs.\n</span>\n\nIn addition to our stocked inventory we also special order some of the best replacement parts, accessories and riding gear from all over the globe. With 20 years of repairing, modifying, racing, and outfitting motorcycles and ATV\'s, Standard Cycle can assist you in finding the perfect items for your safety, parts to maintain and repair your own motorcycle and the perfect accessories to help build your dream vehicle.\n\nStandard Cycle stands behind all of the products we sell and can assist you before and after the sale with advice and technical support. The specialized knowledge we have acquired from personally using, installing and supporting the products we sell is one of the biggest benefits of buying from an experienced brick and mortar motorcycle shop.\n\n[gallery link=\"none\" columns=\"9\" size=\"medium\" ids=\"484,483,482,481,480,479,478,477,476,467,468,469,470,471,472,473,474,475,466,465,464,463,462,461,460,459,458,449,450,451,452,453,454,455,456,457,448,447,446,445,444,443,442,441,440,439,438,437,436\" orderby=\"rand\"]\n\n[gallery size=\"medium\" link=\"file\" ids=\"28,426,118,358,245,425\"]','Retail','','inherit','closed','closed','','184-autosave-v1','','','2017-12-14 19:18:46','2017-12-14 19:18:46','',184,'http://stdcycle.com/company/2017/12/14/184-autosave-v1/',0,'revision','',0),(425,1,'2017-12-14 17:43:19','2017-12-14 17:43:19','','2','','inherit','open','closed','','2-2','','','2017-12-14 17:43:19','2017-12-14 17:43:19','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/2.jpg',0,'attachment','image/jpeg',0),(426,1,'2017-12-14 17:43:45','2017-12-14 17:43:45','','4','','inherit','open','closed','','4','','','2017-12-14 17:43:45','2017-12-14 17:43:45','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/4.jpg',0,'attachment','image/jpeg',0),(427,1,'2017-12-14 17:48:28','2017-12-14 17:48:28','','IMG_20161206_112930','','inherit','open','closed','','img_20161206_112930','','','2017-12-14 17:52:37','2017-12-14 17:52:37','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/IMG_20161206_112930.jpg',0,'attachment','image/jpeg',0),(428,1,'2017-12-14 17:48:55','2017-12-14 17:48:55','','IMG_20170103_125635','','inherit','open','closed','','img_20170103_125635','','','2017-12-14 17:48:55','2017-12-14 17:48:55','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/IMG_20170103_125635.jpg',0,'attachment','image/jpeg',0),(429,1,'2017-12-14 17:49:18','2017-12-14 17:49:18','','P1080018','','inherit','open','closed','','p1080018','','','2017-12-14 17:49:18','2017-12-14 17:49:18','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080018.jpg',0,'attachment','image/jpeg',0),(430,1,'2017-12-14 17:49:38','2017-12-14 17:49:38','','P1080026','','inherit','open','closed','','p1080026','','','2017-12-14 17:49:38','2017-12-14 17:49:38','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080026.jpg',0,'attachment','image/jpeg',0),(431,1,'2017-12-14 17:50:02','2017-12-14 17:50:02','','P1080077','','inherit','open','closed','','p1080077','','','2017-12-14 17:50:02','2017-12-14 17:50:02','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080077.jpg',0,'attachment','image/jpeg',0),(432,1,'2017-12-14 17:50:26','2017-12-14 17:50:26','','P1080082','','inherit','open','closed','','p1080082','','','2017-12-14 17:50:26','2017-12-14 17:50:26','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080082.jpg',0,'attachment','image/jpeg',0),(433,1,'2017-12-14 17:50:50','2017-12-14 17:50:50','','P1080188','','inherit','open','closed','','p1080188','','','2017-12-14 17:50:50','2017-12-14 17:50:50','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080188.jpg',0,'attachment','image/jpeg',0),(434,1,'2017-12-14 17:51:19','2017-12-14 17:51:19','','P1080360','','inherit','open','closed','','p1080360','','','2017-12-14 17:51:19','2017-12-14 17:51:19','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080360.jpg',0,'attachment','image/jpeg',0),(435,1,'2017-12-14 17:51:46','2017-12-14 17:51:46','','P1080373','','inherit','open','closed','','p1080373','','','2017-12-14 17:51:46','2017-12-14 17:51:46','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080373.jpg',0,'attachment','image/jpeg',0),(436,1,'2017-12-14 17:56:01','2017-12-14 17:56:01','','akrapovic-logo-horizontal','','inherit','open','closed','','akrapovic-logo-horizontal','','','2017-12-14 17:56:01','2017-12-14 17:56:01','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/akrapovic-logo-horizontal.png',0,'attachment','image/png',0),(437,1,'2017-12-14 17:56:11','2017-12-14 17:56:11','','ANSR','','inherit','open','closed','','ansr','','','2017-12-14 17:56:11','2017-12-14 17:56:11','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/ANSR.png',0,'attachment','image/png',0),(438,1,'2017-12-14 17:56:22','2017-12-14 17:56:22','','bahn-logo','','inherit','open','closed','','bahn-logo','','','2017-12-14 17:56:22','2017-12-14 17:56:22','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/bahn-logo.png',0,'attachment','image/png',0),(439,1,'2017-12-14 17:56:33','2017-12-14 17:56:33','','bassani','','inherit','open','closed','','bassani','','','2017-12-14 17:56:33','2017-12-14 17:56:33','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/bassani.png',0,'attachment','image/png',0),(440,1,'2017-12-14 17:56:47','2017-12-14 17:56:47','','bazzaz','','inherit','open','closed','','bazzaz','','','2017-12-14 17:56:47','2017-12-14 17:56:47','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/bazzaz.png',0,'attachment','image/png',0),(441,1,'2017-12-14 17:56:59','2017-12-14 17:56:59','','BikeMaster','','inherit','open','closed','','bikemaster','','','2017-12-14 17:56:59','2017-12-14 17:56:59','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/BikeMaster.png',0,'attachment','image/png',0),(442,1,'2017-12-14 17:57:10','2017-12-14 17:57:10','','Bill\'s Pipes Tri Logo','','inherit','open','closed','','bills-pipes-tri-logo','','','2017-12-14 17:57:10','2017-12-14 17:57:10','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/Bills-Pipes-Tri-Logo.png',0,'attachment','image/png',0),(443,1,'2017-12-14 17:57:24','2017-12-14 17:57:24','','biltwell-logo-new','','inherit','open','closed','','biltwell-logo-new','','','2017-12-14 17:57:24','2017-12-14 17:57:24','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/biltwell-logo-new.png',0,'attachment','image/png',0),(444,1,'2017-12-14 17:57:36','2017-12-14 17:57:36','','blackbrand-bw-logo','','inherit','open','closed','','blackbrand-bw-logo','','','2017-12-14 17:57:36','2017-12-14 17:57:36','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/blackbrand-bw-logo.png',0,'attachment','image/png',0),(445,1,'2017-12-14 17:57:47','2017-12-14 17:57:47','','brocks-performance-small','','inherit','open','closed','','brocks-performance-small','','','2017-12-14 17:57:47','2017-12-14 17:57:47','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/brocks-performance-small.png',0,'attachment','image/png',0),(446,1,'2017-12-14 17:58:00','2017-12-14 17:58:00','','BST','','inherit','open','closed','','bst','','','2017-12-14 17:58:00','2017-12-14 17:58:00','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/BST.png',0,'attachment','image/png',0),(447,1,'2017-12-14 17:58:13','2017-12-14 17:58:13','','Bully','','inherit','open','closed','','bully','','','2017-12-14 17:58:13','2017-12-14 17:58:13','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/Bully.png',0,'attachment','image/png',0),(448,1,'2017-12-14 17:58:25','2017-12-14 17:58:25','','Burly','','inherit','open','closed','','burly','','','2017-12-14 17:58:25','2017-12-14 17:58:25','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/Burly.png',0,'attachment','image/png',0),(449,1,'2017-12-14 17:58:37','2017-12-14 17:58:37','','crusher-performance-logo','','inherit','open','closed','','crusher-performance-logo','','','2017-12-14 17:58:37','2017-12-14 17:58:37','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/crusher-performance-logo.png',0,'attachment','image/png',0),(450,1,'2017-12-14 17:58:48','2017-12-14 17:58:48','','Drag+Specialties+Logo','','inherit','open','closed','','dragspecialtieslogo','','','2017-12-14 17:58:48','2017-12-14 17:58:48','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/DragSpecialtiesLogo.png',0,'attachment','image/png',0),(451,1,'2017-12-14 17:59:03','2017-12-14 17:59:03','','dragon-fire','','inherit','open','closed','','dragon-fire','','','2017-12-14 17:59:03','2017-12-14 17:59:03','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/dragon-fire.png',0,'attachment','image/png',0),(452,1,'2017-12-14 17:59:14','2017-12-14 17:59:14','','dynojet','','inherit','open','closed','','dynojet-2','','','2017-12-14 17:59:14','2017-12-14 17:59:14','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/dynojet-1.png',0,'attachment','image/png',0),(453,1,'2017-12-14 17:59:29','2017-12-14 17:59:29','','FirstGear','','inherit','open','closed','','firstgear','','','2017-12-14 17:59:29','2017-12-14 17:59:29','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/FirstGear.png',0,'attachment','image/png',0),(454,1,'2017-12-14 17:59:41','2017-12-14 17:59:41','','FMFLogo1','','inherit','open','closed','','fmflogo1','','','2017-12-14 17:59:41','2017-12-14 17:59:41','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/FMFLogo1.png',0,'attachment','image/png',0),(455,1,'2017-12-14 17:59:52','2017-12-14 17:59:52','','I8IEMmvQ_400x400','','inherit','open','closed','','i8iemmvq_400x400','','','2017-12-14 17:59:52','2017-12-14 17:59:52','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/I8IEMmvQ_400x400.png',0,'attachment','image/png',0),(456,1,'2017-12-14 18:00:03','2017-12-14 18:00:03','','icon-logo-icon-logo-21','','inherit','open','closed','','icon-logo-icon-logo-21','','','2017-12-14 18:00:03','2017-12-14 18:00:03','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/icon-logo-icon-logo-21.jpg',0,'attachment','image/jpeg',0),(457,1,'2017-12-14 18:00:16','2017-12-14 18:00:16','','Kur','','inherit','open','closed','','kur','','','2017-12-14 18:00:16','2017-12-14 18:00:16','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/Kur.png',0,'attachment','image/png',0),(458,1,'2017-12-14 18:00:29','2017-12-14 18:00:29','','logo','','inherit','open','closed','','logo','','','2017-12-14 18:00:29','2017-12-14 18:00:29','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/logo.png',0,'attachment','image/png',0),(459,1,'2017-12-14 18:00:44','2017-12-14 18:00:44','','logo_big','','inherit','open','closed','','logo_big','','','2017-12-14 18:00:44','2017-12-14 18:00:44','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/logo_big.png',0,'attachment','image/png',0),(460,1,'2017-12-14 18:00:56','2017-12-14 18:00:56','','lowbrow-customs-logo-11','','inherit','open','closed','','lowbrow-customs-logo-11','','','2017-12-14 18:00:56','2017-12-14 18:00:56','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/lowbrow-customs-logo-11.png',0,'attachment','image/png',0),(461,1,'2017-12-14 18:01:11','2017-12-14 18:01:11','','moose-racing-logo','','inherit','open','closed','','moose-racing-logo','','','2017-12-14 18:01:11','2017-12-14 18:01:11','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/moose-racing-logo.jpg',0,'attachment','image/jpeg',0),(462,1,'2017-12-14 18:01:26','2017-12-14 18:01:26','','MSR','','inherit','open','closed','','msr','','','2017-12-14 18:01:26','2017-12-14 18:01:26','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/MSR.png',0,'attachment','image/png',0),(463,1,'2017-12-14 18:01:44','2017-12-14 18:01:44','','mustang','','inherit','open','closed','','mustang','','','2017-12-14 18:01:44','2017-12-14 18:01:44','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/mustang.png',0,'attachment','image/png',0),(464,1,'2017-12-14 18:02:01','2017-12-14 18:02:01','','PM','','inherit','open','closed','','pm','','','2017-12-14 18:02:01','2017-12-14 18:02:01','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/PM.png',0,'attachment','image/png',0),(465,1,'2017-12-14 18:02:15','2017-12-14 18:02:15','','progressive','','inherit','open','closed','','progressive','','','2017-12-14 18:02:15','2017-12-14 18:02:15','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/progressive.png',0,'attachment','image/png',0),(466,1,'2017-12-14 18:02:30','2017-12-14 18:02:30','','ProTaper','','inherit','open','closed','','protaper','','','2017-12-14 18:02:30','2017-12-14 18:02:30','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/ProTaper.png',0,'attachment','image/png',0),(467,1,'2017-12-14 18:02:41','2017-12-14 18:02:41','','QBoss','','inherit','open','closed','','qboss','','','2017-12-14 18:02:41','2017-12-14 18:02:41','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/QBoss.png',0,'attachment','image/png',0),(468,1,'2017-12-14 18:02:53','2017-12-14 18:02:53','','rekluse-logo-473E428D32-seeklogo.com','','inherit','open','closed','','rekluse-logo-473e428d32-seeklogo-com','','','2017-12-14 18:02:53','2017-12-14 18:02:53','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/rekluse-logo-473E428D32-seeklogo.com_.png',0,'attachment','image/png',0),(469,1,'2017-12-14 18:03:06','2017-12-14 18:03:06','','Renthal','','inherit','open','closed','','renthal','','','2017-12-14 18:03:06','2017-12-14 18:03:06','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/Renthal.png',0,'attachment','image/png',0),(470,1,'2017-12-14 18:03:17','2017-12-14 18:03:17','','RR','','inherit','open','closed','','rr','','','2017-12-14 18:03:17','2017-12-14 18:03:17','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/RR.png',0,'attachment','image/png',0),(471,1,'2017-12-14 18:03:36','2017-12-14 18:03:36','','RS','','inherit','open','closed','','rs','','','2017-12-14 18:03:36','2017-12-14 18:03:36','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/RS.png',0,'attachment','image/png',0),(472,1,'2017-12-14 18:03:55','2017-12-14 18:03:55','','skid-lid','','inherit','open','closed','','skid-lid','','','2017-12-14 18:03:55','2017-12-14 18:03:55','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/skid-lid.png',0,'attachment','image/png',0),(473,1,'2017-12-14 18:04:10','2017-12-14 18:04:10','','SS','','inherit','open','closed','','ss','','','2017-12-14 18:04:10','2017-12-14 18:04:10','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/SS.png',0,'attachment','image/png',0),(474,1,'2017-12-14 18:04:27','2017-12-14 18:04:27','','strider-logo','','inherit','open','closed','','strider-logo','','','2017-12-14 18:04:27','2017-12-14 18:04:27','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/strider-logo.png',0,'attachment','image/png',0),(475,1,'2017-12-14 18:04:47','2017-12-14 18:04:47','','tbags','','inherit','open','closed','','tbags','','','2017-12-14 18:04:47','2017-12-14 18:04:47','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/tbags.png',0,'attachment','image/png',0),(476,1,'2017-12-14 18:04:58','2017-12-14 18:04:58','','thor_thumb','','inherit','open','closed','','thor_thumb','','','2017-12-14 18:04:58','2017-12-14 18:04:58','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/thor_thumb.png',0,'attachment','image/png',0),(477,1,'2017-12-14 18:05:09','2017-12-14 18:05:09','','thor-600','','inherit','open','closed','','thor-600','','','2017-12-14 18:05:09','2017-12-14 18:05:09','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/thor-600.jpg',0,'attachment','image/jpeg',0),(478,1,'2017-12-14 18:05:22','2017-12-14 18:05:22','','tsukigi-logo','','inherit','open','closed','','tsukigi-logo','','','2017-12-14 18:05:22','2017-12-14 18:05:22','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/tsukigi-logo.png',0,'attachment','image/png',0),(479,1,'2017-12-14 18:05:34','2017-12-14 18:05:34','','VH','','inherit','open','closed','','vh','','','2017-12-14 18:05:34','2017-12-14 18:05:34','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/VH.png',0,'attachment','image/png',0),(480,1,'2017-12-14 18:05:44','2017-12-14 18:05:44','','VTwin','','inherit','open','closed','','vtwin','','','2017-12-14 18:05:44','2017-12-14 18:05:44','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/VTwin.png',0,'attachment','image/png',0),(481,1,'2017-12-14 18:05:55','2017-12-14 18:05:55','','v-twin-manufacturing','','inherit','open','closed','','v-twin-manufacturing','','','2017-12-14 18:05:55','2017-12-14 18:05:55','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/v-twin-manufacturing.png',0,'attachment','image/png',0),(482,1,'2017-12-14 18:06:07','2017-12-14 18:06:07','','worldwide-bearings-website','','inherit','open','closed','','worldwide-bearings-website','','','2017-12-14 18:06:07','2017-12-14 18:06:07','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/worldwide-bearings-website.png',0,'attachment','image/png',0),(483,1,'2017-12-14 18:06:25','2017-12-14 18:06:25','','xtreme','','inherit','open','closed','','xtreme','','','2017-12-14 18:06:25','2017-12-14 18:06:25','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/xtreme.png',0,'attachment','image/png',0),(484,1,'2017-12-14 18:06:38','2017-12-14 18:06:38','','yoshimura','','inherit','open','closed','','yoshimura','','','2017-12-14 18:06:38','2017-12-14 18:06:38','',184,'http://stdcycle.com/company/wp-content/uploads/2017/12/yoshimura.png',0,'attachment','image/png',0),(485,1,'2017-12-14 18:32:38','2017-12-14 18:32:38','<span class=\"text_exposed_show\">Standard Cycle Co stocks all of your daily motorcycling needs here in our clean, bright and inviting showroom. Oils from companies such as Belray, Maxima, Motorex, NGK spark plugs, battery chargers and maintainers, Yuasa batteries, K&N and Hiflo oil filters, Liquid Performance fuel additives, inner tubes and tires, coolants, brake pads can all be found in stock for most popular motorcycles and atv\'s\r\n</span>\r\n\r\nIn addition to our powersports inventory we also special order some of the best replacement parts, accessories and riding gear from all over the globe. We have over 20 years repairing, modifying, racing, and outfitting motorcycles and atv\'s. Standard Cycle can assist you in finding the perfect items for your safety, parts to maintain and repair your own motorcycle and the perfect accessories to help build your dream vehicle.\r\n\r\nStandard Cycle stands behind all of the products we sell and can assist you before and after the sale with advice and technical support. The specialized knowledge we have acquired from personally using, installing and supporting the products we sell is one of the biggest benefits of buying from an experienced brick and mortar motorcycle shop.\r\n\r\n[gallery link=\"none\" columns=\"9\" size=\"medium\" ids=\"484,483,482,481,480,479,478,477,476,467,468,469,470,471,472,473,474,475,466,465,464,463,462,461,460,459,458,449,450,451,452,453,454,455,456,457,448,447,446,445,444,443,442,441,440,439,438,437,436\" orderby=\"rand\"]\r\n\r\n[gallery size=\"medium\" link=\"file\" columns=\"4\" ids=\"426,118,430,425,433,428,432,434\"]','Retail','','inherit','closed','closed','','184-revision-v1','','','2017-12-14 18:32:38','2017-12-14 18:32:38','',184,'http://stdcycle.com/company/2017/12/14/184-revision-v1/',0,'revision','',0),(486,1,'2017-12-14 18:36:02','2017-12-14 18:36:02','<span class=\"text_exposed_show\">Standard Cycle Co stocks all of your daily motorcycling needs here in our clean, bright and inviting showroom. Oils from companies such as Belray, Maxima, Motorex, NGK spark plugs, battery chargers and maintainers, Yuasa batteries, K&N and Hiflo oil filters, Liquid Performance fuel additives, inner tubes and tires, coolants, brake pads can all be found in stock for most popular motorcycles and atv\'s\r\n</span>\r\n\r\nIn addition to our powersports inventory we also special order some of the best replacement parts, accessories and riding gear from all over the globe. We have over 20 years repairing, modifying, racing, and outfitting motorcycles and atv\'s. Standard Cycle can assist you in finding the perfect items for your safety, parts to maintain and repair your own motorcycle and the perfect accessories to help build your dream vehicle.\r\n\r\nStandard Cycle stands behind all of the products we sell and can assist you before and after the sale with advice and technical support. The specialized knowledge we have acquired from personally using, installing and supporting the products we sell is one of the biggest benefits of buying from an experienced brick and mortar motorcycle shop.\r\n\r\n[gallery link=\"none\" columns=\"9\" size=\"medium\" ids=\"484,483,482,481,480,479,478,477,476,467,468,469,470,471,472,473,474,475,466,465,464,463,462,461,460,459,458,449,450,451,452,453,454,455,456,457,448,447,446,445,444,443,442,441,440,439,438,437,436\" orderby=\"rand\"]\r\n\r\n[gallery size=\"medium\" link=\"file\" ids=\"426,118,430,425,428,432\"]','Retail','','inherit','closed','closed','','184-revision-v1','','','2017-12-14 18:36:02','2017-12-14 18:36:02','',184,'http://stdcycle.com/company/2017/12/14/184-revision-v1/',0,'revision','',0),(487,1,'2017-12-14 18:42:58','2017-12-14 18:42:58','<span class=\"text_exposed_show\">Standard Cycle Co stocks all of your daily motorcycling needs here in our clean, bright and inviting showroom. Oils from companies such as Belray, Maxima, Motorex, NGK spark plugs, battery chargers and maintainers, Yuasa batteries, K&N and Hiflo oil filters, Liquid Performance fuel additives, inner tubes and tires, coolants, brake pads can all be found in stock for most popular motorcycles and atv\'s\r\n</span>\r\n\r\nIn addition to our powersports inventory we also special order some of the best replacement parts, accessories and riding gear from all over the globe. After over 20 years of repairing, modifying, racing, and outfitting motorcycles and ATV\'s. Standard Cycle can assist you in finding the perfect items for your safety, parts to maintain and repair your own motorcycle and the perfect accessories to help build your dream vehicle.\r\n\r\nStandard Cycle stands behind all of the products we sell and can assist you before and after the sale with advice and technical support. The specialized knowledge we have acquired from personally using, installing and supporting the products we sell is one of the biggest benefits of buying from an experienced brick and mortar motorcycle shop.\r\n\r\n[gallery link=\"none\" columns=\"9\" size=\"medium\" ids=\"484,483,482,481,480,479,478,477,476,467,468,469,470,471,472,473,474,475,466,465,464,463,462,461,460,459,458,449,450,451,452,453,454,455,456,457,448,447,446,445,444,443,442,441,440,439,438,437,436\" orderby=\"rand\"]\r\n\r\n[gallery size=\"medium\" link=\"file\" ids=\"426,118,430,425,428,432\"]','Retail','','inherit','closed','closed','','184-revision-v1','','','2017-12-14 18:42:58','2017-12-14 18:42:58','',184,'http://stdcycle.com/company/2017/12/14/184-revision-v1/',0,'revision','',0),(488,1,'2017-12-14 18:44:47','2017-12-14 18:44:47','<span class=\"text_exposed_show\">Standard Cycle Co stocks all of your daily motorcycling needs here in our clean, bright and inviting showroom. Oils from companies such as Belray, Maxima, Motorex, NGK spark plugs, battery chargers and maintainers, Yuasa batteries, K&N and Hiflo oil filters, Liquid Performance fuel additives, inner tubes and tires, coolants, brake pads can all be found in stock for most popular motorcycles and atv\'s\r\n</span>\r\n\r\nIn addition to our stocking inventory we also special order some of the best replacement parts, accessories and riding gear from all over the globe. After over 20 years of repairing, modifying, racing, and outfitting motorcycles and ATV\'s. Standard Cycle can assist you in finding the perfect items for your safety, parts to maintain and repair your own motorcycle and the perfect accessories to help build your dream vehicle.\r\n\r\nStandard Cycle stands behind all of the products we sell and can assist you before and after the sale with advice and technical support. The specialized knowledge we have acquired from personally using, installing and supporting the products we sell is one of the biggest benefits of buying from an experienced brick and mortar motorcycle shop.\r\n\r\n[gallery link=\"none\" columns=\"9\" size=\"medium\" ids=\"484,483,482,481,480,479,478,477,476,467,468,469,470,471,472,473,474,475,466,465,464,463,462,461,460,459,458,449,450,451,452,453,454,455,456,457,448,447,446,445,444,443,442,441,440,439,438,437,436\" orderby=\"rand\"]\r\n\r\n[gallery size=\"medium\" link=\"file\" ids=\"426,118,430,425,428,432\"]','Retail','','inherit','closed','closed','','184-revision-v1','','','2017-12-14 18:44:47','2017-12-14 18:44:47','',184,'http://stdcycle.com/company/2017/12/14/184-revision-v1/',0,'revision','',0),(489,1,'2017-12-14 18:50:07','2017-12-14 18:50:07','<span class=\"text_exposed_show\">Standard Cycle Co stocks all of your daily motorcycling needs here in our clean, bright and inviting showroom. Oils from companies such as Belray, Maxima, Motorex, NGK spark plugs, battery chargers and maintainers, Yuasa batteries, K&N and Hiflo oil filters, Liquid Performance fuel additives, inner tubes and tires, coolants, brake pads can all be found in stock for most popular motorcycles and atv\'s\r\n</span>\r\n\r\nIn addition to our stocking inventory we also special order some of the best replacement parts, accessories and riding gear from all over the globe. After over 20 years of repairing, modifying, racing, and outfitting motorcycles and ATV\'s. Standard Cycle can assist you in finding the perfect items for your safety, parts to maintain and repair your own motorcycle and the perfect accessories to help build your dream vehicle.\r\n\r\nStandard Cycle stands behind all of the products we sell and can assist you before and after the sale with advice and technical support. The specialized knowledge we have acquired from personally using, installing and supporting the products we sell is one of the biggest benefits of buying from an experienced brick and mortar motorcycle shop.\r\n\r\n[gallery link=\"none\" columns=\"9\" size=\"medium\" ids=\"484,483,482,481,480,479,478,477,476,467,468,469,470,471,472,473,474,475,466,465,464,463,462,461,460,459,458,449,450,451,452,453,454,455,456,457,448,447,446,445,444,443,442,441,440,439,438,437,436\" orderby=\"rand\"]\r\n\r\n[gallery size=\"medium\" link=\"file\" ids=\"426,118,428,430,432,425\"]','Retail','','inherit','closed','closed','','184-revision-v1','','','2017-12-14 18:50:07','2017-12-14 18:50:07','',184,'http://stdcycle.com/company/2017/12/14/184-revision-v1/',0,'revision','',0),(490,1,'2017-12-14 19:14:28','2017-12-14 19:14:28','<span class=\"text_exposed_show\">Standard Cycle Co stocks all of your daily motorcycling needs here in our clean, bright and inviting showroom. Oils from companies such as Belray, Maxima, Motorex, NGK spark plugs, battery chargers and maintainers, Yuasa batteries, K&N and Hiflo oil filters, Liquid Performance fuel additives, inner tubes and tires, coolants, brake pads can all be found in stock for most popular motorcycles and atv\'s\r\n</span>\r\n\r\nIn addition to our stocking inventory we also special order some of the best replacement parts, accessories and riding gear from all over the globe. After over 20 years of repairing, modifying, racing, and outfitting motorcycles and ATV\'s. Standard Cycle can assist you in finding the perfect items for your safety, parts to maintain and repair your own motorcycle and the perfect accessories to help build your dream vehicle.\r\n\r\nStandard Cycle stands behind all of the products we sell and can assist you before and after the sale with advice and technical support. The specialized knowledge we have acquired from personally using, installing and supporting the products we sell is one of the biggest benefits of buying from an experienced brick and mortar motorcycle shop.\r\n\r\n[gallery link=\"none\" columns=\"9\" size=\"medium\" ids=\"484,483,482,481,480,479,478,477,476,467,468,469,470,471,472,473,474,475,466,465,464,463,462,461,460,459,458,449,450,451,452,453,454,455,456,457,448,447,446,445,444,443,442,441,440,439,438,437,436\" orderby=\"rand\"]\r\n\r\n[gallery size=\"medium\" link=\"file\" ids=\"28,426,118,358,245,425\"]','Retail','','inherit','closed','closed','','184-revision-v1','','','2017-12-14 19:14:28','2017-12-14 19:14:28','',184,'http://stdcycle.com/company/2017/12/14/184-revision-v1/',0,'revision','',0),(491,1,'2017-12-14 19:16:05','2017-12-14 19:16:05','<span class=\"text_exposed_show\">Standard Cycle Co stocks all of your daily motorcycling needs here in our clean, bright and inviting showroom. Oils from companies such as Belray, Maxima, Motorex, NGK spark plugs, battery chargers and maintainers, Yuasa batteries, K&N and Hiflo oil filters, Liquid Performance fuel additives, inner tubes and tires, coolants, brake pads can all be found in stock for most popular motorcycles and ATVs.\r\n</span>\r\n\r\nIn addition to our stocked inventory we also special order some of the best replacement parts, accessories and riding gear from all over the globe. After over 20 years of repairing, modifying, racing, and outfitting motorcycles and ATV\'s. Standard Cycle can assist you in finding the perfect items for your safety, parts to maintain and repair your own motorcycle and the perfect accessories to help build your dream vehicle.\r\n\r\nStandard Cycle stands behind all of the products we sell and can assist you before and after the sale with advice and technical support. The specialized knowledge we have acquired from personally using, installing and supporting the products we sell is one of the biggest benefits of buying from an experienced brick and mortar motorcycle shop.\r\n\r\n[gallery link=\"none\" columns=\"9\" size=\"medium\" ids=\"484,483,482,481,480,479,478,477,476,467,468,469,470,471,472,473,474,475,466,465,464,463,462,461,460,459,458,449,450,451,452,453,454,455,456,457,448,447,446,445,444,443,442,441,440,439,438,437,436\" orderby=\"rand\"]\r\n\r\n[gallery size=\"medium\" link=\"file\" ids=\"28,426,118,358,245,425\"]','Retail','','inherit','closed','closed','','184-revision-v1','','','2017-12-14 19:16:05','2017-12-14 19:16:05','',184,'http://stdcycle.com/company/2017/12/14/184-revision-v1/',0,'revision','',0),(492,1,'2017-12-14 19:20:28','2017-12-14 19:20:28','<span class=\"text_exposed_show\">Standard Cycle Co stocks all of your daily motorcycling needs here in our clean, bright and inviting showroom. Oils from companies such as Belray, Maxima, Motorex, NGK spark plugs, battery chargers and maintainers, Yuasa batteries, K&N and Hiflo oil filters, Liquid Performance fuel additives, inner tubes and tires, coolants, brake pads can all be found in stock for most popular motorcycles and ATVs.\r\n</span>\r\n\r\nIn addition to our stocked inventory we also special order some of the best replacement parts, accessories and riding gear from all over the globe. With 20 years experience repairing, modifying, racing, and outfitting motorcycles and ATV\'s, Standard Cycle can assist you in finding the perfect items for your safety, parts to maintain and repair your own motorcycle and the perfect accessories to help build your dream vehicle.\r\n\r\nStandard Cycle stands behind all of the products we sell and can assist you before and after the sale with advice and technical support. The specialized knowledge we have acquired from personally using, installing and supporting the products we sell is one of the biggest benefits of buying from an experienced brick and mortar motorcycle shop.\r\n\r\n[gallery link=\"none\" columns=\"9\" size=\"medium\" ids=\"484,483,482,481,480,479,478,477,476,467,468,469,470,471,472,473,474,475,466,465,464,463,462,461,460,459,458,449,450,451,452,453,454,455,456,457,448,447,446,445,444,443,442,441,440,439,438,437,436\" orderby=\"rand\"]\r\n\r\n[gallery size=\"medium\" link=\"file\" ids=\"28,426,118,358,245,425\"]','Retail','','inherit','closed','closed','','184-revision-v1','','','2017-12-14 19:20:28','2017-12-14 19:20:28','',184,'http://stdcycle.com/company/2017/12/14/184-revision-v1/',0,'revision','',0),(493,1,'2017-12-14 19:24:45','2017-12-14 19:24:45','<img class=\"alignleft size-medium wp-image-275\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/dyno-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\nStandard Cycle Company has over 15 years tuning experience utilizing chassis dynamometers and various on-board data acquisition systems, along with real world racing experience in many different racing disciplines. We have completed and keep up to date with Dynojet tuning and S&S Cycle VFi stand-alone ecu certifications.\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">We offer dyno tuning for all two-wheeled vehicles on our Dynoware RT powered, Dynojet, 250i eddy current and load controlled dynamometer in our custom designed climate controlled and sound attenuating dyno cell. </span><span class=\"text_exposed_show\">Utilizing Dynojet\'s latest Dynoware RT package</span> we can ensure the most accurate data collection and the knowledge and experience to get the best possible tune for your street, track or dirt bike</p>\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">Our enclosed dyno cell has been engineered to ensure the cleanest ambient air possible utilizing a sophisticated whole cell exhaust extraction system with a filtered fresh air inlet. Controlling the air inside the cell provides the motorcycle being tuned with air that is free from exhaust fumes that can make its way back into the the intake tract along with removing the large amounts of heat created from the motorcycle engine and eddy current load unit. This recycling of exhaust gases into the intake and excessive room heat in non environment controlled tuning areas causes errors in data collection while tuning and makes an accurate tune that performs in the real world difficult, if not impossible. </span></p>\r\nStandard Cycle has had the honor of being trusted tuners for multiple race winning motocross, road course, drag and national LSR record holding motorcycles.\r\n<p style=\"text-align: center;\"><strong>We offer</strong></p>\r\n\r\n<ul>\r\n <li style=\"text-align: center;\">Carburetor tuning for various different carb companies, including, Linkert, Amal, Mikuni, Keihin, Lectron, S&S among others.</li>\r\n <li style=\"text-align: center;\">Dynojet Power Commander and ignition module tuning</li>\r\n <li style=\"text-align: center;\">Dynojet Power Vision and Power Vision CX ecu flash tuning for Harley and Victory/Indian applications</li>\r\n <li style=\"text-align: center;\">Bazzaz product tuning</li>\r\n <li style=\"text-align: center;\">S&S VFi stand-alone ECU tuning</li>\r\n <li style=\"text-align: center;\">Various stand-alone ignition products</li>\r\n <li style=\"text-align: center;\">Factory ECU tuning for select Suzuki and Triumph models with more applications becoming available in the future.</li>\r\n <li style=\"text-align: center;\">Progressive nitrous and turbo boost controller tuning</li>\r\n <li style=\"text-align: center;\">Microtech secondary fueling system tuning for boosted applications</li>\r\n</ul>\r\n \r\n\r\n[embed]https://youtu.be/G1O9cnGp8L8[/embed]\r\n\r\n \r\n\r\n[gallery size=\"large\" link=\"file\" ids=\"379,411,378,412,381,382,401,402,380,397,392,377,375,390,374,370,373,340,341,337,403,321,320,409,400,395,393\"]','Dyno Tuning','','inherit','closed','closed','','180-revision-v1','','','2017-12-14 19:24:45','2017-12-14 19:24:45','',180,'http://stdcycle.com/company/2017/12/14/180-revision-v1/',0,'revision','',0),(494,1,'2017-12-14 19:39:53','2017-12-14 19:39:53','<img class=\"alignleft size-medium wp-image-275\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/dyno-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\nStandard Cycle Company has over 15 years tuning experience utilizing chassis dynamometers and various on-board data acquisition systems, along with real world racing experience in many different racing disciplines. We have completed and keep up to date with Dynojet tuning and S&S Cycle VFi stand-alone ecu certifications.\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">We offer dyno tuning for all two-wheeled vehicles on our Dynoware RT powered Dynojet 250i eddy current and load controlled dynamometer in our custom designed climate controlled and sound attenuating dyno cell. </span><span class=\"text_exposed_show\">Utilizing Dynojet\'s latest Dynoware RT package</span> we can ensure the most accurate data collection. Combined with our knowledge and experience we guarantee the best possible tune for your street, track or dirt bike</p>\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">Our enclosed dyno cell has been engineered to ensure the cleanest ambient air possible by utilizing a sophisticated whole cell exhaust extraction system with a filtered fresh air inlet. Controlling the air inside the cell provides the motorcycle being tuned with air that is free from exhaust fumes that can make its way back into the the intake tract along with removing the large amounts of heat created from the motorcycle engine and eddy current load unit. This recycling of exhaust gases into the intake and excessive room heat in non environment controlled tuning areas causes errors in data collection while tuning and makes an accurate tune that performs in the real world difficult, if not impossible. </span></p>\r\nStandard Cycle has had the honor of being trusted tuners for multiple race winning motocross, road course, drag and national LSR record holding motorcycles.\r\n<p style=\"text-align: center;\"><strong>We offer</strong></p>\r\n\r\n<ul>\r\n <li style=\"text-align: center;\">Carburetor tuning for various different carb companies, including, Linkert, Amal, Mikuni, Keihin, Lectron, S&S among others.</li>\r\n <li style=\"text-align: center;\">Dynojet Power Commander and ignition module tuning</li>\r\n <li style=\"text-align: center;\">Dynojet Power Vision and Power Vision CX ecu flash tuning for Harley and Victory/Indian applications</li>\r\n <li style=\"text-align: center;\">Bazzaz product tuning</li>\r\n <li style=\"text-align: center;\">S&S VFi stand-alone ECU tuning</li>\r\n <li style=\"text-align: center;\">Various stand-alone ignition products</li>\r\n <li style=\"text-align: center;\">Factory ECU tuning for select Suzuki and Triumph models with more applications becoming available in the future.</li>\r\n <li style=\"text-align: center;\">Progressive nitrous and turbo boost controller tuning</li>\r\n <li style=\"text-align: center;\">Microtech secondary fueling system tuning for boosted applications</li>\r\n</ul>\r\n \r\n\r\n[embed]https://youtu.be/G1O9cnGp8L8[/embed]\r\n\r\n \r\n\r\n[gallery size=\"large\" link=\"file\" ids=\"379,411,378,412,381,382,401,402,380,397,392,377,375,390,374,370,373,340,341,337,403,321,320,409,400,395,393\"]','Dyno Tuning','','inherit','closed','closed','','180-revision-v1','','','2017-12-14 19:39:53','2017-12-14 19:39:53','',180,'http://stdcycle.com/company/2017/12/14/180-revision-v1/',0,'revision','',0),(495,1,'2017-12-14 19:49:04','2017-12-14 19:49:04','<img class=\"alignleft size-medium wp-image-275\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/dyno-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\nStandard Cycle Company has over 15 years tuning experience utilizing chassis dynamometers and various on-board data acquisition systems, along with real world racing experience in many different racing disciplines. We have completed and keep up to date with Dynojet tuning and S&S Cycle VFi stand-alone ecu certifications.\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">We offer dyno tuning for all two-wheeled vehicles on our Dynoware RT powered Dynojet 250i eddy current and load controlled dynamometer in our custom designed climate controlled and sound attenuating dyno cell. </span><span class=\"text_exposed_show\">Utilizing Dynojet\'s latest Dynoware RT package</span> we can ensure the most accurate data collection. Combined with our knowledge and experience we guarantee the best possible tune for your street, track or dirt bike</p>\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">Our enclosed dyno cell has been engineered to ensure the cleanest ambient air possible by utilizing a sophisticated whole cell exhaust extraction system with a filtered fresh air inlet. Controlling the air inside the cell provides a sterile environment free from exhaust fumes and heat, which typically accumulates while tuning. The resulting errors in data collection make an accurate tune with peak performance in the real world difficult, if not impossible.</span></p>\r\nStandard Cycle has had the honor of being trusted tuners for multiple race winning motocross, road course, drag and national LSR record holding motorcycles.\r\n<p style=\"text-align: center;\"><strong>We offer</strong></p>\r\n\r\n<ul>\r\n <li style=\"text-align: left;\">Carburetor tuning including, Linkert, Amal, Mikuni, Keihin, Lectron, S&S among others</li>\r\n <li style=\"text-align: left;\">Dynojet Power Commander and ignition module tuning</li>\r\n <li style=\"text-align: left;\">Dynojet Power Vision and Power Vision CX ecu flash tuning for Harley and Victory/Indian applications</li>\r\n <li style=\"text-align: left;\">Bazzaz product tuning</li>\r\n <li style=\"text-align: left;\">S&S VFi stand-alone ECU tuning</li>\r\n <li style=\"text-align: left;\">Various stand-alone ignition products</li>\r\n <li style=\"text-align: left;\">Factory ECU tuning for select Suzuki and Triumph models with more applications becoming available in the future</li>\r\n <li style=\"text-align: left;\">Progressive nitrous and turbo boost controller tuning</li>\r\n <li style=\"text-align: left;\">Microtech secondary fueling system tuning for boosted applications</li>\r\n</ul>\r\n<p style=\"text-align: left;\"></p>\r\n[embed]https://youtu.be/G1O9cnGp8L8[/embed]\r\n\r\n \r\n\r\n[gallery size=\"large\" link=\"file\" ids=\"379,411,378,412,381,382,401,402,380,397,392,377,375,390,374,370,373,340,341,337,403,321,320,409,400,395,393\"]','Dyno Tuning','','inherit','closed','closed','','180-revision-v1','','','2017-12-14 19:49:04','2017-12-14 19:49:04','',180,'http://stdcycle.com/company/2017/12/14/180-revision-v1/',0,'revision','',0),(496,1,'2017-12-14 19:51:26','2017-12-14 19:51:26','{\n \"widget_widget_contact_info[5]\": {\n \"value\": {\n \"encoded_serialized_instance\": \"YTo5OntzOjU6InRpdGxlIjtzOjE2OiJIb3VycyAmYW1wOyBJbmZvIjtzOjc6ImFkZHJlc3MiO3M6NDU6IjU3IEluZHVzdHJpYWwgUmQuDQpCZXJrZWxleSBIZWlnaHRzLCBOSiAwNzkyMiI7czo1OiJwaG9uZSI7czoxMjoiOTA4LjY2NS4wMTYzIjtzOjU6ImVtYWlsIjtzOjA6IiI7czo1OiJob3VycyI7czo0NDoiTS9XL1RoL0YuIDlhbSAtIDU6MzBwbQ0KVHUuIDlhbSAtIDc6MzBwbQ0KDQoiO3M6NjoiYXBpa2V5IjtzOjA6IiI7czozOiJsYXQiO3M6MTA6IjQwLjY4MTQ2NTciO3M6MzoibG9uIjtzOjExOiItNzQuNDMyMTE1OSI7czo3OiJzaG93bWFwIjtpOjA7fQ==\",\n \"title\": \"Hours & Info\",\n \"is_widget_customizer_js_value\": true,\n \"instance_hash_key\": \"87ac52467c4b7be5287ef2b645015a17\"\n },\n \"type\": \"option\",\n \"user_id\": 1,\n \"date_modified_gmt\": \"2017-12-14 19:51:26\"\n }\n}','','','trash','closed','closed','','31cf41d3-d898-4d5d-8680-b53c623eb608','','','2017-12-14 19:51:26','2017-12-14 19:51:26','',0,'http://stdcycle.com/company/2017/12/14/31cf41d3-d898-4d5d-8680-b53c623eb608/',0,'customize_changeset','',0),(498,1,'2017-12-14 19:54:52','2017-12-14 19:54:52','<img class=\"alignleft size-medium wp-image-275\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/01/dyno-300x300.png\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\nStandard Cycle Company has over 15 years tuning experience utilizing chassis dynamometers and various on-board data acquisition systems, along with real world racing experience in many different racing disciplines. We have completed and keep up to date with Dynojet tuning and S&S Cycle VFi stand-alone ecu certifications.\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">We offer dyno tuning for all two-wheeled vehicles on our Dynoware RT powered Dynojet 250i eddy current and load controlled dynamometer in our custom designed climate controlled and sound attenuating dyno cell. </span><span class=\"text_exposed_show\">Utilizing Dynojet\'s latest Dynoware RT package</span> we can ensure the most accurate data collection. Combined with our knowledge and experience we guarantee the best possible tune for your street, track or dirt bike</p>\r\n<p style=\"text-align: left;\"><span class=\"text_exposed_show\">Our enclosed dyno cell has been engineered to ensure the cleanest ambient air possible by utilizing a sophisticated whole cell exhaust extraction system with a filtered fresh air inlet. Controlling the air inside the cell provides a sterile environment free from exhaust fumes and heat, which typically accumulates while tuning. The resulting errors in data collection make an accurate tune with peak performance in the real world difficult, if not impossible.</span></p>\r\nStandard Cycle has had the honor of being trusted tuners for multiple race winning motocross, road course, drag and national LSR record holding motorcycles.\r\n<p style=\"text-align: center;\"><strong>We offer</strong></p>\r\n\r\n<ul>\r\n <li style=\"text-align: left;\">Carburetor tuning including, Linkert, Amal, Mikuni, Keihin, Lectron, S&S among others</li>\r\n <li style=\"text-align: left;\">Dynojet Power Commander and ignition module tuning</li>\r\n <li style=\"text-align: left;\">Dynojet Power Vision and Power Vision CX ecu flash tuning for Harley and Victory/Indian applications</li>\r\n <li style=\"text-align: left;\">Bazzaz product tuning</li>\r\n <li style=\"text-align: left;\">S&S VFi stand-alone ECU tuning</li>\r\n <li style=\"text-align: left;\">Various stand-alone ignition products</li>\r\n <li style=\"text-align: left;\">Factory ECU tuning for select Suzuki and Triumph models with more applications becoming available in the future</li>\r\n <li>Wet and dry nitrous tuning</li>\r\n <li style=\"text-align: left;\">Progressive nitrous and turbo boost controller tuning</li>\r\n <li style=\"text-align: left;\">Microtech secondary fueling system tuning for boosted applications</li>\r\n</ul>\r\n[embed]https://youtu.be/G1O9cnGp8L8[/embed]\r\n\r\n \r\n\r\n[gallery size=\"large\" link=\"file\" ids=\"379,411,378,412,381,382,401,402,380,397,392,377,375,390,374,370,373,340,341,337,403,321,320,409,400,395,393\"]','Dyno Tuning','','inherit','closed','closed','','180-revision-v1','','','2017-12-14 19:54:52','2017-12-14 19:54:52','',180,'http://stdcycle.com/company/2017/12/14/180-revision-v1/',0,'revision','',0),(499,1,'2017-12-14 20:03:27','2017-12-14 20:03:27','','STD_Flats-23','','inherit','open','closed','','std_flats-23','','','2017-12-14 20:03:27','2017-12-14 20:03:27','',38,'http://stdcycle.com/company/wp-content/uploads/2017/12/STD_Flats-23.jpg',0,'attachment','image/jpeg',0),(500,1,'2017-12-14 20:04:05','2017-12-14 20:04:05','','FHF_617-7','','inherit','open','closed','','fhf_617-7','','','2017-12-14 20:04:05','2017-12-14 20:04:05','',38,'http://stdcycle.com/company/wp-content/uploads/2017/12/FHF_617-7.jpg',0,'attachment','image/jpeg',0),(501,1,'2017-12-14 20:05:06','2017-12-14 20:05:06','','10887267_10154921374315364_650857427494127198_o','','inherit','open','closed','','10887267_10154921374315364_650857427494127198_o','','','2017-12-14 20:05:06','2017-12-14 20:05:06','',38,'http://stdcycle.com/company/wp-content/uploads/2017/12/10887267_10154921374315364_650857427494127198_o.jpg',0,'attachment','image/jpeg',0),(502,1,'2017-12-14 20:05:20','2017-12-14 20:05:20','','14114935_1094484073963862_7511491259267369871_o','','inherit','open','closed','','14114935_1094484073963862_7511491259267369871_o','','','2017-12-14 20:05:20','2017-12-14 20:05:20','',38,'http://stdcycle.com/company/wp-content/uploads/2017/12/14114935_1094484073963862_7511491259267369871_o.jpg',0,'attachment','image/jpeg',0),(503,1,'2017-12-14 20:05:33','2017-12-14 20:05:33','','000043280005','','inherit','open','closed','','000043280005','','','2017-12-14 20:05:33','2017-12-14 20:05:33','',38,'http://stdcycle.com/company/wp-content/uploads/2017/12/000043280005.jpg',0,'attachment','image/jpeg',0),(504,1,'2017-12-14 20:06:48','2017-12-14 20:06:48','','B&W_STD-2','','inherit','open','closed','','bw_std-2','','','2017-12-14 20:06:48','2017-12-14 20:06:48','',38,'http://stdcycle.com/company/wp-content/uploads/2017/12/BW_STD-2.jpg',0,'attachment','image/jpeg',0),(505,1,'2017-12-14 20:07:02','2017-12-14 20:07:02','','B&W_STD-13','','inherit','open','closed','','bw_std-13','','','2017-12-14 20:07:02','2017-12-14 20:07:02','',38,'http://stdcycle.com/company/wp-content/uploads/2017/12/BW_STD-13.jpg',0,'attachment','image/jpeg',0),(506,1,'2017-12-14 20:07:16','2017-12-14 20:07:16','','STD6-5','','inherit','open','closed','','std6-5','','','2017-12-14 20:07:16','2017-12-14 20:07:16','',38,'http://stdcycle.com/company/wp-content/uploads/2017/12/STD6-5.jpg',0,'attachment','image/jpeg',0),(507,1,'2017-12-14 20:07:29','2017-12-14 20:07:29','','STD7-14','','inherit','open','closed','','std7-14-2','','','2017-12-14 20:07:29','2017-12-14 20:07:29','',38,'http://stdcycle.com/company/wp-content/uploads/2017/12/STD7-14-1.jpg',0,'attachment','image/jpeg',0),(508,1,'2017-12-14 20:07:45','2017-12-14 20:07:45','','STD10-20','','inherit','open','closed','','std10-20','','','2017-12-14 20:07:45','2017-12-14 20:07:45','',38,'http://stdcycle.com/company/wp-content/uploads/2017/12/STD10-20.jpg',0,'attachment','image/jpeg',0),(509,1,'2017-12-14 20:08:02','2017-12-14 20:08:02','','STD10-21','','inherit','open','closed','','std10-21','','','2017-12-14 20:08:02','2017-12-14 20:08:02','',38,'http://stdcycle.com/company/wp-content/uploads/2017/12/STD10-21.jpg',0,'attachment','image/jpeg',0),(510,1,'2017-12-14 20:10:16','2017-12-14 20:10:16','','White Shovel-2','','inherit','open','closed','','white-shovel-2','','','2017-12-14 20:10:16','2017-12-14 20:10:16','',38,'http://stdcycle.com/company/wp-content/uploads/2017/12/White-Shovel-2.jpg',0,'attachment','image/jpeg',0),(511,1,'2017-12-14 20:11:33','2017-12-14 20:11:33','Standard Cycle Company is a complete service center and retail store for all motorcycles. Located in Berkeley Heights, right at the foothills of some of the best riding in New Jersey. With over 20 years professional experience in the powersports industry, along with various forms of modern and vintage racing. Utilizing the latest in technology in repair and fabrication equipment we can repair, maintain, and modify all American, metric, sport, cruiser, dirt, racing motorcycles and atv\'s.\r\n\r\nStocking all your daily needs, including premium oils from Motorex, Maxima, and Belray, Yuasa batteries, K&N filters, NGK plugs, Liquid Performance chemicals and S100 cleaners in our clean, bright, and hip showroom.\r\n\r\nStop by anytime and talk moto or have your bike\'s oil changed while listening to Coltrane playing on vinyl, watch \"The world\'s Fastest Indian\" or Dana Brown\'s \"On any Sunday\", or enjoy our free guest wifi.\r\n\r\n \r\n\r\n \r\n\r\n[gallery size=\"large\" columns=\"4\" link=\"none\" type=\"slideshow\" ids=\"365,338,55,499,500,501,502,503,504,505,506,507,508,509,510\" orderby=\"rand\"]\r\n\r\n ','About','','inherit','closed','closed','','38-revision-v1','','','2017-12-14 20:11:33','2017-12-14 20:11:33','',38,'http://stdcycle.com/company/2017/12/14/38-revision-v1/',0,'revision','',0),(512,1,'2017-12-14 21:00:47','2017-12-14 21:00:47','Standard Cycle Company is a complete service center and retail store for all motorcycles. Located in Berkeley Heights, right at the foothills of some of the best riding in New Jersey. With over 20 years professional experience in the powersports industry, along with various forms of modern and vintage racing. Utilizing the latest in technology in repair and fabrication equipment we can repair, maintain, and modify all American, metric, sport, cruiser, dirt, racing motorcycles and atv\'s.\r\n\r\nStocking all your daily needs, including premium oils from Motorex, Maxima, and Belray, Yuasa batteries, K&N filters, NGK plugs, Liquid Performance chemicals and S100 cleaners in our clean, bright, and hip showroom.\r\n\r\nStop by anytime and talk moto or have your bike\'s oil changed while listening to Coltrane playing on vinyl, watch \"The world\'s Fastest Indian\" or Dana Brown\'s \"On any Sunday\", or enjoy our free guest wifi.\r\n\r\n \r\n\r\n \r\n\r\n[gallery size=\"large\" columns=\"4\" link=\"none\" type=\"slideshow\" ids=\"365,338,55,499,500,501,502,503,505,506,507,509,510\" orderby=\"rand\"]\r\n\r\n ','About','','inherit','closed','closed','','38-revision-v1','','','2017-12-14 21:00:47','2017-12-14 21:00:47','',38,'http://stdcycle.com/company/2017/12/14/38-revision-v1/',0,'revision','',0),(513,1,'2017-12-14 21:16:50','2017-12-14 21:16:50','Standard Cycle Company was born from a true love of all things motorcycle.\r\n\r\n \r\n\r\n[gallery size=\"large\" columns=\"4\" link=\"none\" type=\"slideshow\" ids=\"365,338,55,499,500,501,502,503,505,506,507,509,510\" orderby=\"rand\"]\r\n\r\n ','About','','inherit','closed','closed','','38-revision-v1','','','2017-12-14 21:16:50','2017-12-14 21:16:50','',38,'http://stdcycle.com/company/2017/12/14/38-revision-v1/',0,'revision','',0),(514,1,'2017-12-14 21:31:06','2017-12-14 21:31:06','','P1080341','','inherit','open','closed','','p1080341','','','2017-12-14 21:31:06','2017-12-14 21:31:06','',311,'http://stdcycle.com/company/wp-content/uploads/2017/12/P1080341.jpg',0,'attachment','image/jpeg',0),(515,1,'2017-12-15 14:55:28','2017-12-15 14:55:28','','662','','inherit','open','closed','','662','','','2017-12-15 14:55:28','2017-12-15 14:55:28','',38,'http://stdcycle.com/company/wp-content/uploads/2017/12/662.jpeg',0,'attachment','image/jpeg',0),(516,1,'2017-12-15 14:56:39','2017-12-15 14:56:39','<img class=\"alignleft wp-image-515 size-large\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/12/662-1024x682.jpeg\" alt=\"\" width=\"640\" height=\"426\" />\r\n\r\nStandard Cycle Company was born from a true love of all things motorcycle.\r\n\r\n[gallery size=\"large\" columns=\"4\" link=\"none\" type=\"slideshow\" ids=\"365,338,55,499,500,501,502,503,505,506,507,509,510\" orderby=\"rand\"]\r\n\r\n ','About','','inherit','closed','closed','','38-revision-v1','','','2017-12-15 14:56:39','2017-12-15 14:56:39','',38,'http://stdcycle.com/company/2017/12/15/38-revision-v1/',0,'revision','',0),(517,1,'2017-12-15 14:58:54','2017-12-15 14:58:54','<img class=\"alignleft wp-image-515 size-medium\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/12/662-300x200.jpeg\" alt=\"\" width=\"300\" height=\"200\" />\r\n\r\nStandard Cycle Company was born from a true love of all things motorcycle.\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[gallery size=\"large\" columns=\"4\" link=\"none\" type=\"slideshow\" ids=\"365,338,55,499,500,501,502,503,505,506,507,509,510\" orderby=\"rand\"]\r\n\r\n ','About','','inherit','closed','closed','','38-revision-v1','','','2017-12-15 14:58:54','2017-12-15 14:58:54','',38,'http://stdcycle.com/company/2017/12/15/38-revision-v1/',0,'revision','',0),(518,1,'2017-12-15 15:02:19','2017-12-15 15:02:19','<img class=\"alignleft wp-image-515 size-large\" src=\"http://stdcycle.com/company/wp-content/uploads/2017/12/662-1024x682.jpeg\" alt=\"\" width=\"640\" height=\"426\" />\r\n\r\nStandard Cycle Company was born from a true love of all things motorcycle.\r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n \r\n\r\n[gallery size=\"large\" columns=\"4\" link=\"none\" type=\"slideshow\" ids=\"365,338,55,499,500,501,502,503,505,506,507,509,510\" orderby=\"rand\"]\r\n\r\n ','About','','inherit','closed','closed','','38-revision-v1','','','2017-12-15 15:02:19','2017-12-15 15:02:19','',38,'http://stdcycle.com/company/2017/12/15/38-revision-v1/',0,'revision','',0),(519,1,'2018-01-04 23:57:15','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2018-01-04 23:57:15','0000-00-00 00:00:00','',0,'http://stdcycle.com/company/?p=519',0,'post','',0); /*!40000 ALTER TABLE `wp_posts` 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, UNIQUE KEY `id` (`id`), UNIQUE KEY `path` (`path`(191)), 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_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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,1,0),(14,1,0),(190,6,0),(191,6,0),(192,6,0),(193,6,0),(194,6,0),(195,6,0),(235,6,0),(263,6,0),(268,6,0),(313,6,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_520_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT '0', `count` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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,1),(2,2,'nav_menu','',0,0),(3,3,'nav_menu','',0,0),(4,4,'nav_menu','',0,0),(5,5,'nav_menu','',0,0),(6,6,'nav_menu','',0,10); /*!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_520_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT '0', PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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,'Home','home',0),(3,'Our story','our-story',0),(4,'Services','services',0),(5,'Contact','contact',0),(6,'Main','main',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_520_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_520_ci, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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,'nickname','stdcycle'),(2,1,'first_name',''),(3,1,'last_name',''),(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,'locale',''),(11,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(12,1,'wp_user_level','10'),(13,1,'dismissed_wp_pointers',''),(14,1,'default_password_nag',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"680e7906569916229af08af42b79c73c6f3c55f775fc61e179505d4601f46673\";a:4:{s:10:\"expiration\";i:1515283020;s:2:\"ip\";s:12:\"72.76.85.111\";s:2:\"ua\";s:82:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:57.0) Gecko/20100101 Firefox/57.0\";s:5:\"login\";i:1515110220;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','519'),(18,1,'wp_user-settings','editor=tinymce&libraryContent=browse&hidetb=1&imgsize=medium&align=right&advImgDetails=show&post_dfw=off'),(19,1,'wp_user-settings-time','1513349808'),(20,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(21,1,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(22,1,'jetpack_tracks_wpcom_id','115528576'),(23,1,'nav_menu_recently_edited','6'),(24,1,'tgmpa_dismissed_notice_illdy','1'),(25,1,'wp_media_library_mode','grid'),(26,1,'community-events-location','a:1:{s:2:\"ip\";s:10:\"72.76.85.0\";}'); /*!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_520_ci NOT NULL DEFAULT '', `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT '0', `display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`), KEY `user_email` (`user_email`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_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,'stdcycle','$P$Bn/r5um.WF1SAZSH3YAMEdaAJbPOXQ.','stdcycle','stdcycle@gmail.com','','2016-12-12 19:47:36','',0,'stdcycle'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database '1_0003nvd_2' -- /*!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 2018-06-14 12:34:00