-- mysqldump-php https://github.com/ifsnop/mysqldump-php
--
-- Host: localhost	Database: chicso5_wp856
-- ------------------------------------------------------
-- Server version 	5.5.5-10.2.33-MariaDB-log
-- Date: Sun, 27 Sep 2020 16:42:37 +0000

/*!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 utf8mb4 */;
/*!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 `wpjg_actionscheduler_actions`
--

DROP TABLE IF EXISTS `wpjg_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `scheduled_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `args` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `schedule` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `group_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `attempts` int(11) NOT NULL DEFAULT 0,
  `last_attempt_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `extended_args` varchar(8000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `hook` (`hook`),
  KEY `status` (`status`),
  KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
  KEY `args` (`args`),
  KEY `group_id` (`group_id`),
  KEY `last_attempt_gmt` (`last_attempt_gmt`),
  KEY `claim_id` (`claim_id`)
) ENGINE=MyISAM AUTO_INCREMENT=138 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_actionscheduler_actions`
--

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

-- Dumped table `wpjg_actionscheduler_actions` with 0 row(s)
--

--
-- Table structure for table `wpjg_actionscheduler_claims`
--

DROP TABLE IF EXISTS `wpjg_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_actionscheduler_claims` (
  `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`claim_id`),
  KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=7881 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_actionscheduler_claims`
--

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

-- Dumped table `wpjg_actionscheduler_claims` with 0 row(s)
--

--
-- Table structure for table `wpjg_actionscheduler_groups`
--

DROP TABLE IF EXISTS `wpjg_actionscheduler_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_actionscheduler_groups` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_actionscheduler_groups`
--

LOCK TABLES `wpjg_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wpjg_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wpjg_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'woocommerce-db-updates');
/*!40000 ALTER TABLE `wpjg_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpjg_actionscheduler_groups` with 2 row(s)
--

--
-- Table structure for table `wpjg_actionscheduler_logs`
--

DROP TABLE IF EXISTS `wpjg_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `log_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`log_id`),
  KEY `action_id` (`action_id`),
  KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_actionscheduler_logs`
--

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

-- Dumped table `wpjg_actionscheduler_logs` with 0 row(s)
--

--
-- Table structure for table `wpjg_commentmeta`
--

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

--
-- Dumping data for table `wpjg_commentmeta`
--

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

-- Dumped table `wpjg_commentmeta` with 0 row(s)
--

--
-- Table structure for table `wpjg_comments`
--

DROP TABLE IF EXISTS `wpjg_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_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_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_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)),
  KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_comments`
--

LOCK TABLES `wpjg_comments` WRITE;
/*!40000 ALTER TABLE `wpjg_comments` DISABLE KEYS */;
INSERT INTO `wpjg_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2020-05-01 15:29:58','2020-05-01 15:29:58','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 `wpjg_comments` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpjg_comments` with 1 row(s)
--

--
-- Table structure for table `wpjg_links`
--

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

--
-- Dumping data for table `wpjg_links`
--

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

-- Dumped table `wpjg_links` with 0 row(s)
--

--
-- Table structure for table `wpjg_options`
--

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

--
-- Dumping data for table `wpjg_options`
--

LOCK TABLES `wpjg_options` WRITE;
/*!40000 ALTER TABLE `wpjg_options` DISABLE KEYS */;
INSERT INTO `wpjg_options` VALUES (1,'siteurl','https://374curry.com','yes'),(2,'home','https://374curry.com','yes'),(3,'blogname','374 Curry Av','yes'),(4,'blogdescription','Smart Home Rentals','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','374curry@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:326:{s:28:\"tribe/events/kitchen-sink/?$\";s:69:\"index.php?post_type=tribe_events&tribe_events_views_kitchen_sink=page\";s:93:\"tribe/events/kitchen-sink/(page|grid|typographical|elements|events-bar|navigation|manager)/?$\";s:76:\"index.php?post_type=tribe_events&tribe_events_views_kitchen_sink=$matches[1]\";s:28:\"event-aggregator/(insert)/?$\";s:53:\"index.php?tribe-aggregator=1&tribe-action=$matches[1]\";s:25:\"(?:event)/([^/]+)/ical/?$\";s:56:\"index.php?ical=1&name=$matches[1]&post_type=tribe_events\";s:28:\"(?:events)/(?:page)/(\\d+)/?$\";s:71:\"index.php?post_type=tribe_events&eventDisplay=default&paged=$matches[1]\";s:41:\"(?:events)/(?:featured)/(?:page)/(\\d+)/?$\";s:79:\"index.php?post_type=tribe_events&featured=1&eventDisplay=list&paged=$matches[1]\";s:38:\"(?:events)/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?post_type=tribe_events&eventDisplay=list&feed=$matches[1]\";s:51:\"(?:events)/(?:featured)/(feed|rdf|rss|rss2|atom)/?$\";s:78:\"index.php?post_type=tribe_events&featured=1&eventDisplay=list&feed=$matches[1]\";s:23:\"(?:events)/(?:month)/?$\";s:51:\"index.php?post_type=tribe_events&eventDisplay=month\";s:36:\"(?:events)/(?:month)/(?:featured)/?$\";s:62:\"index.php?post_type=tribe_events&eventDisplay=month&featured=1\";s:37:\"(?:events)/(?:month)/(\\d{4}-\\d{2})/?$\";s:73:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]\";s:37:\"(?:events)/(?:list)/(?:page)/(\\d+)/?$\";s:68:\"index.php?post_type=tribe_events&eventDisplay=list&paged=$matches[1]\";s:50:\"(?:events)/(?:list)/(?:featured)/(?:page)/(\\d+)/?$\";s:79:\"index.php?post_type=tribe_events&eventDisplay=list&featured=1&paged=$matches[1]\";s:22:\"(?:events)/(?:list)/?$\";s:50:\"index.php?post_type=tribe_events&eventDisplay=list\";s:35:\"(?:events)/(?:list)/(?:featured)/?$\";s:61:\"index.php?post_type=tribe_events&eventDisplay=list&featured=1\";s:23:\"(?:events)/(?:today)/?$\";s:49:\"index.php?post_type=tribe_events&eventDisplay=day\";s:36:\"(?:events)/(?:today)/(?:featured)/?$\";s:60:\"index.php?post_type=tribe_events&eventDisplay=day&featured=1\";s:27:\"(?:events)/(\\d{4}-\\d{2})/?$\";s:73:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]\";s:40:\"(?:events)/(\\d{4}-\\d{2})/(?:featured)/?$\";s:84:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]&featured=1\";s:33:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:71:\"index.php?post_type=tribe_events&eventDisplay=day&eventDate=$matches[1]\";s:46:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:82:\"index.php?post_type=tribe_events&eventDisplay=day&eventDate=$matches[1]&featured=1\";s:26:\"(?:events)/(?:featured)/?$\";s:43:\"index.php?post_type=tribe_events&featured=1\";s:13:\"(?:events)/?$\";s:53:\"index.php?post_type=tribe_events&eventDisplay=default\";s:18:\"(?:events)/ical/?$\";s:39:\"index.php?post_type=tribe_events&ical=1\";s:31:\"(?:events)/(?:featured)/ical/?$\";s:50:\"index.php?post_type=tribe_events&ical=1&featured=1\";s:38:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/ical/?$\";s:78:\"index.php?post_type=tribe_events&ical=1&eventDisplay=day&eventDate=$matches[1]\";s:47:\"(?:events)/(\\d{4}-\\d{2}-\\d{2})/ical/featured/?$\";s:89:\"index.php?post_type=tribe_events&ical=1&eventDisplay=day&eventDate=$matches[1]&featured=1\";s:60:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:page)/(\\d+)/?$\";s:97:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:73:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/(?:page)/(\\d+)/?$\";s:108:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&eventDisplay=list&paged=$matches[2]\";s:55:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:month)/?$\";s:80:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month\";s:68:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:month)/(?:featured)/?$\";s:91:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&featured=1\";s:69:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:page)/(\\d+)/?$\";s:97:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:82:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:featured)/(?:page)/(\\d+)/?$\";s:108:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&featured=1&paged=$matches[2]\";s:54:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/?$\";s:79:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list\";s:67:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:list)/(?:featured)/?$\";s:90:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&featured=1\";s:55:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:today)/?$\";s:78:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day\";s:68:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:today)/(?:featured)/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&featured=1\";s:73:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:86:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:111:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:59:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2})/?$\";s:102:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&eventDate=$matches[2]\";s:72:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2})/(?:featured)/?$\";s:113:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&eventDate=$matches[2]&featured=1\";s:65:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:78:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:111:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:50:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/feed/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&feed=rss2\";s:63:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/feed/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&eventDisplay=list&feed=rss2\";s:50:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/ical/?$\";s:68:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&ical=1\";s:63:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/ical/?$\";s:79:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&ical=1\";s:75:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:78:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&feed=$matches[2]\";s:88:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&feed=$matches[2]\";s:58:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/(?:featured)/?$\";s:93:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&featured=1&eventDisplay=default\";s:45:\"(?:events)/(?:category)/(?:[^/]+/)*([^/]+)/?$\";s:82:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=default\";s:44:\"(?:events)/(?:tag)/([^/]+)/(?:page)/(\\d+)/?$\";s:84:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:57:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/(?:page)/(\\d+)/?$\";s:95:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1&eventDisplay=list&paged=$matches[2]\";s:39:\"(?:events)/(?:tag)/([^/]+)/(?:month)/?$\";s:67:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month\";s:52:\"(?:events)/(?:tag)/([^/]+)/(?:month)/(?:featured)/?$\";s:78:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&featured=1\";s:53:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:page)/(\\d+)/?$\";s:84:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:66:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:featured)/(?:page)/(\\d+)/?$\";s:95:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&featured=1&paged=$matches[2]\";s:38:\"(?:events)/(?:tag)/([^/]+)/(?:list)/?$\";s:66:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list\";s:51:\"(?:events)/(?:tag)/([^/]+)/(?:list)/(?:featured)/?$\";s:77:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&featured=1\";s:39:\"(?:events)/(?:tag)/([^/]+)/(?:today)/?$\";s:65:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day\";s:52:\"(?:events)/(?:tag)/([^/]+)/(?:today)/(?:featured)/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&featured=1\";s:57:\"(?:events)/(?:tag)/([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:70:\"(?:events)/(?:tag)/([^/]+)/(?:day)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:98:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:43:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2})/?$\";s:89:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&eventDate=$matches[2]\";s:56:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2})/(?:featured)/?$\";s:100:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&eventDate=$matches[2]&featured=1\";s:49:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:62:\"(?:events)/(?:tag)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/(?:featured)/?$\";s:98:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]&featured=1\";s:34:\"(?:events)/(?:tag)/([^/]+)/feed/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&feed=rss2\";s:47:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/feed/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&feed=rss2&featured=1\";s:34:\"(?:events)/(?:tag)/([^/]+)/ical/?$\";s:55:\"index.php?post_type=tribe_events&tag=$matches[1]&ical=1\";s:47:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/ical/?$\";s:66:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1&ical=1\";s:59:\"(?:events)/(?:tag)/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:65:\"index.php?post_type=tribe_events&tag=$matches[1]&feed=$matches[2]\";s:72:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1&feed=$matches[2]\";s:42:\"(?:events)/(?:tag)/([^/]+)/(?:featured)/?$\";s:59:\"index.php?post_type=tribe_events&tag=$matches[1]&featured=1\";s:29:\"(?:events)/(?:tag)/([^/]+)/?$\";s:69:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=default\";s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:22:\"tribe-promoter-auth/?$\";s:37:\"index.php?tribe-promoter-auth-check=1\";s:8:\"event/?$\";s:32:\"index.php?post_type=tribe_events\";s:38:\"event/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=tribe_events&feed=$matches[1]\";s:33:\"event/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=tribe_events&feed=$matches[1]\";s:25:\"event/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=tribe_events&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"venue/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"venue/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"venue/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"venue/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"venue/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"venue/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"venue/([^/]+)/embed/?$\";s:44:\"index.php?tribe_venue=$matches[1]&embed=true\";s:26:\"venue/([^/]+)/trackback/?$\";s:38:\"index.php?tribe_venue=$matches[1]&tb=1\";s:34:\"venue/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?tribe_venue=$matches[1]&paged=$matches[2]\";s:41:\"venue/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?tribe_venue=$matches[1]&cpage=$matches[2]\";s:31:\"venue/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?tribe_venue=$matches[1]&wc-api=$matches[3]\";s:37:\"venue/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:48:\"venue/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:30:\"venue/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?tribe_venue=$matches[1]&page=$matches[2]\";s:22:\"venue/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"venue/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"venue/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"venue/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"venue/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"venue/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"organizer/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"organizer/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"organizer/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"organizer/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"organizer/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"organizer/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"organizer/([^/]+)/embed/?$\";s:48:\"index.php?tribe_organizer=$matches[1]&embed=true\";s:30:\"organizer/([^/]+)/trackback/?$\";s:42:\"index.php?tribe_organizer=$matches[1]&tb=1\";s:38:\"organizer/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?tribe_organizer=$matches[1]&paged=$matches[2]\";s:45:\"organizer/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?tribe_organizer=$matches[1]&cpage=$matches[2]\";s:35:\"organizer/([^/]+)/wc-api(/(.*))?/?$\";s:56:\"index.php?tribe_organizer=$matches[1]&wc-api=$matches[3]\";s:41:\"organizer/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:52:\"organizer/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:34:\"organizer/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?tribe_organizer=$matches[1]&page=$matches[2]\";s:26:\"organizer/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"organizer/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"organizer/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"organizer/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"organizer/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"organizer/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"event/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"event/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"event/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"event/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"event/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"event/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"event/([^/]+)/embed/?$\";s:45:\"index.php?tribe_events=$matches[1]&embed=true\";s:26:\"event/([^/]+)/trackback/?$\";s:39:\"index.php?tribe_events=$matches[1]&tb=1\";s:46:\"event/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?tribe_events=$matches[1]&feed=$matches[2]\";s:41:\"event/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?tribe_events=$matches[1]&feed=$matches[2]\";s:34:\"event/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?tribe_events=$matches[1]&paged=$matches[2]\";s:41:\"event/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?tribe_events=$matches[1]&cpage=$matches[2]\";s:31:\"event/([^/]+)/wc-api(/(.*))?/?$\";s:53:\"index.php?tribe_events=$matches[1]&wc-api=$matches[3]\";s:37:\"event/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:48:\"event/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:30:\"event/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?tribe_events=$matches[1]&page=$matches[2]\";s:22:\"event/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"event/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"event/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"event/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"event/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"event/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:54:\"events/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?tribe_events_cat=$matches[1]&feed=$matches[2]\";s:49:\"events/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?tribe_events_cat=$matches[1]&feed=$matches[2]\";s:30:\"events/category/(.+?)/embed/?$\";s:49:\"index.php?tribe_events_cat=$matches[1]&embed=true\";s:42:\"events/category/(.+?)/page/?([0-9]{1,})/?$\";s:56:\"index.php?tribe_events_cat=$matches[1]&paged=$matches[2]\";s:24:\"events/category/(.+?)/?$\";s:38:\"index.php?tribe_events_cat=$matches[1]\";s:41:\"deleted_event/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"deleted_event/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"deleted_event/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"deleted_event/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"deleted_event/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"deleted_event/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"deleted_event/([^/]+)/embed/?$\";s:46:\"index.php?deleted_event=$matches[1]&embed=true\";s:34:\"deleted_event/([^/]+)/trackback/?$\";s:40:\"index.php?deleted_event=$matches[1]&tb=1\";s:42:\"deleted_event/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?deleted_event=$matches[1]&paged=$matches[2]\";s:49:\"deleted_event/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?deleted_event=$matches[1]&cpage=$matches[2]\";s:39:\"deleted_event/([^/]+)/wc-api(/(.*))?/?$\";s:54:\"index.php?deleted_event=$matches[1]&wc-api=$matches[3]\";s:45:\"deleted_event/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:56:\"deleted_event/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:38:\"deleted_event/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?deleted_event=$matches[1]&page=$matches[2]\";s:30:\"deleted_event/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"deleted_event/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"deleted_event/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"deleted_event/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"deleted_event/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"deleted_event/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=94&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s: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:62:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$\";s:99:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc-api=$matches[6]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";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:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:8:{i:0;s:19:\"akismet/akismet.php\";i:1;s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";i:2;s:35:\"boldgrid-backup/boldgrid-backup.php\";i:3;s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";i:4;s:19:\"jetpack/jetpack.php\";i:5;s:43:\"the-events-calendar/the-events-calendar.php\";i:6;s:19:\"weforms/weforms.php\";i:7;s:27:\"woocommerce/woocommerce.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:65:\"/home/chicso5/374curry.com/wp-content/plugins/akismet/akismet.php\";i:1;s:64:\"/home/chicso5/374curry.com/wp-content/themes/rosa-lite/style.css\";i:2;s:0:\"\";}','no'),(40,'template','hotel-luxury','yes'),(41,'stylesheet','hotel-luxury','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','47018','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:3:{i:2;a:4:{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.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:3;a:4:{s:5:\"title\";s:7:\"Find Us\";s:4:\"text\";s:168:\"<strong>Address</strong>\n123 Main Street\nNew York, NY 10001\n\n<strong>Hours</strong>\nMonday&ndash;Friday: 9:00AM&ndash;5:00PM\nSaturday &amp; Sunday: 11:00AM&ndash;3:00PM\";s:6:\"filter\";b:1;s:6:\"visual\";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:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','94','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,'wp_page_for_privacy_policy','3','yes'),(92,'show_comments_cookies_opt_in','1','yes'),(93,'admin_email_lifespan','1603898998','yes'),(94,'initial_db_version','47018','yes'),(95,'wpjg_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:155:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:25:\"read_private_tribe_events\";b:1;s:17:\"edit_tribe_events\";b:1;s:24:\"edit_others_tribe_events\";b:1;s:25:\"edit_private_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:26:\"delete_others_tribe_events\";b:1;s:27:\"delete_private_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:25:\"read_private_tribe_venues\";b:1;s:17:\"edit_tribe_venues\";b:1;s:24:\"edit_others_tribe_venues\";b:1;s:25:\"edit_private_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:26:\"delete_others_tribe_venues\";b:1;s:27:\"delete_private_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:29:\"read_private_tribe_organizers\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:28:\"edit_others_tribe_organizers\";b:1;s:29:\"edit_private_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:30:\"delete_others_tribe_organizers\";b:1;s:31:\"delete_private_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;s:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;s:18:\"bcn_manage_options\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:74:{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:25:\"read_private_tribe_events\";b:1;s:17:\"edit_tribe_events\";b:1;s:24:\"edit_others_tribe_events\";b:1;s:25:\"edit_private_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:26:\"delete_others_tribe_events\";b:1;s:27:\"delete_private_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:25:\"read_private_tribe_venues\";b:1;s:17:\"edit_tribe_venues\";b:1;s:24:\"edit_others_tribe_venues\";b:1;s:25:\"edit_private_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:26:\"delete_others_tribe_venues\";b:1;s:27:\"delete_private_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:29:\"read_private_tribe_organizers\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:28:\"edit_others_tribe_organizers\";b:1;s:29:\"edit_private_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:30:\"delete_others_tribe_organizers\";b:1;s:31:\"delete_private_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;s:31:\"read_private_aggregator-records\";b:1;s:23:\"edit_aggregator-records\";b:1;s:30:\"edit_others_aggregator-records\";b:1;s:31:\"edit_private_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:32:\"delete_others_aggregator-records\";b:1;s:33:\"delete_private_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:30:{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:17:\"edit_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:17:\"edit_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;s:23:\"edit_aggregator-records\";b:1;s:33:\"edit_published_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;s:35:\"delete_published_aggregator-records\";b:1;s:26:\"publish_aggregator-records\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:13:{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:17:\"edit_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:17:\"edit_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:23:\"edit_aggregator-records\";b:1;s:25:\"delete_aggregator-records\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}}','yes'),(96,'fresh_site','0','yes'),(97,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'sidebars_widgets','a:8:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:6:\"text-2\";i:1;s:6:\"text-3\";}s:9:\"sidebar-1\";a:3:{i:0;s:13:\"media_image-2\";i:1;s:13:\"media_image-4\";i:2;s:13:\"media_image-5\";}s:12:\"topbar-right\";a:0:{}s:8:\"footer-1\";a:1:{i:0;s:16:\"weforms_widget-2\";}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(103,'cron','a:27:{i:1601224954;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1601225231;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:1601225816;a:1:{s:39:\"tribe_aggregator_process_insert_records\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:17:\"tribe-every15mins\";s:4:\"args\";a:0:{}s:8:\"interval\";i:900;}}}i:1601225818;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:1601226553;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1601227802;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1601228004;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1601228520;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1601228529;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1601240084;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1601251200;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1601261681;a:1:{s:16:\"tribe_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1601261694;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1601263798;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1601264514;a:1:{s:30:\"tribe_schedule_transient_purge\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1601272484;a:1:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1601305031;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:1601305089;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:1601306998;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1601307174;a:2:{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;}}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:1601307176;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:1601307692;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1601307713;a:1:{s:24:\"tribe_common_log_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1601738998;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1601746705;a:1:{s:26:\"weforms_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1602298544;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}s:7:\"version\";i:2;}','yes'),(104,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_image','a:4:{i:2;a:15:{s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:512;s:6:\"height\";i:432;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:21:\"https://chicsoaps.com\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:108;s:3:\"url\";s:78:\"https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512-300x253.jpg\";s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;i:4;a:15:{s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:759;s:6:\"height\";i:697;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:26:\"https://fitatfortyplus.com\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:109;s:3:\"url\";s:68:\"https://374curry.com/wp-content/uploads/2020/05/logo-REV-300x275.png\";s:5:\"title\";s:0:\"\";}i:5;a:15:{s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:2324;s:6:\"height\";i:2526;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:21:\"https://classerly.com\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:113;s:3:\"url\";s:83:\"https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG-276x300.png\";s:5:\"title\";s:13:\"Classerly.com\";}}','yes'),(108,'widget_media_gallery','a:2:{i:2;a:7:{s:5:\"title\";s:0:\"\";s:3:\"ids\";a:0:{}s:7:\"columns\";i:3;s:4:\"size\";s:9:\"thumbnail\";s:9:\"link_type\";s:4:\"post\";s:14:\"orderby_random\";b:0;s:4:\"type\";s:7:\"default\";}s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'recovery_keys','a:0:{}','yes'),(114,'theme_mods_twentytwenty','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1588347477;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}','yes'),(193,'minamaze_thinkup_child_settings_emagazine','1','yes'),(192,'thinkup_redux_variables','a:25:{s:26:\"thinkup_header_styleswitch\";s:0:\"\";s:18:\"thinkup_blog_style\";s:0:\"\";s:25:\"thinkup_blog_style1layout\";s:0:\"\";s:25:\"thinkup_blog_style2layout\";s:0:\"\";s:26:\"thinkup_styles_colorswitch\";s:0:\"\";s:26:\"thinkup_styles_colorcustom\";s:0:\"\";s:25:\"thinkup_styles_skinswitch\";s:1:\"1\";s:19:\"thinkup_styles_skin\";s:9:\"emagazine\";s:23:\"thinkup_homepage_layout\";s:7:\"option1\";s:29:\"thinkup_homepage_sliderswitch\";s:7:\"option4\";s:35:\"thinkup_homepage_sliderimage1_image\";a:1:{s:3:\"url\";s:78:\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-scaled.jpg\";}s:30:\"thinkup_homepage_sectionswitch\";i:1;s:35:\"thinkup_homepage_sliderimage2_image\";a:1:{s:3:\"url\";s:78:\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-scaled.jpg\";}s:35:\"thinkup_homepage_sliderimage3_image\";a:1:{s:3:\"url\";s:78:\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143436-scaled.jpg\";}s:25:\"thinkup_homepage_sidebars\";s:7:\"Sidebar\";s:28:\"thinkup_homepage_introswitch\";b:1;s:22:\"thinkup_general_layout\";s:7:\"option1\";s:24:\"thinkup_general_sidebars\";s:7:\"Sidebar\";s:33:\"thinkup_general_fixedlayoutswitch\";i:1;s:31:\"thinkup_homepage_section1_image\";a:1:{s:2:\"id\";i:36;}s:32:\"thinkup_general_breadcrumbswitch\";i:1;s:27:\"thinkup_header_searchswitch\";i:1;s:28:\"thinkup_general_backupswitch\";i:1;s:34:\"thinkup_homepage_sliderpresetwidth\";i:1;s:19:\"thinkup_blog_layout\";s:7:\"option1\";}','yes'),(123,'boldgrid_settings','a:2:{s:7:\"library\";a:1:{s:35:\"boldgrid-backup/boldgrid-backup.php\";s:8:\"2.13.0.0\";}s:15:\"plugins_checked\";a:2:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:3:{s:6:\"1.12.1\";i:1588347171;s:6:\"1.13.3\";i:1588435841;s:6:\"1.14.2\";i:1595818480;}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:1:{s:5:\"1.3.0\";i:1595818480;}}}','yes'),(124,'boldgrid_backup_id','c9456169','no'),(125,'boldgrid_backup_settings','a:14:{s:8:\"schedule\";a:10:{s:10:\"dow_sunday\";i:0;s:10:\"dow_monday\";i:0;s:11:\"dow_tuesday\";i:0;s:13:\"dow_wednesday\";i:0;s:12:\"dow_thursday\";i:0;s:10:\"dow_friday\";i:0;s:12:\"dow_saturday\";i:0;s:5:\"tod_h\";i:3;s:5:\"tod_m\";i:27;s:5:\"tod_a\";s:2:\"AM\";}s:15:\"retention_count\";i:5;s:18:\"notification_email\";s:18:\"374curry@gmail.com\";s:13:\"notifications\";a:3:{s:6:\"backup\";i:1;s:7:\"restore\";i:1;s:10:\"site_check\";b:1;}s:11:\"auto_backup\";i:1;s:13:\"auto_rollback\";i:1;s:6:\"remote\";a:1:{s:5:\"local\";a:1:{s:7:\"enabled\";b:1;}}s:14:\"exclude_tables\";a:0:{}s:24:\"folder_exclusion_include\";s:18:\"WPCORE,/wp-content\";s:24:\"folder_exclusion_exclude\";s:17:\".git,node_modules\";s:10:\"site_check\";a:4:{s:7:\"enabled\";b:1;s:6:\"logger\";b:1;s:13:\"auto_recovery\";b:0;s:8:\"interval\";i:15;}s:10:\"encrypt_db\";b:0;s:16:\"backup_directory\";s:29:\"/home/chicso5/boldgrid_backup\";s:11:\"cron_secret\";s:64:\"af1a9698e8aef3c974dc107bb3d98271af389f6febcbe7de720667636211b836\";}','no'),(128,'jetpack_sync_settings_disable','0','yes'),(169,'theme_mods_hotel-luxury','a:5:{s:18:\"custom_css_post_id\";i:203;s:12:\"header_image\";s:88:\"https://374curry.com/wp-content/uploads/2020/05/cropped-IMG_20200321_174621-scaled-1.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:13;s:3:\"url\";s:88:\"https://374curry.com/wp-content/uploads/2020/05/cropped-IMG_20200321_174621-scaled-1.jpg\";s:13:\"thumbnail_url\";s:88:\"https://374curry.com/wp-content/uploads/2020/05/cropped-IMG_20200321_174621-scaled-1.jpg\";s:6:\"height\";i:635;s:5:\"width\";i:1500;}s:18:\"nav_menu_locations\";a:1:{s:6:\"menu-1\";i:3;}s:11:\"page_layout\";s:12:\"left-sidebar\";}','yes'),(133,'do_activate','0','yes'),(134,'jetpack_activated','2','yes'),(135,'jetpack_options','a:10:{s:7:\"version\";s:16:\"8.7.1:1595818487\";s:11:\"old_version\";s:14:\"8.5:1588957754\";s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;s:2:\"id\";i:176788099;s:6:\"public\";i:1;s:11:\"master_user\";i:1;s:14:\"last_heartbeat\";i:1601224404;s:16:\"first_admin_view\";b:1;s:9:\"hide_jitm\";a:1:{s:10:\"vaultpress\";a:2:{s:14:\"last_dismissal\";i:1596430759;s:6:\"number\";i:1;}}}','yes'),(1309,'jetpack_sync_settings_full_sync_send_duration','9','yes'),(158,'can_compress_scripts','1','no'),(35579,'jetpack_connection_active_plugins','a:1:{s:7:\"jetpack\";a:1:{s:4:\"name\";s:7:\"Jetpack\";}}','yes'),(35589,'woocommerce_version','4.3.1','yes'),(35594,'woocommerce_homescreen_enabled','yes','yes'),(35617,'wc_blocks_db_schema_version','260','yes'),(35603,'wc_admin_note_home_screen_feedback_homescreen_accessed','1595818486','yes'),(490,'stats_cache','a:2:{s:32:\"9c44332619a785b41139995ad0fb574f\";a:1:{i:1601224663;a:2:{i:0;a:4:{s:7:\"post_id\";s:2:\"94\";s:10:\"post_title\";s:28:\"374 Curry Avenue- Smart Home\";s:14:\"post_permalink\";s:21:\"https://374curry.com/\";s:5:\"views\";s:2:\"10\";}i:1;a:4:{s:7:\"post_id\";s:2:\"50\";s:10:\"post_title\";s:15:\"Downstairs Unit\";s:14:\"post_permalink\";s:37:\"https://374curry.com/downstairs-unit/\";s:5:\"views\";s:1:\"1\";}}}s:32:\"621f1526ec7626893daef36d08d0f360\";a:1:{i:1601224663;a:0:{}}}','yes'),(53710,'_transient_timeout_jetpack_scan_state','1601226463','no'),(53711,'_transient_jetpack_scan_state','O:8:\"stdClass\":4:{s:5:\"state\";s:11:\"unavailable\";s:7:\"threats\";N;s:9:\"has_cloud\";b:0;s:6:\"reason\";s:23:\"missing_scan_capability\";}','no'),(53712,'_transient_timeout_jetpack_jitm_43ab3d9d79e0faf43872a3e8badc223','1601224963','no'),(53713,'_transient_jetpack_jitm_43ab3d9d79e0faf43872a3e8badc223','a:2:{i:0;O:8:\"stdClass\":11:{s:7:\"content\";O:8:\"stdClass\":5:{s:7:\"message\";s:28:\"Give your site a speed boost\";s:4:\"icon\";s:7:\"jetpack\";s:4:\"list\";a:0:{}s:11:\"description\";s:122:\"Activate the Jetpack site accelerator to load pages faster and optimize images through our global content delivery network\";s:7:\"classes\";s:0:\"\";}s:3:\"CTA\";O:8:\"stdClass\":5:{s:7:\"message\";s:10:\"Learn More\";s:4:\"hook\";s:0:\"\";s:9:\"newWindow\";b:1;s:7:\"primary\";b:1;s:4:\"link\";s:0:\"\";}s:8:\"template\";s:7:\"default\";s:3:\"ttl\";i:300;s:2:\"id\";s:9:\"asset_cdn\";s:13:\"feature_class\";s:3:\"cdn\";s:7:\"expires\";i:3628800;s:13:\"max_dismissal\";i:2;s:15:\"activate_module\";s:10:\"photon-cdn\";s:14:\"is_dismissible\";b:1;s:26:\"is_user_created_by_partner\";N;}s:18:\"last_response_time\";i:1601224663;}','no'),(53714,'_site_transient_timeout_community-events-c53347e48bd72243d4f86942f3d43739','1601267864','no'),(53715,'_site_transient_community-events-c53347e48bd72243d4f86942f3d43739','a:3:{s:9:\"sandboxed\";b:0;s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"99.227.49.0\";}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:27:\"WordCamp Rochester, NY, USA\";s:3:\"url\";s:36:\"https://2020.rochester.wordcamp.org/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2020-10-03 08:35:00\";s:8:\"end_date\";s:19:\"2020-10-03 08:35:00\";s:20:\"start_unix_timestamp\";i:1601728500;s:18:\"end_unix_timestamp\";i:1601728500;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:43.156577900000002045999281108379364013671875;s:9:\"longitude\";d:-77.608846499999998513885657303035259246826171875;}}}}','no'),(53716,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1601267864','no'),(53717,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"News –  – WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Sep 2020 21:00: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:\"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.6-alpha-49051\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 5.5.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2020/09/wordpress-5-5-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Sep 2020 19:13:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=8979\";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:460:\"WordPress 5.5.1 is now available! This maintenance release features&#160;34 bug fixes, 5 enhancements, and&#160;5 bug fixes&#160;for the&#160;block&#160;editor. These bugs affect WordPress version 5.5, so you’ll want to upgrade. You can download WordPress 5.5.1 directly, or visit the&#160;Dashboard → Updates screen&#160;and click&#160;Update Now. If your sites support automatic background updates, they’ve already started the update process. [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9020:\"\n<p>WordPress 5.5.1 is now available!</p>\n\n\n\n<p>This maintenance release features&nbsp;<a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=5.5.1&amp;group=status&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\" target=\"_blank\">34 bug fixes, 5 enhancements</a>, and&nbsp;<a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/gutenberg/pull/24828\" target=\"_blank\">5 bug fixes</a>&nbsp;for the&nbsp;block&nbsp;editor. These bugs affect WordPress version 5.5, so you’ll want to upgrade.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-5.5.1.zip\">download WordPress 5.5.1 directly</a>, or visit the<strong>&nbsp;Dashboard → Updates</strong> screen&nbsp;and click&nbsp;<strong>Update Now</strong>. If your sites support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<p>WordPress 5.5.1 is a short-cycle maintenance release. The next major release will be <a href=\"https://make.wordpress.org/core/5-6/\">version 5.6</a>.</p>\n\n\n\n<p>To see a full list of changes, you can browse the&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=5.5.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">list on Trac</a>, read the <a href=\"https://make.wordpress.org/core/2020/08/27/wordpress-5-5-1-rc1/\">5.5.1 RC1</a> and <a href=\"https://make.wordpress.org/core/2020/08/31/wordpress-5-5-1-rc2/\">5.5.1 RC2</a> posts, or visit the <a href=\"https://wordpress.org/support/wordpress-version/version-5-5-1/\">5.5.1 documentation page</a>.</p>\n\n\n\n<h2>Thanks and props!</h2>\n\n\n\n<p>The 5.5.1 release was led by <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a>, <a href=\'https://profiles.wordpress.org/azhiyadev/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>azhiyadev</a>, <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a>, <a href=\'https://profiles.wordpress.org/desrosj/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>desrosj</a>, <a href=\'https://profiles.wordpress.org/johnbillion/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>johnbillion</a>, <a href=\'https://profiles.wordpress.org/planningwrite/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>planningwrite</a>, <a href=\'https://profiles.wordpress.org/sergeybiryukov/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sergeybiryukov</a> and <a href=\'https://profiles.wordpress.org/whyisjake/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>whyisjake</a>.</p>\n\n\n\n<p>Thank you to everyone who helped make WordPress 5.5.1 happen:</p>\n\n\n\n<a href=\"https://profiles.wordpress.org/wpamitkumar/\">Amit Dudhat</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/rarst/\">Andrey &#8220;Rarst&#8221; Savchenko</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/akissz/\">Angel Hess</a>, <a href=\"https://profiles.wordpress.org/avixansa/\">avixansa</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/brianhogg/\">Brian Hogg</a>, <a href=\"https://profiles.wordpress.org/chunkysteveo/\">chunkysteveo</a>, <a href=\"https://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dd32/\">dd32</a>, <a href=\"https://profiles.wordpress.org/demetris/\">demetris</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dushakov/\">dushakov</a>, <a href=\"https://profiles.wordpress.org/elrae/\">Earle Davies</a>, <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique Sánchez</a>, <a href=\"https://profiles.wordpress.org/fjarrett/\">Frankie Jarrett</a>, <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">fullofcaffeine</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/gchtr/\">gchtr</a>, <a href=\"https://profiles.wordpress.org/azhiyadev/\">Hauwa</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/howdy_mcgee/\">Howdy_McGee</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/johannadevos/\">Johanna de Vos</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jonathanstegall/\">Jonathan Stegall</a>, <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/akabarikalpesh/\">Kalpesh Akabari</a>, <a href=\"https://profiles.wordpress.org/khag7/\">Kevin Hagerty</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/kbjohnson90/\">Kyle B. Johnson</a>, <a href=\"https://profiles.wordpress.org/landau/\">landau</a>, <a href=\"https://profiles.wordpress.org/laxman-prajapati/\">Laxman Prajapati</a>, <a href=\"https://profiles.wordpress.org/gamerz/\">Lester Chan</a>, <a href=\"https://profiles.wordpress.org/mailnew2ster/\">mailnew2ster</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mapk/\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/gothickgothickorguk/\">Matt Gibson</a>, <a href=\"https://profiles.wordpress.org/tw2113/\">Michael Beckwith</a>, <a href=\"https://profiles.wordpress.org/mikeyarce/\">Mikey Arce</a>, <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/nabilmoqbel/\">Nabil Moqbel</a>, <a href=\"https://profiles.wordpress.org/krstarica/\">net</a>, <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">O André</a>, <a href=\"https://profiles.wordpress.org/omarreiss/\">Omar Reiss</a>, <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/paddy/\">Paddy</a>, <a href=\"https://profiles.wordpress.org/casiepa/\">Pascal Casier</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/rajeshsingh520/\">rajeshsingh520</a>, <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/rebasaurus/\">rebasaurus</a>, <a href=\"https://profiles.wordpress.org/riaanlom/\">riaanlom</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/kreppar/\">Rodrigo Arias</a>, <a href=\"https://profiles.wordpress.org/rtagliento/\">rtagliento</a>, <a href=\"https://profiles.wordpress.org/salvoaranzulla/\">salvoaranzulla</a>, <a href=\"https://profiles.wordpress.org/sanzeeb3/\">Sanjeev Aryal</a>, <a href=\"https://profiles.wordpress.org/sarahricker/\">sarahricker</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/sterndata/\">Steven Stern (sterndata)</a>, <a href=\"https://profiles.wordpress.org/webzunft/\">Thomas M</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/twentyzerotwo/\">TwentyZeroTwo</a>, <a href=\"https://profiles.wordpress.org/planningwrite/\">Winstina</a>, <a href=\"https://profiles.wordpress.org/wittich/\">wittich</a>, and <a href=\"https://profiles.wordpress.org/yoavf/\">Yoav Farhi</a>.\n\";s: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:\"8979\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"The Month in WordPress: August 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2020/09/the-month-in-wordpress-august-2020/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Sep 2020 09:32: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: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=8983\";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:362:\"August was special for WordPress lovers, as one of the most anticipated releases, WordPress 5.5, was launched. The month also saw several updates from various contributor teams, including the soft-launch of the Learn WordPress project and updates to Gutenberg. Read on to find out about the latest updates from the WordPress world. WordPress 5.5 Launch [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9605:\"\n<p>August was special for WordPress lovers, as one of the most anticipated releases, WordPress 5.5, was launched. The month also saw several updates from various contributor teams, including the soft-launch of the Learn WordPress project and updates to Gutenberg. Read on to find out about the latest updates from the WordPress world.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.5 Launch</h2>\n\n\n\n<p>The team launched <a href=\"https://wordpress.org/news/2020/08/eckstine/\">WordPress 5.5</a> on August 11. The major release comes with a host of features like automatic updates for plugins and themes, enabling updates over uploaded ZIP files, a block directory, XML sitemaps, block patterns, inline image editing, and lazy-loading images, to name a few. WordPress 5.5 is now available in 50 languages too! You can update to the latest version directly from your WordPress dashboard or <a href=\"https://wordpress.org/download/\">download</a> it directly from WordPress.org. Subsequent to the 5.5 release, the <a href=\"https://make.wordpress.org/core/2020/08/27/wordpress-5-5-1-rc1/\">5.5.1 release candidate</a> came out on August 28, which will be followed by its official launch of the minor release on September 1.</p>\n\n\n\n<p>A record 805 people contributed to WordPress 5.5, hailing from 58 different countries. <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a> has <a href=\"https://jeanbaptisteaudras.com/en/2020/08/wordpress-5-5-core-stats-contributions-by-country-company/\">compiled many more stats like that</a> and they’re well worth a read!</p>\n\n\n\n<p>Want to get involved in building WordPress Core? Follow<a href=\"https://make.wordpress.org/core/\"> the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Gutenberg 8.7 and 8.8</h2>\n\n\n\n<p>The core team launched Gutenberg <a href=\"https://make.wordpress.org/core/2020/08/05/whats-new-in-gutenberg-august-5/\">8.7</a> and <a href=\"https://make.wordpress.org/core/2020/08/19/whats-new-in-gutenberg-august-19/\">8.8</a>. Version 8.7 saw many improvements to the Post Block suite, along with other changes like adding a block example to the Buttons block, consistently autosaving edits, and updating the group block description. Version 8.8 offers updates to Global Styles, the Post Block suite, and Template management. The release significantly improves the back-compatibility of the new Widget Screen, and also includes other important accessibility and mobile improvements to user interfaces like the Toolbar, navigation menus, and Popovers. For full details on the latest versions of these Gutenberg releases, visit these posts about <a href=\"https://make.wordpress.org/core/2020/08/05/whats-new-in-gutenberg-august-5/\">8.7</a> and <a href=\"https://make.wordpress.org/core/2020/08/19/whats-new-in-gutenberg-august-19/\">8.8</a>.</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the #core-editor channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Check out the brand new Learn WordPress platform!</h2>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a> is a brand new cross-team initiative led by the <a href=\"https://make.wordpress.org/community/\">WordPress Community team</a>, with support from the <a href=\"https://make.wordpress.org/training/\">training team</a>, the <a href=\"https://make.wordpress.org/tv/\">TV team</a>, and the <a href=\"https://make.wordpress.org/meta/\">meta team</a>. This platform is a learning repository on <a href=\"https://learn.wordpress.org/\">learn.wordpress.org</a>, where WordPress learning content will be made available. Video workshops published on the site will be followed up by supplementary discussion groups based on workshop content. The first of these discussion groups have been scheduled, and you can join an upcoming discussion <a href=\"https://www.meetup.com/learn-wordpress-discussions/events/\">on the dedicated meetup group</a>. The community team invites members to contribute to the project. You can apply to <a href=\"https://wordcampcentral.survey.fm/learn-wordpress-workshop-application\">present a workshop</a>, <a href=\"https://wordcampcentral.survey.fm/learn-wordpress-reviewer-application\">assist with reviewing</a> submitted workshops, and <a href=\"https://docs.google.com/spreadsheets/d/1A6BYIZAtqk3alBFtJBg-7Q7Y7NBLRnoRFbRTGho2rfI/edit\">add ideas for workshops</a> that you would like to see on the site. You can also apply<a href=\"https://wordcampcentral.survey.fm/learn-wordpress-discussion-group-leader-application\"> to be a discussion group leader</a> to organize discussions directly through the <a href=\"https://learn.wordpress.org\">learn.wordpress.org</a> platform. We are also creating a dedicated Learn WordPress working group and have <a href=\"https://make.wordpress.org/community/2020/08/24/learn-wordpress-working-group-call-for-volunteers/\">posted a call for volunteers</a>. Meetup organizers can use <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> content for their meetup events (without applying as a discussion group leader). Simply ask your meetup group to watch one of the workshops in the weeks leading up to your scheduled event, and then host a discussion group for that content as your event.</p>\n\n\n\n<p>Want to get involved with the Community team? <a href=\"https://make.wordpress.org/community/\">Follow the Community blog</a>, or join them in the #community-events channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>. To organize a local WordPress community event, <a href=\"https://make.wordpress.org/community/handbook/virtual-events/welcome/applying-for-a-virtual-event/\">visit the handbook page</a>. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>As <a href=\"https://make.wordpress.org/core/2020/03/11/all-women-release-squad/\">proposed previously</a>, WordPress 5.6 will have an all-women release squad. The team has <a href=\"https://make.wordpress.org/core/2020/08/13/wordpress-5-6-release-planning/\">started work on the 5.6 release planning</a>.</li><li>The community team has decided to <a href=\"https://make.wordpress.org/community/2020/08/04/announcement-flagship-events-in-2021/\">cancel in-person flagship WordPress events</a> in 2021. While new applications for flagship events in 2021 will not be accepted, organizers of existing flagship events (such as WordCamp US, Europe, and Asia) will have the option to move their event online. </li><li>The core team is working on <a href=\"https://core.trac.wordpress.org/ticket/37110\">updating the jQuery version</a> that comes with WordPress. As the first step, the <a href=\"https://make.wordpress.org/core/2020/06/29/updating-jquery-version-shipped-with-wordpress/\">team removed the jQuery Migrate 1.4.1 script </a>from WordPress 5.5. Those who wish to use jQuery migrate for maintaining plugin compatibility can install the <a href=\"https://wordpress.org/plugins/enable-jquery-migrate-helper/\">Enable jQuery Migrate Helper plugin</a>, which has currently reached the 100k installs mark. </li><li>The WordPress documentation team is continuing its discussion on modifying the external linking policy. The conversation is taking place on a <a href=\"https://docs.google.com/document/d/1i0ipOTmKPShSIMoFuEXnI3gkOOUrPJb9t4HMf30JWC0/edit#heading=h.l0cppyl5zvhs\">shared Google doc</a>. Feel free to add comments if you have any thoughts on the topic. </li><li>WordPress will <a href=\"https://core.trac.wordpress.org/ticket/51043#comment:7\">not drop support for PHP 5.6</a>, as initially decided, in order to maintain better version compatibility. The team has additionally come up with a <a href=\"https://make.wordpress.org/core/2020/08/24/proposal-dropping-support-for-old-php-versions-via-a-fixed-schedule/\">proposal to drop support for old PHP versions via a fixed schedule</a>.</li><li>The maiden edition of <a href=\"https://doaction.org/event/india-2020\">do_action India online</a> was held from August 15 to 23. The event, which was held online with collaboration tools, had 94 participants who built fully functional websites for five NGOs from across the country. You can read more about 2020 do_action events <a href=\"https://wordpressfoundation.org/2020/charity-hackathons-august-2020-report/\">on the WordPress Foundation blog</a>.</li><li>The Accessibility team has <a href=\"https://make.wordpress.org/accessibility/2020/08/25/accessibility-teams-goals-for-wordpress-5-6-and-beyond/\">published their goals for WordPress 5.6 and beyond</a> and has started working on them.</li><li><a href=\"https://minneapolis.wordcamp.org/2020/\">WordCamp Minneapolis/St. Paul</a> was held successfully on August 21. The event, which sold over 1400 tickets, had 18 speakers and 12 sponsors.</li><li>The Polyglots team has completed the translation <a href=\"https://make.wordpress.org/polyglots/2020/08/19/polyglots-handbook-reorganization-update/\">handbook structure organization</a>. The handbook now has clear guides for translators, PTEs/GTEs, global mentors, and Plugin/Theme authors.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"8983\";s: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:63:\"\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:28:\"WordPress 5.5 “Eckstine”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://wordpress.org/news/2020/08/eckstine/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 11 Aug 2020 19:03:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"5.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=8799\";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:\"Version 5.5 \"Eckstine\" of WordPress is available for download or update in your WordPress dashboard. With this release, your site gets new power in three major areas: \nspeed (lazy-loading images), search (sitemaps included by default), and security (auto-updates for plugins and themes), along with many new features and improvements to the block editor.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:3:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:48:\"https://s.w.org/images/core/5.5/auto-updates.mp4\";s:6:\"length\";s:6:\"238264\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:50:\"https://s.w.org/images/core/5.5/block-patterns.mp4\";s:6:\"length\";s:7:\"3518792\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:56:\"https://s.w.org/images/core/5.5/inline-image-editing.mp4\";s:6:\"length\";s:7:\"3145140\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:71071:\"\n<p>Here it is! Named “Eckstine” in honor of Billy Eckstine, this latest and greatest version of WordPress is available for&nbsp;<a href=\"https://wordpress.org/download/\">download</a> or update in your dashboard.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"514\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/08/Billy_duotone-1000px_quiche-sans-top.png?resize=632%2C514&#038;ssl=1\" alt=\"\" class=\"wp-image-8930\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2020/08/Billy_duotone-1000px_quiche-sans-top.png?w=1000&amp;ssl=1 1000w, https://i0.wp.com/wordpress.org/news/files/2020/08/Billy_duotone-1000px_quiche-sans-top.png?resize=300%2C244&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2020/08/Billy_duotone-1000px_quiche-sans-top.png?resize=768%2C625&amp;ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#f2edd4;min-height:300px\"><div class=\"wp-block-cover__inner-container\">\n<p class=\"has-text-align-center has-black-color has-text-color has-background has-large-font-size\" style=\"background-color:#f2edd4\">Welcome to WordPress 5.5.</p>\n\n\n\n<h3 class=\"has-text-align-center has-black-color has-text-color\">In WordPress 5.5, your site gets new power in three major areas: <br>speed, search, and security.</h3>\n</div></div>\n\n\n\n<div class=\"wp-block-columns has-white-background-color has-background\">\n<div class=\"wp-block-column\" style=\"flex-basis:2%\"></div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:96%\">\n<h2>Speed</h2>\n\n\n\n<p><strong>Posts and pages feel faster, thanks to lazy-loaded images.</strong></p>\n\n\n\n<p>Images give your story a lot of impact, but they can sometimes make your site seem slow.</p>\n\n\n\n<p>In WordPress 5.5, images wait to load until they’re just about to scroll into view. The technical term is ‘lazy loading.’</p>\n\n\n\n<p>On mobile, lazy loading can also keep browsers from loading files meant for other devices. That can save your readers money on data — and help preserve battery life.</p>\n\n\n\n<h2>Search</h2>\n\n\n\n<p><strong>Say hello to your new sitemap.</strong></p>\n\n\n\n<p>WordPress sites work well with search engines.</p>\n\n\n\n<p>Now, by default, WordPress 5.5 includes an XML sitemap that helps search engines discover your most important pages from the very minute you go live.</p>\n\n\n\n<p>So more people will find your site sooner, giving you more time to engage, retain and convert them to subscribers, customers or whatever fits your definition of success.</p>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:2%\"></div>\n</div>\n\n\n\n<div class=\"wp-block-columns has-background\" style=\"background-color:#ebcd3d\">\n<div class=\"wp-block-column\" style=\"flex-basis:2%\"></div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:96%\">\n<h2>Security</h2>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://s.w.org/images/core/5.5/auto-updates.mp4\"></video><figcaption>Now you can choose to update plugins and themes automatically–or pick just a few–from the screens you’ve always used.</figcaption></figure>\n\n\n\n<p><strong>Auto-updates for Plugins and Themes</strong></p>\n\n\n\n<p>Now you can set plugins and themes to update automatically — or not! — in the WordPress admin. So you always know your site is running the latest code available.</p>\n\n\n\n<p>You can also turn auto-updates on or off for each plugin or theme you have installed — all on the same screens you’ve always used.</p>\n\n\n\n<p><strong>Update by uploading ZIP files</strong></p>\n\n\n\n<p>If updating plugins and themes manually is your thing, now that’s easier too — just upload a ZIP file.</p>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:2%\"></div>\n</div>\n\n\n\n<div class=\"wp-block-columns has-background\" style=\"background-color:#f2edd4\">\n<div class=\"wp-block-column\" style=\"flex-basis:2%\"></div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:96%\">\n<h2>Highlights from the block editor</h2>\n\n\n\n<p>Once again, the latest WordPress release packs a long list of exciting new features for the block editor. For example:</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://s.w.org/images/core/5.5/block-patterns.mp4\"></video></figure>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\">\n<h3>Block patterns</h3>\n\n\n\n<p>New block patterns make it simple and fun to create complex, beautiful layouts, using combinations of text and media that you can mix and match to fit your story.</p>\n\n\n\n<p>You will also find block patterns in a wide variety of plugins and themes, with more added all the time. Pick any of them from a single place — just click and go!</p>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<h3>The new block directory</h3>\n\n\n\n<p>Now it’s easier than ever to find the block you need. The new block directory is built right into the block editor, so you can install new block types to your site without ever leaving the editor.</p>\n\n\n\n<h3>Inline image editing</h3>\n\n\n\n<p>Crop, rotate, and zoom your photos right from the image block. If you spend a lot of time on images, this could save you hours!</p>\n</div>\n</div>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://s.w.org/images/core/5.5/inline-image-editing.mp4\"></video></figure>\n\n\n\n<h3>And so much more.</h3>\n\n\n\n<p>The highlights above are a tiny fraction of the new block editor features you’ve just installed. Open the block editor and enjoy!</p>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:2%\"></div>\n</div>\n\n\n\n<div class=\"wp-block-columns has-white-background-color has-background\">\n<div class=\"wp-block-column\" style=\"flex-basis:2%\"></div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:96%\">\n<h2>Accessibility</h2>\n\n\n\n<p>Every release adds improvements to the accessible publishing experience, and that remains true for WordPress 5.5.</p>\n\n\n\n<p>Now you can copy links in media screens and modal dialogs with a button, instead of trying to highlight a line of text.</p>\n\n\n\n<p>You can also move meta boxes with the keyboard, and edit images in WordPress with your assistive device, as it can read you the instructions in the image editor.</p>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:2%\"></div>\n</div>\n\n\n\n<div class=\"wp-block-columns has-black-color has-text-color has-background\" style=\"background-color:#ebcd3d\">\n<div class=\"wp-block-column\" style=\"flex-basis:2%\"></div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:96%\">\n<h2>For developers</h2>\n\n\n\n<p>5.5 also brings a big box of changes just for developers.</p>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\">\n<h3>Server-side registered blocks in the REST API</h3>\n\n\n\n<p>The addition of block types endpoints means that JavaScript apps (like the block editor) can retrieve definitions for any blocks registered on the server.</p>\n\n\n\n<h3>Defining environments</h3>\n\n\n\n<p>WordPress now has a standardized way to define a site’s environment type (staging, production, etc). Retrieve that type with&nbsp;<code>wp_get_environment_type()</code>&nbsp;and execute only the appropriate code.</p>\n\n\n\n<h3>Dashicons</h3>\n\n\n\n<p>The Dashicons library has received its final update in 5.5. It adds 39 block editor icons along with 26 others.</p>\n\n\n\n<h3>Passing data to template files</h3>\n\n\n\n<p>The template loading functions (<code>get_header()</code>,&nbsp;<code>get_template_part()</code>, etc.) have a new&nbsp;<code>$args</code>&nbsp;argument. So now you can pass an entire array’s worth of data to those templates.</p>\n</div>\n\n\n\n<div class=\"wp-block-column\">\n<h3>More changes for developers</h3>\n\n\n\n<ul><li>The PHPMailer library just got a major update, going from version 5.2.27 to 6.1.6.</li><li>Now get more fine-grained control of&nbsp;<code>redirect_guess_404_permalink()</code>.</li><li>Sites that use PHP’s OPcache will see more reliable cache invalidation, thanks to the new&nbsp;<code>wp_opcache_invalidate()</code>&nbsp;function during updates (including to plugins and themes).</li><li>Custom post types associated with the category taxonomy can now opt-in to supporting the default term.</li><li>Default terms can now be specified for custom taxonomies in&nbsp;<code>register_taxonomy()</code>.</li><li>The REST API now officially supports specifying default metadata values through&nbsp;<code>register_meta()</code>.</li><li>You will find updated versions of these bundled libraries: SimplePie, Twemoji, Masonry, imagesLoaded, getID3, Moment.js, and clipboard.js.</li></ul>\n</div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:2%\"></div>\n</div>\n\n\n\n<div class=\"wp-block-columns has-white-background-color has-background\">\n<div class=\"wp-block-column\" style=\"flex-basis:2%\"></div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:96%\">\n<h2>The Squad</h2>\n\n\n\n<p>Leading this release were&nbsp;<a href=\"http://ma.tt/\">Matt Mullenweg</a>,&nbsp;<a href=\"https://profiles.wordpress.org/whyisjake\">Jake Spurlock,</a> and&nbsp;<a href=\"https://dream-encode.com/blog/\">David Baumwald</a>. Supporting them was this highly enthusiastic release squad:</p>\n\n\n\n<ul><li><strong>Editor Tech</strong>: Ella Van Durpe (<a href=\'https://profiles.wordpress.org/ellatrix/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ellatrix</a>)</li><li><strong>Editor Design</strong>: Michael Arestad (<a href=\'https://profiles.wordpress.org/michael-arestad/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>michael-arestad</a>)</li><li><strong>Core Tech</strong>: Sergey Biryukov (<a href=\'https://profiles.wordpress.org/sergeybiryukov/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sergeybiryukov</a>)</li><li><strong>Media Tech: </strong>Andrew Ozz (<a href=\'https://profiles.wordpress.org/azaozz/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>azaozz</a>)</li><li><strong>Accessibility Tech</strong>: JB Audras (<a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a>)</li><li><strong>Docs Coordinator</strong>:&nbsp;Justin Ahinon (<a href=\'https://profiles.wordpress.org/justinahinon/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>justinahinon</a>)</li><li><strong>Marketing/Comms Coordinator</strong>: Mary Baum (<a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a>)</li></ul>\n\n\n\n<p>Joining the squad throughout the release cycle were <strong>805 generous volunteer contributors</strong> who collectively worked on over <strong><a href=\"https://core.trac.wordpress.org/milestone/5.5\">523</a> tickets on Trac</strong> and <strong>over 1660 pull requests on GitHub</strong>.</p>\n\n\n\n<p>Put on a Billy Eckstine playlist, click that update button (or&nbsp;<a href=\"https://wordpress.org/download/\">download it directly</a>), and check the profiles of the fine folks that helped:</p>\n\n\n<a href=\"https://profiles.wordpress.org/a2hosting/\">A2 Hosting</a>, <a href=\"https://profiles.wordpress.org/a4jpcom/\">a4jp . com</a>, <a href=\"https://profiles.wordpress.org/a6software/\">a6software</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abderrahman/\">abderrahman</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>, <a href=\"https://profiles.wordpress.org/ibachal/\">Achal Jain</a>, <a href=\"https://profiles.wordpress.org/achbed/\">achbed</a>, <a href=\"https://profiles.wordpress.org/achyuthajoy/\">Achyuth Ajoy</a>, <a href=\"https://profiles.wordpress.org/acosmin/\">acosmin</a>, <a href=\"https://profiles.wordpress.org/acsnaterse/\">acsnaterse</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addie</a>, <a href=\"https://profiles.wordpress.org/addyosmani/\">addyosmani</a>, <a href=\"https://profiles.wordpress.org/adnanlimdi/\">adnan.limdi</a>, <a href=\"https://profiles.wordpress.org/adrian/\">adrian</a>, <a href=\"https://profiles.wordpress.org/airamerica/\">airamerica</a>, <a href=\"https://profiles.wordpress.org/ajayghaghretiya1/\">Ajay Ghaghretiya</a>, <a href=\"https://profiles.wordpress.org/ajitbohra/\">Ajit Bohra</a>, <a href=\"https://profiles.wordpress.org/akbarhusen/\">akbarhusen</a>, <a href=\"https://profiles.wordpress.org/akbarhusen429/\">akbarhusen429</a>, <a href=\"https://profiles.wordpress.org/akhileshsabharwal/\">Akhilesh Sabharwal</a>, <a href=\"https://profiles.wordpress.org/atachibana/\">Akira Tachibana</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juh&#233; Lluveras</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/akirk/\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/alishanvr/\">Ali Shan</a>, <a href=\"https://profiles.wordpress.org/ali11007/\">ali11007</a>, <a href=\"https://profiles.wordpress.org/allendav/\">Allen Snook</a>, <a href=\"https://profiles.wordpress.org/amaschas/\">amaschas</a>, <a href=\"https://profiles.wordpress.org/wpamitkumar/\">Amit Dudhat</a>, <a href=\"https://profiles.wordpress.org/anbumz/\">anbumz</a>, <a href=\"https://profiles.wordpress.org/andfinally/\">andfinally</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andreamiddleton/\">Andrea Middleton</a>, <a href=\"https://profiles.wordpress.org/dontdream/\">Andrea Tarantini</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/aduth/\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/anevins/\">Andrew Nevins</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst/\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">Andrés Maneiro</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/apeatling/\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/akissz/\">Angel Hess</a>, <a href=\"https://profiles.wordpress.org/angelasjin/\">Angela Jin</a>, <a href=\"https://profiles.wordpress.org/la-geek/\">Angelika Reisiger</a>, <a href=\"https://profiles.wordpress.org/rilwis/\">Anh Tran</a>, <a href=\"https://profiles.wordpress.org/wpgurudev/\">Ankit Gade</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a>, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/ahortin/\">Anthony Hortin</a>, <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/antonisme/\">Antonis Lilis</a>, <a href=\"https://profiles.wordpress.org/apedog/\">apedog</a>, <a href=\"https://profiles.wordpress.org/archon810/\">archon810</a>, <a href=\"https://profiles.wordpress.org/argentite/\">argentite</a>, <a href=\"https://profiles.wordpress.org/arpitgshah/\">Arpit G Shah</a>, <a href=\"https://profiles.wordpress.org/passoniate/\">Arslan Ahmed</a>, <a href=\"https://profiles.wordpress.org/asalce/\">asalce</a>, <a href=\"https://profiles.wordpress.org/ashiagr/\">ashiagr</a>, <a href=\"https://profiles.wordpress.org/ashour/\">ashour</a>, <a href=\"https://profiles.wordpress.org/tacitonic/\">Atharva Dhekne</a>, <a href=\"https://profiles.wordpress.org/ajoah/\">Aur&#233;lien Joahny</a>, <a href=\"https://profiles.wordpress.org/aussi/\">aussi</a>, <a href=\"https://profiles.wordpress.org/automaton/\">automaton</a>, <a href=\"https://profiles.wordpress.org/avixansa/\">avixansa</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/backups/\">BackuPs</a>, <a href=\"https://profiles.wordpress.org/barry/\">Barry</a>, <a href=\"https://profiles.wordpress.org/barryceelen/\">Barry Ceelen</a>, <a href=\"https://profiles.wordpress.org/bartczyz/\">Bart Czyz</a>, <a href=\"https://profiles.wordpress.org/bartekcholewa/\">bartekcholewa</a>, <a href=\"https://profiles.wordpress.org/bartkalisz/\">bartkalisz</a>, <a href=\"https://profiles.wordpress.org/bastho/\">Bastien Ho</a>, <a href=\"https://profiles.wordpress.org/bmartinent/\">Bastien Martinent</a>, <a href=\"https://profiles.wordpress.org/bcworkz/\">bcworkz</a>, <a href=\"https://profiles.wordpress.org/bdbch/\">bdbch</a>, <a href=\"https://profiles.wordpress.org/bdcstr/\">bdcstr</a>, <a href=\"https://profiles.wordpress.org/empireoflight/\">Ben Dunkle</a>, <a href=\"https://profiles.wordpress.org/grapestain/\">Bence Szalai</a>, <a href=\"https://profiles.wordpress.org/bencroskery/\">bencroskery</a>, <a href=\"https://profiles.wordpress.org/benjamingosset/\">Benjamin Gosset</a>, <a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/bettyjj/\">BettyJJ</a>, <a href=\"https://profiles.wordpress.org/bgermann/\">bgermann</a>, <a href=\"https://profiles.wordpress.org/bigcloudmedia/\">bigcloudmedia</a>, <a href=\"https://profiles.wordpress.org/bigdawggi/\">bigdawggi</a>, <a href=\"https://profiles.wordpress.org/billerickson/\">Bill Erickson</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/bjornw/\">BjornW</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 Gorges</a>, <a href=\"https://profiles.wordpress.org/bbrdaric/\">Boris Brdarić</a>, <a href=\"https://profiles.wordpress.org/ibdz/\">Boy Witthaya</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/bpayton/\">Brandon Payton</a>, <a href=\"https://profiles.wordpress.org/brentswisher/\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/brianhogg/\">Brian Hogg</a>, <a href=\"https://profiles.wordpress.org/krogsgard/\">Brian Krogsgard</a>, <a href=\"https://profiles.wordpress.org/bruandet/\">bruandet</a>, <a href=\"https://profiles.wordpress.org/bhargavbhandari90/\">Bunty</a>, <a href=\"https://profiles.wordpress.org/burhandodhy/\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/caiocrcosta/\">caiocrcosta</a>, <a href=\"https://profiles.wordpress.org/cvoell/\">Cameron Voell</a>, <a href=\"https://profiles.wordpress.org/cameronamcintyre/\">cameronamcintyre</a>, <a href=\"https://profiles.wordpress.org/carike/\">Carike</a>, <a href=\"https://profiles.wordpress.org/stuffradio/\">Carl Wuensche</a>, <a href=\"https://profiles.wordpress.org/carloslfu/\">Carlos Galarza</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/carriganvb/\">Carrigan</a>, <a href=\"https://profiles.wordpress.org/ceyhun/\">ceyhun</a>, <a href=\"https://profiles.wordpress.org/shireling/\">Chad</a>, <a href=\"https://profiles.wordpress.org/cbutlerjr/\">Chad Butler</a>, <a href=\"https://profiles.wordpress.org/mackensen/\">Charles Fulton</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a>, <a href=\"https://profiles.wordpress.org/chipsnyder/\">Chip Snyder</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>, <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/christian1012/\">Christian Chung</a>, <a href=\"https://profiles.wordpress.org/cjbj/\">Christian Jongeneel</a>, <a href=\"https://profiles.wordpress.org/pixelverbieger/\">Christian Sabo</a>, <a href=\"https://profiles.wordpress.org/needle/\">Christian Wach</a>, <a href=\"https://profiles.wordpress.org/christophherr/\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/vimes1984/\">Christopher Churchill</a>, <a href=\"https://profiles.wordpress.org/chunkysteveo/\">chunkysteveo</a>, <a href=\"https://profiles.wordpress.org/cklee/\">cklee</a>, <a href=\"https://profiles.wordpress.org/clayray/\">clayray</a>, <a href=\"https://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a>, <a href=\"https://profiles.wordpress.org/cliffpaulick/\">Clifford Paulick</a>, <a href=\"https://profiles.wordpress.org/codeforest/\">codeforest</a>, <a href=\"https://profiles.wordpress.org/commeuneimage/\">Commeuneimage</a>, <a href=\"https://profiles.wordpress.org/copons/\">Copons</a>, <a href=\"https://profiles.wordpress.org/coreymckrill/\">Corey McKrill</a>, <a href=\"https://profiles.wordpress.org/cpasqualini/\">cpasqualini</a>, <a href=\"https://profiles.wordpress.org/cristovaov/\">Cristovao Verstraeten</a>, <a href=\"https://profiles.wordpress.org/littlebigthing/\">Csaba (LittleBigThings)</a>, <a href=\"https://profiles.wordpress.org/curtisbelt/\">Curtis Belt</a>, <a href=\"https://profiles.wordpress.org/clarinetlord/\">Cyrus Collier</a>, <a href=\"https://profiles.wordpress.org/dperonne/\">D.PERONNE</a>, <a href=\"https://profiles.wordpress.org/dsixinetu/\">d6</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/danielhuesken/\">Daniel H&#252;sken</a>, <a href=\"https://profiles.wordpress.org/danieltj/\">Daniel James</a>, <a href=\"https://profiles.wordpress.org/diddledan/\">Daniel Llewellyn</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/confridin/\">Daniel Roch</a>, <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/dboy1988/\">Danny</a>, <a href=\"https://profiles.wordpress.org/darkog/\">Darko G.</a>, <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/dmchale/\">Dave McHale</a>, <a href=\"https://profiles.wordpress.org/drw158/\">Dave Whitley</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/dartiss/\">David Artiss</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/dbrumbaugh10up/\">David Brumbaugh</a>, <a href=\"https://profiles.wordpress.org/desmith/\">David E. Smith</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dryanpress/\">David Ryan</a>, <a href=\"https://profiles.wordpress.org/dshanske/\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a>, <a href=\"https://profiles.wordpress.org/davidvee/\">davidvee</a>, <a href=\"https://profiles.wordpress.org/dchymko/\">dchymko</a>, <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a>, <a href=\"https://profiles.wordpress.org/deepaklalwani/\">Deepak Lalwani</a>, <a href=\"https://profiles.wordpress.org/dekervit/\">dekervit</a>, <a href=\"https://profiles.wordpress.org/delowardev/\">Delowar Hossain</a>, <a href=\"https://profiles.wordpress.org/demetris/\">demetris</a>, <a href=\"https://profiles.wordpress.org/denisco/\">Denis Yanchevskiy</a>, <a href=\"https://profiles.wordpress.org/derekakelly/\">derekakelly</a>, <a href=\"https://profiles.wordpress.org/pcfreak30/\">Derrick Hammer</a>, <a href=\"https://profiles.wordpress.org/emrikol/\">Derrick Tennant</a>, <a href=\"https://profiles.wordpress.org/dianeco/\">Diane Co</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/dimitrism/\">Dimitris Mitsis</a>, <a href=\"https://profiles.wordpress.org/dingo_d/\">dingo-d</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dency/\">Dixita Dusara</a>, <a href=\"https://profiles.wordpress.org/djennez/\">djennez</a>, <a href=\"https://profiles.wordpress.org/dmenard/\">dmenard</a>, <a href=\"https://profiles.wordpress.org/dmethvin/\">dmethvin</a>, <a href=\"https://profiles.wordpress.org/doc987/\">doc987</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donmhico/\">donmhico</a>, <a href=\"https://profiles.wordpress.org/dono12/\">Dono12</a>, <a href=\"https://profiles.wordpress.org/doobeedoo/\">Doobeedoo</a>, <a href=\"https://profiles.wordpress.org/dossy/\">Dossy Shiobara</a>, <a href=\"https://profiles.wordpress.org/dpacks/\">dpacks</a>, <a href=\"https://profiles.wordpress.org/dratwas/\">dratwas</a>, <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/drlightman/\">DrLightman</a>, <a href=\"https://profiles.wordpress.org/drprotocols/\">DrProtocols</a>, <a href=\"https://profiles.wordpress.org/dsifford/\">dsifford</a>, <a href=\"https://profiles.wordpress.org/dudo/\">dudo</a>, <a href=\"https://profiles.wordpress.org/dushakov/\">dushakov</a>, <a href=\"https://profiles.wordpress.org/dustinbolton/\">Dustin Bolton</a>, <a href=\"https://profiles.wordpress.org/dvershinin/\">dvershinin</a>, <a href=\"https://profiles.wordpress.org/cyberhobo/\">Dylan Kuhn</a>, <a href=\"https://profiles.wordpress.org/elrae/\">Earle Davies</a>, <a href=\"https://profiles.wordpress.org/seedsca/\">ecotechie</a>, <a href=\"https://profiles.wordpress.org/eddiemoya/\">Eddie Moya</a>, <a href=\"https://profiles.wordpress.org/eddystile/\">Eddy</a>, <a href=\"https://profiles.wordpress.org/ediamin/\">Edi Amin</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">ehtis</a>, <a href=\"https://profiles.wordpress.org/itsjusteileen/\">Eileen Violini</a>, <a href=\"https://profiles.wordpress.org/ekatherine/\">Ekaterina</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/elmastudio/\">elmastudio</a>, <a href=\"https://profiles.wordpress.org/emanuel_blagonic/\">Emanuel Blagonic</a>, <a href=\"https://profiles.wordpress.org/emlebrun/\">Emilie LEBRUN</a>, <a href=\"https://profiles.wordpress.org/manooweb/\">Emmanuel Hesry</a>, <a href=\"https://profiles.wordpress.org/enej/\">Enej Bajgoric</a>, <a href=\"https://profiles.wordpress.org/enricosorcinelli/\">Enrico Sorcinelli</a>, <a href=\"https://profiles.wordpress.org/epiqueras/\">Enrique Piqueras</a>, <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique Sánchez</a>, <a href=\"https://profiles.wordpress.org/shamai/\">Eric</a>, <a href=\"https://profiles.wordpress.org/ericlewis/\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/ebinnion/\">Eric Binnion</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a>, <a href=\"https://profiles.wordpress.org/folletto/\">Erin \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/esemlabel/\">esemlabel</a>, <a href=\"https://profiles.wordpress.org/esoj/\">esoj</a>, <a href=\"https://profiles.wordpress.org/espiat/\">espiat</a>, <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a>, <a href=\"https://profiles.wordpress.org/etoledom/\">etoledom</a>, <a href=\"https://profiles.wordpress.org/etruel/\">etruel</a>, <a href=\"https://profiles.wordpress.org/ev3rywh3re/\">Ev3rywh3re</a>, <a href=\"https://profiles.wordpress.org/circlecube/\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a>, <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a>, <a href=\"https://profiles.wordpress.org/fftfaisal/\">Faisal Ahmed</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/felix-edelmann/\">Felix Edelmann</a>, <a href=\"https://profiles.wordpress.org/ferdiesletering/\">ferdiesletering</a>, <a href=\"https://profiles.wordpress.org/finomeno/\">finomeno</a>, <a href=\"https://profiles.wordpress.org/florianbrinkmann/\">Florian Brinkmann</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/truchot/\">Florian Truchot</a>, <a href=\"https://profiles.wordpress.org/florianatwhodunit/\">florianatwhodunit</a>, <a href=\"https://profiles.wordpress.org/foliovision/\">FolioVision</a>, <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/francoist/\">Francois Thibaud</a>, <a href=\"https://profiles.wordpress.org/futtta/\">Frank Goossens</a>, <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/frankprendergast/\">Frank.Prendergast</a>, <a href=\"https://profiles.wordpress.org/fjarrett/\">Frankie Jarrett</a>, <a href=\"https://profiles.wordpress.org/franzarmas/\">Franz Armas</a>, <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">fullofcaffeine</a>, <a href=\"https://profiles.wordpress.org/mintindeed/\">Gabriel Koen</a>, <a href=\"https://profiles.wordpress.org/gma992/\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/gmays/\">Gabriel Mays</a>, <a href=\"https://profiles.wordpress.org/gadgetroid/\">gadgetroid</a>, <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a>, <a href=\"https://profiles.wordpress.org/garavani/\">Garavani</a>, <a href=\"https://profiles.wordpress.org/garethgillman/\">garethgillman</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/garyc40/\">Gary Cao</a>, <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/gchtr/\">gchtr</a>, <a href=\"https://profiles.wordpress.org/geertdd/\">Geert De Deckere</a>, <a href=\"https://profiles.wordpress.org/geminilabs/\">Gemini Labs</a>, <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/geriux/\">geriux</a>, <a href=\"https://profiles.wordpress.org/giorgio25b/\">Giorgio25b</a>, <a href=\"https://profiles.wordpress.org/gisselfeldt/\">gisselfeldt</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">glendaviesnz</a>, <a href=\"https://profiles.wordpress.org/goldsounds/\">goldsounds</a>, <a href=\"https://profiles.wordpress.org/gh640/\">Goto Hayato</a>, <a href=\"https://profiles.wordpress.org/gkloveweb/\">Govind Kumar</a>, <a href=\"https://profiles.wordpress.org/greglone/\">Gr&#233;gory Viguier</a>, <a href=\"https://profiles.wordpress.org/gradina/\">gradina</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/gregmulhauser/\">gregmulhauser</a>, <a href=\"https://profiles.wordpress.org/grierson/\">grierson</a>, <a href=\"https://profiles.wordpress.org/grzegorzjanoszka/\">Grzegorz.Janoszka</a>, <a href=\"https://profiles.wordpress.org/gsmumbo/\">gsmumbo</a>, <a href=\"https://profiles.wordpress.org/wido/\">Guido Scialfa</a>, <a href=\"https://profiles.wordpress.org/guidobras/\">guidobras</a>, <a href=\"https://profiles.wordpress.org/netsurfer2705/\">Gunther Pilz</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">gwwar</a>, <a href=\"https://profiles.wordpress.org/hvar/\">H-var</a>, <a href=\"https://profiles.wordpress.org/hakre/\">hakre</a>, <a href=\"https://profiles.wordpress.org/halgatewood/\">Halacious</a>, <a href=\"https://profiles.wordpress.org/hankthetank/\">hankthetank</a>, <a href=\"https://profiles.wordpress.org/psdtohtmlguru/\">Hapiuc Robert</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh Pillai</a>, <a href=\"https://profiles.wordpress.org/haukep/\">haukep</a>, <a href=\"https://profiles.wordpress.org/azhiyadev/\">Hauwa</a>, <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a>, <a href=\"https://profiles.wordpress.org/h71/\">Hector Farahani</a>, <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a>, <a href=\"https://profiles.wordpress.org/henrywright/\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/hlanggo/\">hlanggo</a>, <a href=\"https://profiles.wordpress.org/hommealone/\">hommealone</a>, <a href=\"https://profiles.wordpress.org/ryanshoover/\">Hoover</a>, <a href=\"https://profiles.wordpress.org/howdy_mcgee/\">Howdy_McGee</a>, <a href=\"https://profiles.wordpress.org/hronak/\">Hronak Nahar</a>, <a href=\"https://profiles.wordpress.org/huntlyc/\">huntlyc</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/iandstewart/\">Ian Stewart</a>, <a href=\"https://profiles.wordpress.org/ianjvr/\">ianjvr</a>, <a href=\"https://profiles.wordpress.org/ifrins/\">ifrins</a>, <a href=\"https://profiles.wordpress.org/infinum/\">infinum</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ishitaka/\">ishitaka</a>, <a href=\"https://profiles.wordpress.org/jdgrimes/\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jackfungi/\">jackfungi</a>, <a href=\"https://profiles.wordpress.org/jacklinkers/\">jacklinkers</a>, <a href=\"https://profiles.wordpress.org/jadonn/\">Jadon N</a>, <a href=\"https://profiles.wordpress.org/jadpm/\">jadpm</a>, <a href=\"https://profiles.wordpress.org/jagirbahesh/\">jagirbahesh</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/twentyzerotwo/\">Jake Whiteley</a>, <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/foack/\">Jan Koch</a>, <a href=\"https://profiles.wordpress.org/janr/\">Jan Reilink</a>, <a href=\"https://profiles.wordpress.org/janthiel/\">Jan Thiel</a>, <a href=\"https://profiles.wordpress.org/javidalkaruzi/\">Janvo Aldred</a>, <a href=\"https://profiles.wordpress.org/jarretc/\">Jarret</a>, <a href=\"https://profiles.wordpress.org/jason_the_adams/\">Jason Adams</a>, <a href=\"https://profiles.wordpress.org/strangerstudios/\">Jason Coleman</a>, <a href=\"https://profiles.wordpress.org/boogah/\">Jason Cosper</a>, <a href=\"https://profiles.wordpress.org/coolmann/\">Jason Crouse</a>, <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a>, <a href=\"https://profiles.wordpress.org/jaz_on/\">Jason Rouet</a>, <a href=\"https://profiles.wordpress.org/jaswsinc/\">JasWSInc</a>, <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a>, <a href=\"https://profiles.wordpress.org/shiki/\">Jayson Basanes</a>, <a href=\"https://profiles.wordpress.org/jbinda/\">jbinda</a>, <a href=\"https://profiles.wordpress.org/jbouganim/\">jbouganim</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a>, <a href=\"https://profiles.wordpress.org/jean-david/\">Jean-David Daviet</a>, <a href=\"https://profiles.wordpress.org/jeffr0/\">Jeff Chandler</a>, <a href=\"https://profiles.wordpress.org/jfarthing84/\">Jeff Farthing</a>, <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/jenmylo/\">Jen</a>, <a href=\"https://profiles.wordpress.org/jenilk/\">Jenil Kanani</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a>, <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a>, <a href=\"https://profiles.wordpress.org/jeryj/\">jeryj</a>, <a href=\"https://profiles.wordpress.org/jesin/\">Jesin A</a>, <a href=\"https://profiles.wordpress.org/jigneshnakrani/\">Jignesh Nakrani</a>, <a href=\"https://profiles.wordpress.org/jim_panse/\">Jim_Panse</a>, <a href=\"https://profiles.wordpress.org/jipmoors/\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/jivanpal/\">jivanpal</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/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johannadevos/\">Johanna de Vos</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/jdorner/\">John Dorner</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnpgreen/\">John P. Green</a>, <a href=\"https://profiles.wordpress.org/rastaban/\">John Richards II</a>, <a href=\"https://profiles.wordpress.org/johnwatkins0/\">John Watkins</a>, <a href=\"https://profiles.wordpress.org/johnnyb/\">johnnyb</a>, <a href=\"https://profiles.wordpress.org/itsjonq/\">Jon Quach</a>, <a href=\"https://profiles.wordpress.org/jonsurrell/\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a>, <a href=\"https://profiles.wordpress.org/jrchamp/\">Jonathan Champ</a>, <a href=\"https://profiles.wordpress.org/jchristopher/\">Jonathan Christopher</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jonathanstegall/\">Jonathan Stegall</a>, <a href=\"https://profiles.wordpress.org/jonkolbert/\">jonkolbert</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonnybot/\">jonnybot</a>, <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a>, <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/koke/\">Jorge Bernal</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/josephdickson/\">Joseph Dickson</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a>, <a href=\"https://profiles.wordpress.org/procifer/\">Josh Smith</a>, <a href=\"https://profiles.wordpress.org/joshuawold/\">JoshuaWold</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/juanfra/\">Juanfra Aldasoro</a>, <a href=\"https://profiles.wordpress.org/juanlopez4691/\">juanlopez4691</a>, <a href=\"https://profiles.wordpress.org/jules-colle/\">Jules Colle</a>, <a href=\"https://profiles.wordpress.org/julianm/\">julianm</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/juliobox/\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/jgrodel/\">Julka Grodel</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/devesine/\">Justin de Vesine</a>, <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a>, <a href=\"https://profiles.wordpress.org/justlevine/\">justlevine</a>, <a href=\"https://profiles.wordpress.org/justnorris/\">justnorris</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/kaggdesign/\">kaggdesign</a>, <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/kaira/\">Kaira</a>, <a href=\"https://profiles.wordpress.org/kaitlin414/\">Kaitlin Bolling</a>, <a href=\"https://profiles.wordpress.org/akabarikalpesh/\">Kalpesh Akabari</a>, <a href=\"https://profiles.wordpress.org/kamataryo/\">KamataRyo</a>, <a href=\"https://profiles.wordpress.org/leprincenoir/\">Kantari Samy</a>, <a href=\"https://profiles.wordpress.org/kasparsd/\">Kaspars</a>, <a href=\"https://profiles.wordpress.org/properlypurple/\">Kavya Gokul</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/kennethroberson5556/\">kennethroberson5556</a>, <a href=\"https://profiles.wordpress.org/khag7/\">Kevin Hagerty</a>, <a href=\"https://profiles.wordpress.org/kharisblank/\">Kharis Sulistiyono</a>, <a href=\"https://profiles.wordpress.org/itzmekhokan/\">Khokan Sardar</a>, <a href=\"https://profiles.wordpress.org/kinjaldalwadi/\">kinjaldalwadi</a>, <a href=\"https://profiles.wordpress.org/kirilzh/\">Kiril Zhelyazkov</a>, <a href=\"https://profiles.wordpress.org/kburgoine/\">Kirsty Burgoine</a>, <a href=\"https://profiles.wordpress.org/kishanjasani/\">Kishan Jasani</a>, <a href=\"https://profiles.wordpress.org/kitchin/\">kitchin</a>, <a href=\"https://profiles.wordpress.org/ixkaito/\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/ksoares/\">ksoares</a>, <a href=\"https://profiles.wordpress.org/kthmd/\">KT Cheung</a>, <a href=\"https://profiles.wordpress.org/sainthkh/\">Kukhyeon Heo</a>, <a href=\"https://profiles.wordpress.org/kbjohnson90/\">Kyle B. Johnson</a>, <a href=\"https://profiles.wordpress.org/lalitpendhare/\">lalitpendhare</a>, <a href=\"https://profiles.wordpress.org/landau/\">landau</a>, <a href=\"https://profiles.wordpress.org/laternastudio/\">Laterna Studio</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/offereins/\">Laurens Offereins</a>, <a href=\"https://profiles.wordpress.org/laxman-prajapati/\">Laxman Prajapati</a>, <a href=\"https://profiles.wordpress.org/gamerz/\">Lester Chan</a>, <a href=\"https://profiles.wordpress.org/levdbas/\">Levdbas</a>, <a href=\"https://profiles.wordpress.org/layotte/\">Lew Ayotte</a>, <a href=\"https://profiles.wordpress.org/lex_robinson/\">Lex Robinson</a>, <a href=\"https://profiles.wordpress.org/linyows/\">linyows</a>, <a href=\"https://profiles.wordpress.org/lipathor/\">lipathor</a>, <a href=\"https://profiles.wordpress.org/lschuyler/\">Lisa Schuyler</a>, <a href=\"https://profiles.wordpress.org/liuhaibin/\">liuhaibin</a>, <a href=\"https://profiles.wordpress.org/ljharb/\">ljharb</a>, <a href=\"https://profiles.wordpress.org/logig/\">logig</a>, <a href=\"https://profiles.wordpress.org/lucasbustamante/\">lucasbustamante</a>, <a href=\"https://profiles.wordpress.org/lwill/\">luiswill</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/happiryu/\">Luke Walczak</a>, <a href=\"https://profiles.wordpress.org/lukestramasonder/\">lukestramasonder</a>, <a href=\"https://profiles.wordpress.org/asif2bd/\">M Asif Rahman</a>, <a href=\"https://profiles.wordpress.org/msafi/\">M.K. Safi</a>, <a href=\"https://profiles.wordpress.org/cloudstek/\">Maarten de Boer</a>, <a href=\"https://profiles.wordpress.org/aladin02dz/\">Mahfoudh Arous</a>, <a href=\"https://profiles.wordpress.org/mailnew2ster/\">mailnew2ster</a>, <a href=\"https://profiles.wordpress.org/manojlovic/\">manojlovic</a>, <a href=\"https://profiles.wordpress.org/targz-1/\">Manuel Schmalstieg</a>, <a href=\"https://profiles.wordpress.org/neodjandre/\">maraki</a>, <a href=\"https://profiles.wordpress.org/iworks/\">Marcin Pietrzak</a>, <a href=\"https://profiles.wordpress.org/marcio-zebedeu/\">Marcio Zebedeu</a>, <a href=\"https://profiles.wordpress.org/pereirinha/\">Marco Pereirinha</a>, <a href=\"https://profiles.wordpress.org/marcoz/\">MarcoZ</a>, <a href=\"https://profiles.wordpress.org/netweblogic/\">Marcus</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/marekdedic/\">Marek Dědič</a>, <a href=\"https://profiles.wordpress.org/marekhrabe/\">Marek Hrabe</a>, <a href=\"https://profiles.wordpress.org/mariovalney/\">Mario Valney</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius Jensen</a>, <a href=\"https://profiles.wordpress.org/machouinard/\">Mark Chouinard</a>, <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/markparnell/\">Mark Parnell</a>, <a href=\"https://profiles.wordpress.org/mapk/\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markdubois/\">markdubois</a>, <a href=\"https://profiles.wordpress.org/markgoho/\">markgoho</a>, <a href=\"https://profiles.wordpress.org/vindl/\">Marko Andrijasevic</a>, <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/markrh/\">MarkRH</a>, <a href=\"https://profiles.wordpress.org/markshep/\">markshep</a>, <a href=\"https://profiles.wordpress.org/markusthiel/\">markusthiel</a>, <a href=\"https://profiles.wordpress.org/martijn-van-der-kooij/\">Martijn van der Kooij</a>, <a href=\"https://profiles.wordpress.org/martychc23/\">martychc23</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/matheusfd/\">Matheus Martins</a>, <a href=\"https://profiles.wordpress.org/imath/\">Mathieu Viet</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/matjack1/\">matjack1</a>, <a href=\"https://profiles.wordpress.org/webdevmattcrom/\">Matt Cromwell</a>, <a href=\"https://profiles.wordpress.org/gothickgothickorguk/\">Matt Gibson</a>, <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mattrad/\">Matt Radford</a>, <a href=\"https://profiles.wordpress.org/veraxus/\">Matt van Andel</a>, <a href=\"https://profiles.wordpress.org/mattchowning/\">mattchowning</a>, <a href=\"https://profiles.wordpress.org/mboynes/\">Matthew Boynes</a>, <a href=\"https://profiles.wordpress.org/mattheweppelsheimer/\">Matthew Eppelsheimer</a>, <a href=\"https://profiles.wordpress.org/beatpanda/\">Matthew Gerring</a>, <a href=\"https://profiles.wordpress.org/kittmedia/\">Matthias Kittsteiner</a>, <a href=\"https://profiles.wordpress.org/pfefferle/\">Matthias Pfefferle</a>, <a href=\"https://profiles.wordpress.org/matthieumota/\">Matthieu Mota</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/maxpertici/\">Maxime Pertici</a>, <a href=\"https://profiles.wordpress.org/maxme/\">maxme</a>, <a href=\"https://profiles.wordpress.org/mayankmajeji/\">Mayank Majeji</a>, <a href=\"https://profiles.wordpress.org/mcshane/\">mcshane</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/menakas/\">Menaka S.</a>, <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">metalandcoffee</a>, <a href=\"https://profiles.wordpress.org/lilmike/\">Michael</a>, <a href=\"https://profiles.wordpress.org/michaelarestad/\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michael-arestad/\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/tw2113/\">Michael Beckwith</a>, <a href=\"https://profiles.wordpress.org/mfields/\">Michael Fields</a>, <a href=\"https://profiles.wordpress.org/mnelson4/\">Michael Nelson</a>, <a href=\"https://profiles.wordpress.org/m_butcher/\">Michele Butcher-Jones</a>, <a href=\"https://profiles.wordpress.org/marktimemedia/\">Michelle</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/mihdan/\">mihdan</a>, <a href=\"https://profiles.wordpress.org/miinasikk/\">Miina Sikk</a>, <a href=\"https://profiles.wordpress.org/simison/\">Mikael Korpela</a>, <a href=\"https://profiles.wordpress.org/mikaumoto/\">mikaumoto</a>, <a href=\"https://profiles.wordpress.org/mihai2u/\">Mike Crantea</a>, <a href=\"https://profiles.wordpress.org/mdgl/\">Mike Glendinning</a>, <a href=\"https://profiles.wordpress.org/mike-haydon-swo/\">Mike Haydon</a>, <a href=\"https://profiles.wordpress.org/mikeschinkel/\">Mike Schinkel [WPLib Box project lead]</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeyarce/\">Mikey Arce</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/mimitips/\">mimi</a>, <a href=\"https://profiles.wordpress.org/mislavjuric/\">mislavjuric</a>, <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/opurockey/\">Mohammad Rockeybul Alam</a>, <a href=\"https://profiles.wordpress.org/mohsinrasool/\">Mohsin Rasool</a>, <a href=\"https://profiles.wordpress.org/monikarao/\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/gwendydd/\">Morgan Kay</a>, <a href=\"https://profiles.wordpress.org/mor10/\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/man4toman/\">Morteza Geransayeh</a>, <a href=\"https://profiles.wordpress.org/mt8biz/\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/mrgrt/\">mrgrt</a>, <a href=\"https://profiles.wordpress.org/mrmist/\">mrmist</a>, <a href=\"https://profiles.wordpress.org/mrtall/\">mrTall</a>, <a href=\"https://profiles.wordpress.org/msaggiorato/\">msaggiorato</a>, <a href=\"https://profiles.wordpress.org/musamamasood/\">Muhammad Usama Masood</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/munyagu/\">munyagu</a>, <a href=\"https://profiles.wordpress.org/nabilmoqbel/\">Nabil Moqbel</a>, <a href=\"https://profiles.wordpress.org/assassinateur/\">Nadir Seghir</a>, <a href=\"https://profiles.wordpress.org/nfmohit/\">Nahid Ferdous Mohit</a>, <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">Nalini Thakor</a>, <a href=\"https://profiles.wordpress.org/nao/\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/narwen/\">narwen</a>, <a href=\"https://profiles.wordpress.org/nateinaction/\">Nate Gay</a>, <a href=\"https://profiles.wordpress.org/nathanrice/\">Nathan Rice</a>, <a href=\"https://profiles.wordpress.org/navidos/\">Navid</a>, <a href=\"https://profiles.wordpress.org/neonkowy/\">neonkowy</a>, <a href=\"https://profiles.wordpress.org/krstarica/\">net</a>, <a href=\"https://profiles.wordpress.org/netpassprodsr/\">netpassprodsr</a>, <a href=\"https://profiles.wordpress.org/nextendweb/\">Nextendweb</a>, <a href=\"https://profiles.wordpress.org/calvin_ngan/\">Ngan Tengyuen</a>, <a href=\"https://profiles.wordpress.org/nickdaugherty/\">Nick Daugherty</a>, <a href=\"https://profiles.wordpress.org/nickylimjj/\">Nicky Lim</a>, <a href=\"https://profiles.wordpress.org/vadimnicolai/\">nicolad</a>, <a href=\"https://profiles.wordpress.org/rahe/\">Nicolas Juen</a>, <a href=\"https://profiles.wordpress.org/nicolaskulka/\">NicolasKulka</a>, <a href=\"https://profiles.wordpress.org/jainnidhi/\">Nidhi Jain</a>, <a href=\"https://profiles.wordpress.org/nielsdeblaauw/\">Niels de Blaauw</a>, <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a>, <a href=\"https://profiles.wordpress.org/nigrosimone/\">nigro.simone</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/nikhilbhansi/\">Nikhil Bhansi</a>, <a href=\"https://profiles.wordpress.org/nbachiyski/\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/nilovelez/\">Nilo Velez</a>, <a href=\"https://profiles.wordpress.org/niresh12495/\">Niresh</a>, <a href=\"https://profiles.wordpress.org/nmenescardi/\">nmenescardi</a>, <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a>, <a href=\"https://profiles.wordpress.org/numidwasnotavailable/\">NumidWasNotAvailable</a>, <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a>, <a href=\"https://profiles.wordpress.org/obliviousharmony/\">obliviousharmony</a>, <a href=\"https://profiles.wordpress.org/ockham/\">ockham</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a>, <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a>, <a href=\"https://profiles.wordpress.org/omarreiss/\">Omar Reiss</a>, <a href=\"https://profiles.wordpress.org/onokazu/\">onokazu</a>, <a href=\"https://profiles.wordpress.org/optimizingmatters/\">Optimizing Matters</a>, <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/ovann86/\">ovann86</a>, <a href=\"https://profiles.wordpress.org/overclokk/\">overclokk</a>, <a href=\"https://profiles.wordpress.org/p_enrique/\">p_enrique</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\">Pablo Honey</a>, <a href=\"https://profiles.wordpress.org/paddy/\">Paddy</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/paresh07/\">Paresh Shinde</a>, <a href=\"https://profiles.wordpress.org/parvand/\">Parvand</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/casiepa/\">Pascal Casier</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/pdfernhout/\">Paul Fernhout</a>, <a href=\"https://profiles.wordpress.org/djpaul/\">Paul Gibbs</a>, <a href=\"https://profiles.wordpress.org/figureone/\">Paul Ryan</a>, <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/paulstonier/\">Paul Stonier</a>, <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a>, <a href=\"https://profiles.wordpress.org/pavelevap/\">pavelevap</a>, <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a>, <a href=\"https://profiles.wordpress.org/pentatonicfunk/\">pentatonicfunk</a>, <a href=\"https://profiles.wordpress.org/pputzer/\">pepe</a>, <a href=\"https://profiles.wordpress.org/pessoft/\">Peter \"Pessoft\" Kol&#237;nek</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/pderksen/\">Phil Derksen</a>, <a href=\"https://profiles.wordpress.org/johnstonphilip/\">Phil Johnston</a>, <a href=\"https://profiles.wordpress.org/philipmjackson/\">Philip Jackson</a>, <a href=\"https://profiles.wordpress.org/pierlo/\">Pierre Gordon</a>, <a href=\"https://profiles.wordpress.org/pigdog234/\">pigdog234</a>, <a href=\"https://profiles.wordpress.org/pikamander2/\">pikamander2</a>, <a href=\"https://profiles.wordpress.org/pingram3541/\">pingram</a>, <a href=\"https://profiles.wordpress.org/pionect/\">Pionect</a>, <a href=\"https://profiles.wordpress.org/piyushmca/\">Piyush Patel</a>, <a href=\"https://profiles.wordpress.org/pkarjala/\">pkarjala</a>, <a href=\"https://profiles.wordpress.org/pkvillanueva/\">pkvillanueva</a>, <a href=\"https://profiles.wordpress.org/pmbaldha/\">Prashant Baldha</a>, <a href=\"https://profiles.wordpress.org/pratik028/\">pratik028</a>, <a href=\"https://profiles.wordpress.org/pravinparmar2404/\">Pravin Parmar</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/presslabs/\">Presslabs</a>, <a href=\"https://profiles.wordpress.org/priyankkpatel/\">Priyank Patel</a>, <a href=\"https://profiles.wordpress.org/priyomukul/\">Priyo Mukul</a>, <a href=\"https://profiles.wordpress.org/prografika/\">ProGrafika</a>, <a href=\"https://profiles.wordpress.org/programmin/\">programmin</a>, <a href=\"https://profiles.wordpress.org/puneetsahalot/\">Puneet Sahalot</a>, <a href=\"https://profiles.wordpress.org/pvogel2/\">pvogel2</a>, <a href=\"https://profiles.wordpress.org/r-a-y/\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/raajtram/\">Raaj Trambadia</a>, <a href=\"https://profiles.wordpress.org/larrach/\">Rachel Peter</a>, <a href=\"https://profiles.wordpress.org/raineorshine/\">raine</a>, <a href=\"https://profiles.wordpress.org/rajeshsingh520/\">rajeshsingh520</a>, <a href=\"https://profiles.wordpress.org/superpoincare/\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/ravanh/\">RavanH</a>, <a href=\"https://profiles.wordpress.org/ravatparmar/\">Ravat Parmar</a>, <a href=\"https://profiles.wordpress.org/ravenswd/\">ravenswd</a>, <a href=\"https://profiles.wordpress.org/rawrly/\">rawrly</a>, <a href=\"https://profiles.wordpress.org/rebasaurus/\">rebasaurus</a>, <a href=\"https://profiles.wordpress.org/redsand/\">Red Sand Media Group</a>, <a href=\"https://profiles.wordpress.org/tabrisrp/\">Remy Perona</a>, <a href=\"https://profiles.wordpress.org/remzicavdar/\">Remzi Cavdar</a>, <a href=\"https://profiles.wordpress.org/renathoc/\">Renatho</a>, <a href=\"https://profiles.wordpress.org/renggo888/\">renggo888</a>, <a href=\"https://profiles.wordpress.org/retlehs/\">retlehs</a>, <a href=\"https://profiles.wordpress.org/retrofox/\">retrofox</a>, <a href=\"https://profiles.wordpress.org/riaanlom/\">riaanlom</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/riasat/\">riasat</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, <a href=\"https://profiles.wordpress.org/ringisha/\">Ringisha</a>, <a href=\"https://profiles.wordpress.org/ritterml/\">ritterml</a>, <a href=\"https://profiles.wordpress.org/rnaby/\">Rnaby</a>, <a href=\"https://profiles.wordpress.org/rcutmore/\">Rob Cutmore</a>, <a href=\"https://profiles.wordpress.org/dhrrob/\">Rob Migchels</a>, <a href=\"https://profiles.wordpress.org/rob006/\">rob006</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/miqrogroove/\">Robert Chapin</a>, <a href=\"https://profiles.wordpress.org/robertpeake/\">Robert Peake</a>, <a href=\"https://profiles.wordpress.org/nullbyte/\">Robert Windisch</a>, <a href=\"https://profiles.wordpress.org/kreppar/\">Rodrigo Arias</a>, <a href=\"https://profiles.wordpress.org/ronalfy/\">Ronald Huereca</a>, <a href=\"https://profiles.wordpress.org/costasovo/\">Rostislav Woln&#253;</a>, <a href=\"https://profiles.wordpress.org/roytanck/\">Roy Tanck</a>, <a href=\"https://profiles.wordpress.org/rtagliento/\">rtagliento</a>, <a href=\"https://profiles.wordpress.org/ruxandra/\">ruxandra</a>, <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a>, <a href=\"https://profiles.wordpress.org/bookdude13/\">Ryan Fredlund</a>, <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a>, <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/ryotasakamoto/\">Ryota Sakamoto</a>, <a href=\"https://profiles.wordpress.org/ryotsun/\">ryotsun</a>, <a href=\"https://profiles.wordpress.org/soean/\">S&#246;ren Wrede</a>, <a href=\"https://profiles.wordpress.org/sorenbronsted/\">S&#248;ren Br&#248;nsted</a>, <a href=\"https://profiles.wordpress.org/sachittandukar/\">Sachit Tandukar</a>, <a href=\"https://profiles.wordpress.org/sagarjadhav/\">Sagar Jadhav</a>, <a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a>, <a href=\"https://profiles.wordpress.org/salcode/\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/salvatoreformisano/\">Salvatore Formisano</a>, <a href=\"https://profiles.wordpress.org/salvoaranzulla/\">salvoaranzulla</a>, <a href=\"https://profiles.wordpress.org/samful/\">Sam Fullalove</a>, <a href=\"https://profiles.wordpress.org/sswebster/\">Sam Webster</a>, <a href=\"https://profiles.wordpress.org/solarissmoke/\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/samueljseay/\">samueljseay</a>, <a href=\"https://profiles.wordpress.org/pacifika/\">Sander van Dragt</a>, <a href=\"https://profiles.wordpress.org/sanzeeb3/\">Sanjeev Aryal</a>, <a href=\"https://profiles.wordpress.org/progremzion/\">Sanket Mehta</a>, <a href=\"https://profiles.wordpress.org/sarahricker/\">sarahricker</a>, <a href=\"https://profiles.wordpress.org/sathyapulse/\">Sathiyamoorthy V</a>, <a href=\"https://profiles.wordpress.org/sayedwp/\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/scarolan/\">scarolan</a>, <a href=\"https://profiles.wordpress.org/scholdstrom/\">scholdstrom</a>, <a href=\"https://profiles.wordpress.org/sc0ttkclark/\">Scott Kingsley Clark</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/scottsmith/\">Scott Smith</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">scruffian</a>, <a href=\"https://profiles.wordpress.org/seanchayes/\">Sean Hayes</a>, <a href=\"https://profiles.wordpress.org/seanpaulrasmussen/\">seanpaulrasmussen</a>, <a href=\"https://profiles.wordpress.org/seayou/\">seayou</a>, <a href=\"https://profiles.wordpress.org/senatorman/\">senatorman</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/vjik/\">Sergey Predvoditelev</a>, <a href=\"https://profiles.wordpress.org/sgr33n/\">Sergio de Falco</a>, <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">sergiomdgomes</a>, <a href=\"https://profiles.wordpress.org/functionalrhyme/\">Shannon Smith</a>, <a href=\"https://profiles.wordpress.org/wpshades/\">Shantanu Desai</a>, <a href=\"https://profiles.wordpress.org/shaunandrews/\">shaunandrews</a>, <a href=\"https://profiles.wordpress.org/shooper/\">Shawn Hooper</a>, <a href=\"https://profiles.wordpress.org/shawnz/\">shawnz</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/shulard/\">shulard</a>, <a href=\"https://profiles.wordpress.org/siliconforks/\">siliconforks</a>, <a href=\"https://profiles.wordpress.org/simonwheatley/\">Simon Wheatley</a>, <a href=\"https://profiles.wordpress.org/simonjanin/\">simonjanin</a>, <a href=\"https://profiles.wordpress.org/sinatrateam/\">sinatrateam</a>, <a href=\"https://profiles.wordpress.org/sjmur/\">sjmur</a>, <a href=\"https://profiles.wordpress.org/skarabeq/\">skarabeq</a>, <a href=\"https://profiles.wordpress.org/skorasaurus/\">skorasaurus</a>, <a href=\"https://profiles.wordpress.org/skoskie/\">skoskie</a>, <a href=\"https://profiles.wordpress.org/slushman/\">slushman</a>, <a href=\"https://profiles.wordpress.org/snapfractalpop/\">snapfractalpop</a>, <a href=\"https://profiles.wordpress.org/seth17/\">SpearsMarketing</a>, <a href=\"https://profiles.wordpress.org/sphakka/\">sphakka</a>, <a href=\"https://profiles.wordpress.org/squarecandy/\">squarecandy</a>, <a href=\"https://profiles.wordpress.org/sreedoap/\">sreedoap</a>, <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a>, <a href=\"https://profiles.wordpress.org/hypest/\">Stefanos Togoulidis</a>, <a href=\"https://profiles.wordpress.org/sswells/\">Steph Wells</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/stephencronin/\">Stephen Cronin</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/dufresnesteven/\">Steve Dufresne</a>, <a href=\"https://profiles.wordpress.org/stevegibson12/\">stevegibson12</a>, <a href=\"https://profiles.wordpress.org/sterndata/\">Steven Stern (sterndata)</a>, <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/stevenkussmaul/\">stevenkussmaul</a>, <a href=\"https://profiles.wordpress.org/stevenlinx/\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/stiofansisland/\">Stiofan</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/sum1/\">SUM1</a>, <a href=\"https://profiles.wordpress.org/quadthemes/\">Sunny</a>, <a href=\"https://profiles.wordpress.org/sunnyratilal/\">Sunny Ratilal</a>, <a href=\"https://profiles.wordpress.org/sushyant/\">Sushyant Zavarzadeh</a>, <a href=\"https://profiles.wordpress.org/suzylah/\">suzylah</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a>, <a href=\"https://profiles.wordpress.org/sergioestevao/\">Sérgio Estêvão</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/tangrufus/\">Tang Rufus</a>, <a href=\"https://profiles.wordpress.org/utz119/\">TeBenachi</a>, <a href=\"https://profiles.wordpress.org/tessawatkinsllc/\">Tessa Watkins LLC</a>, <a href=\"https://profiles.wordpress.org/wildworks/\">Tetsuaki Hamano</a>, <a href=\"https://profiles.wordpress.org/themiked/\">theMikeD</a>, <a href=\"https://profiles.wordpress.org/theolg/\">theolg</a>, <a href=\"https://profiles.wordpress.org/tweetythierry/\">Thierry Muller</a>, <a href=\"https://profiles.wordpress.org/thimalw/\">Thimal Wickremage</a>, <a href=\"https://profiles.wordpress.org/webzunft/\">Thomas M</a>, <a href=\"https://profiles.wordpress.org/tfrommen/\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/thrijith/\">Thrijith Thankachan</a>, <a href=\"https://profiles.wordpress.org/tiagohillebrandt/\">Tiago Hillebrandt</a>, <a href=\"https://profiles.wordpress.org/tillkruess/\">Till Kr&#252;ss</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tkama/\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tmdesigned/\">tmdesigned</a>, <a href=\"https://profiles.wordpress.org/tmoore41/\">tmoore41</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/tofandel/\">Tofandel</a>, <a href=\"https://profiles.wordpress.org/tomdude/\">tomdude</a>, <a href=\"https://profiles.wordpress.org/tferry/\">Tommy Ferry</a>, <a href=\"https://profiles.wordpress.org/starbuck/\">Tony G</a>, <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/torres126/\">torres126</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/toru/\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/travisnorthcutt/\">Travis Northcutt</a>, <a href=\"https://profiles.wordpress.org/treecutter/\">treecutter</a>, <a href=\"https://profiles.wordpress.org/truongwp/\">truongwp</a>, <a href=\"https://profiles.wordpress.org/tsimmons/\">tsimmons</a>, <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a>, <a href=\"https://profiles.wordpress.org/desaiuditd/\">Udit Desai</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/vagios/\">Vagios Vlachos</a>, <a href=\"https://profiles.wordpress.org/valchovski/\">valchovski</a>, <a href=\"https://profiles.wordpress.org/valentinbora/\">Valentin Bora</a>, <a href=\"https://profiles.wordpress.org/vayu/\">Vayu Robins</a>, <a href=\"https://profiles.wordpress.org/veromary/\">veromary</a>, <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a>, <a href=\"https://profiles.wordpress.org/vinkla/\">vinkla</a>, <a href=\"https://profiles.wordpress.org/virginienacci/\">virginienacci</a>, <a href=\"https://profiles.wordpress.org/planvova/\">Vladimir</a>, <a href=\"https://profiles.wordpress.org/vabrashev/\">Vladislav Abrashev</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, <a href=\"https://profiles.wordpress.org/voyager131/\">voyager131</a>, <a href=\"https://profiles.wordpress.org/vtieu/\">vtieu</a>, <a href=\"https://profiles.wordpress.org/webaware/\">webaware</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a>, <a href=\"https://profiles.wordpress.org/planningwrite/\">Winstina</a>, <a href=\"https://profiles.wordpress.org/wittich/\">wittich</a>, <a href=\"https://profiles.wordpress.org/wpdesk/\">wpdesk</a>, <a href=\"https://profiles.wordpress.org/wpdo5ea/\">WPDO</a>, <a href=\"https://profiles.wordpress.org/alexandreb3/\">WPMarmite</a>, <a href=\"https://profiles.wordpress.org/wppinar/\">wppinar</a>, <a href=\"https://profiles.wordpress.org/yahil/\">Yahil Madakiya</a>, <a href=\"https://profiles.wordpress.org/yashrs/\">yashrs</a>, <a href=\"https://profiles.wordpress.org/yoancutillas/\">yoancutillas</a>, <a href=\"https://profiles.wordpress.org/yoavf/\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/yohannp/\">yohannp</a>, <a href=\"https://profiles.wordpress.org/yuhin/\">yuhin</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/ysalame/\">Yuri Salame</a>, <a href=\"https://profiles.wordpress.org/yvettesonneveld/\">Yvette Sonneveld</a>, <a href=\"https://profiles.wordpress.org/tollmanz/\">Zack Tollman</a>, <a href=\"https://profiles.wordpress.org/zaheerahmad/\">zaheerahmad</a>, <a href=\"https://profiles.wordpress.org/zakkath/\">zakkath</a>, <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a>, <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a>, and <a href=\"https://profiles.wordpress.org/chesio/\">Česlav Przywara</a>.\n\n\n\n<p>&nbsp;</p>\n\n\n\n<p>Many thanks to all of the community volunteers who contribute in the&nbsp;<a href=\"https://wordpress.org/support/\">support forums</a>. They answer questions from people across the world, whether they are using WordPress for the first time or since the first release. These releases are more successful for their efforts!</p>\n\n\n\n<p>Finally, thanks to all the community translators who worked on WordPress 5.5. Their efforts bring WordPress fully translated to&nbsp;46 languages at release time, with more on the way.</p>\n\n\n\n<p>If you want to learn more about volunteering with WordPress, check out&nbsp;<a href=\"https://make.wordpress.org/\">Make WordPress</a>&nbsp;or the&nbsp;<a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:2%\"></div>\n</div>\n\";s: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:\"8799\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 5.5 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2020/08/wordpress-5-5-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, 04 Aug 2020 19:12:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=8764\";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:420:\"The second release candidate for WordPress 5.5 is here! WordPress 5.5 is slated for release&#160;on&#160;August 11, 2020, but we need&#160;your&#160;help to get there—if you haven’t tried 5.5 yet,&#160;now is the time! You can test the WordPress 5.5 release candidate in two ways: Try the&#160;WordPress Beta Tester&#160;plugin (choose the “bleeding edge nightlies” option) Or&#160;download the release [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jake Spurlock\";s: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:2503:\"\n<p>The second release candidate for WordPress 5.5 is here!</p>\n\n\n\n<p>WordPress 5.5 is slated for release&nbsp;on&nbsp;<strong>August 11, 2020</strong>, but we need&nbsp;<em>your</em>&nbsp;help to get there—if you haven’t tried 5.5 yet,&nbsp;now is the time!</p>\n\n\n\n<p>You can test the WordPress 5.5 release candidate in two ways:</p>\n\n\n\n<ul><li>Try the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin (choose the “bleeding edge nightlies” option)</li><li>Or&nbsp;<a href=\"https://wordpress.org/wordpress-5.5-RC2.zip\">download the release candidate here (zip)</a>.</li></ul>\n\n\n\n<p>Thank you to all of the contributors who tested the&nbsp;Beta releases and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.5 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the readme file to 5.5. If you find compatibility problems, please be sure to post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>,&nbsp;so those can be figured out before the final release.</p>\n\n\n\n<p>For a more detailed breakdown of the changes included in WordPress 5.5, check out the <a href=\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-1/\">WordPress 5.5 beta 1 post</a>. The&nbsp;<a href=\"https://make.wordpress.org/core/2020/07/30/wordpress-5-5-field-guide/\">WordPress 5.5 Field Guide</a>&nbsp;is also out! It’s your source for details on all the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a>&nbsp;This release also marks the&nbsp;<a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a>&nbsp;point of the 5.5 release schedule.</p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a>&nbsp;in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report,&nbsp;<a href=\"https://make.wordpress.org/core/reports/\">fill one on WordPress Trac</a>, where you can also find&nbsp;<a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"8764\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"The Month in WordPress: July 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2020/08/the-month-in-wordpress-july-2020/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Aug 2020 13:54:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s: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=8755\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:340:\"July was an action-packed month for the WordPress project. The month saw a lot of updates on one of the most anticipated releases &#8211; WordPress 5.5! WordCamp US 2020 was canceled and the WordPress community team started experimenting with different formats for engaging online events, in July. Read on to catch up with all the [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11539:\"\n<p>July was an action-packed month for the WordPress project. The month saw a lot of updates on one of the most anticipated releases &#8211; WordPress 5.5! WordCamp US 2020 was canceled and the WordPress community team started experimenting with different formats for engaging online events, in July. Read on to catch up with all the updates from the WordPress world.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.5 Updates</h2>\n\n\n\n<p>July was full of WordPress 5.5 updates! The WordPress 5.5 <a href=\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-1\">Beta 1</a> came out on July 7, followed by <a href=\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-2/\">Beta 2</a> on July 14, <a href=\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-3/\">Beta 3</a> on July 21, and <a href=\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-4/\">Beta 4</a> on July 27. Subsequently, the team also published the first <a href=\"https://wordpress.org/news/2020/07/wordpress-5-5-release-candidate/\">release candidate</a> of WordPress 5.5 on July 28.&nbsp;</p>\n\n\n\n<p>WordPress 5.5, which is slated for release on <a href=\"https://make.wordpress.org/core/5-5/\">August 11, 2020</a>, is a major update with features like <a href=\"https://make.wordpress.org/core/tag/feature-autoupdates/\">automatic updates for plugins and themes</a>, a <a href=\"https://make.wordpress.org/plugins/2020/07/22/proposed-block-directory-guidelines/\">block directory</a>, <a href=\"https://make.wordpress.org/core/2020/06/10/merge-announcement-extensible-core-sitemaps/\">XML sitemaps</a>, <a href=\"https://make.wordpress.org/core/2020/07/16/block-patterns-in-wordpress-5-5/\">block patterns</a>, and <a href=\"https://make.wordpress.org/core/2020/07/14/lazy-loading-images-in-5-5/\">lazy-loading images</a>, among others. To learn more about the release, check out its <a href=\"https://make.wordpress.org/core/2020/07/30/wordpress-5-5-field-guide/\">field guide post</a>.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? Follow<a href=\"https://make.wordpress.org/core/\"> the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Gutenberg 8.5 and 8.6</h2>\n\n\n\n<p>The core team launched Gutenberg <a href=\"https://make.wordpress.org/core/2020/07/08/whats-new-in-gutenberg-8-july/\">8.5</a> and <a href=\"https://make.wordpress.org/core/2020/07/22/whats-new-in-gutenberg-july-22/\">8.6</a>. Version 8.5 &#8211; the last plugin release will be included entirely (without experimental features) in WordPress 5.5, introduced improvements to block drag-and-drop and accessibility, easier updates for external images, and support for the block directory. Version 8.6 comes with features like Cover block video position controls and block pattern updates. For full details on the latest versions on these Gutenberg releases, visit these posts about <a href=\"https://make.wordpress.org/core/2020/07/08/whats-new-in-gutenberg-8-july/\">8.5</a> and <a href=\"https://make.wordpress.org/core/2020/07/22/whats-new-in-gutenberg-july-22/\">8.6</a>.</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the #core-editor channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Reimagining Online WordPress Events</h2>\n\n\n\n<p>The Community team made the difficult decision <a href=\"https://make.wordpress.org/community/2020/07/27/in-person-events-in-rest-of-year-2020/\">to suspend in-person WordPress events for the rest of 2020</a> in light of the COVID-19 pandemic. The team has also started working on <a href=\"https://make.wordpress.org/community/2020/07/13/reimagining-online-events/\">reimagining online events</a>. Based on <a href=\"https://make.wordpress.org/community/2020/07/13/reimagining-online-events/#comment-28505\">feedback from the community members</a>, the team decided to <a href=\"https://make.wordpress.org/community/2020/07/23/moving-forward-with-online-events/\">make changes to the current online WordCamp format</a>. Key changes include wrapping up financial support for A/V vendors, ending event swag support for newer online WordCamps, and suspending the Global Community Sponsorship program for 2020. The team encourages upcoming online WordCamps to experiment with their events to facilitate an effective learning experience for attendees while avoiding online event fatigue. The team is currently working on a proposal to organize community-supported <a href=\"https://make.wordpress.org/community/2020/07/23/building-community-beyond-events/\">recorded workshops and synchronous discussion groups</a> to help community members learn WordPress.<br><br>Want to get involved with the Community team? <a href=\"https://make.wordpress.org/community/\">Follow the Community blog here</a>, or join them in the #community-events channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>. To organize a Meetup or WordCamp, <a href=\"https://make.wordpress.org/community/handbook/virtual-events/welcome/applying-for-a-virtual-event/\">visit the handbook page</a>.&nbsp;</p>\n\n\n\n<h2>WordCamp US 2020 is canceled</h2>\n\n\n\n<p>The organizers of WordCamp US 2020 have <a href=\"https://2020.us.wordcamp.org/2020/07/30/wcus-2020-an-update/\">canceled the event</a> in light of the continued pandemic and online event fatigue. The flagship event, which was originally scheduled for October 27-29 as an in-person event, had already planned to transition to an online event. Several WCUS Organizers will be working with the WordPress Community team to focus on other formats and ideas for online events, including a 24-hour contributor day, and contributing to the workshops initiative <a href=\"https://make.wordpress.org/community/2020/07/23/building-community-beyond-events/\">currently being discussed</a>. Matt Mullenweg’s State of the Word (which typically accompanies WordCamp US) is likely to take place in a different format later in 2020.</p>\n\n\n\n<h2>Plugin and theme updates are now available over zip files</h2>\n\n\n\n<p>After eleven years, WordPress now allows users to update plugins and themes by <a href=\"https://core.trac.wordpress.org/changeset/48390\">uploading a ZIP file, in WordPress 5.5</a>.&nbsp; The feature, which was merged on July 7, has been one of the most requested features in WordPress. Now, when a user tries to upload a plugin or theme zip file from the WordPress dashboard by clicking the “Install Now” button, WordPress will direct users to a new screen that compares the currently-installed extension with the uploaded versions. Users can then choose between continuing with the installation or canceling. WordPress 5.5 will also offer <a href=\"https://make.wordpress.org/core/tag/feature-autoupdates/\">automatic plugin and theme updates</a>.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The <a href=\"https://make.wordpress.org/plugins/2020/07/22/proposed-block-directory-guidelines/\">Block directory</a> is coming to WordPress with the 5.5 release. Plugin authors can now <a href=\"https://make.wordpress.org/plugins/2020/07/11/you-can-now-add-your-own-plugins-to-the-block-directory/\">submit their Block plugins to the directory</a>.</li><li>The Core team has opened up the <a href=\"https://make.wordpress.org/core/2020/07/31/wordpress-5-6-whats-on-your-wishlist/\">call for features</a> in the WordPress 5.6 release. You can <a href=\"https://make.wordpress.org/core/2020/07/31/wordpress-5-6-whats-on-your-wishlist/\">comment on the post</a> with features that you’d like to be included, current UX pain points, or maintenance tickets that need to be addressed. August 20 is the deadline for feature requests. </li><li>Editor features such as the new Navigation block, the navigation screen, and the widget screen that were originally <a href=\"https://make.wordpress.org/updates/2020/03/06/update-progress-on-goals/\">planned to be merged with WordPress 5.5</a> have been <a href=\"https://make.wordpress.org/core/2020/07/02/editor-features-for-wordpress-5-5-update/\">pushed for the next release</a>. </li><li>The Theme team is inviting proposals on whether to allow themes to <a href=\"https://make.wordpress.org/themes/2020/07/13/proposal-allow-themes-to-add-a-top-level-admin-menu/\">place an additional top-level menu link</a> in the admin.</li><li><a href=\"https://buddypress.org/2020/07/buddypress-6-2-0-beta/\">BuddyPress 6.2 beta </a>is out in the wild, and the team will soon release the stable version. The update includes changes that will make BuddyPress fully compatible with WordPress 5.5.</li><li>WordCamp EU 2021, which was being planned as an in-person event in Porto, Portugal, <a href=\"https://europe.wordcamp.org/2021/wordcamp-europe-2021-will-be-online/\">is moving online</a>. The team is considering an in-person WordCamp EU in 2022. </li><li>The Polyglots team has prepared and finalized a <a href=\"https://make.wordpress.org/polyglots/2020/07/09/translation-editor-locale-manager-vetting-criteria-page-draft/\">Translation Editor &amp; Locale Manager Vetting Criteria</a> to provide more clarity on how global mentors assign PTE/GTE/Locale Managers and to help locale teams set their own guidelines. The document, which was finalized <a href=\"https://make.wordpress.org/polyglots/2020/07/09/translation-editor-locale-manager-vetting-criteria-page-draft/\">after a lot of discussion</a>, is now available in the <a href=\"https://make.wordpress.org/polyglots/handbook/translating/expectations/translation-editor-locale-manager-vetting-criteria/\">Polyglots handbook</a>.</li><li>Members of the Community team <a href=\"https://make.wordpress.org/community/2020/07/03/proposal-recognition-for-event-volunteers-and-attendees-in-wordpress-org-profile/\">are discussing</a> whether WordCamp volunteers, WordCamp attendees, or Meetup attendees should be awarded a WordPress.org profile badge. The ongoing discussion will be open for comments until August 13.</li><li>The <a href=\"https://make.wordpress.org/core/tag/feature-notifications/\">WP Notify project</a>, which aims to create a better way to manage and deliver notifications to the relevant audience, is on to its next steps. The team has finalized the initial requirements, and is <a href=\"https://make.wordpress.org/core/2020/07/09/wp-notify-next-steps/\">kicking off the project build</a>.</li><li>The WordPress documentation team is <a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/docs/tag/external-linking-policy/\" target=\"_blank\">considering a ban on links to commercial websites</a> in a revision to its external linking policy. The policy change does not remove external links to commercial sites from WordPress.org and only applies to documentation sites. The idea is to protect documentation from being abused, and to prevent the WordPress project from being biased. Discussion on this post is still ongoing, and a decision has not yet been made. Feel free to<a href=\"https://make.wordpress.org/docs/tag/external-linking-policy/\"> comment on the discussion posts</a>, if you would like to share your thoughts on the topic. </li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"8755\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 5.5 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/2020/07/wordpress-5-5-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, 28 Jul 2020 19:08:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=8732\";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:370:\"The first release candidate for WordPress 5.5 is now available! This is an important milestone in the community&#8217;s progress toward the final release of WordPress 5.5. “Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.5 [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2970:\"\n<p>The first release candidate for WordPress 5.5 is now available!</p>\n\n\n\n<p>This is an important milestone in the community&#8217;s progress toward the final release of WordPress 5.5. </p>\n\n\n\n<p>“Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.5 is slated for release&nbsp;on&nbsp;<strong>August 11, 2020</strong>, but we need&nbsp;<em>your</em>&nbsp;help to get there—if you haven’t tried 5.5 yet,&nbsp;<strong>now is the time</strong>!</p>\n\n\n\n<p>You can test the WordPress 5.5 release candidate in two ways:</p>\n\n\n\n<ul><li>Try the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin (choose the “bleeding edge nightlies” option)</li><li>Or&nbsp;<a href=\"https://wordpress.org/wordpress-5.5-RC1.zip\">download the release candidate here (zip)</a>.</li></ul>\n\n\n\n<p>Thank you to all of the contributors who tested the&nbsp;Beta releases and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress.</p>\n\n\n\n<h2>What’s in WordPress 5.5?</h2>\n\n\n\n<p>WordPress 5.5 has lots of refinements to polish the developer experience. To keep up, subscribe to the&nbsp;<a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a>&nbsp;and pay special attention to the&nbsp;<a href=\"https://make.wordpress.org/core/tag/5-5+dev-notes/\">developer notes</a>&nbsp;tag for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.5 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the readme file to 5.5. If you find compatibility problems, please be sure to post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>,&nbsp;so those can be figured out before the final release.</p>\n\n\n\n<p>The&nbsp;WordPress 5.5 Field Guide, due very shortly, will give you a more detailed dive into the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a>&nbsp;This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a>&nbsp;point of the 5.5 release schedule.</p>\n\n\n\n<p><em><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/\">fill 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>.</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:\"8732\";s: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:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.5 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Jul 2020 20:56: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=8719\";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:313:\"WordPress 5.5 Beta 4 is now available! This software is still in development, so it’s not recommended to run this version on a production site. Consider setting up a test site to play with the new version. You can test WordPress 5.5 Beta 4 in two ways: Try the WordPress Beta Tester plugin (choose the [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"David Baumwald\";s: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:3812:\"\n<p>WordPress 5.5 Beta 4 is now available!</p>\n\n\n\n<p id=\"block-81bd56b9-ea44-43ad-ab36-a5ae78b54375\"><strong>This software is still in development,</strong> so it’s not recommended to run this version on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p id=\"block-7cc1bbc6-17f9-44c5-8f67-da4e3059ad69\">You can test WordPress 5.5 Beta 4 in two ways:</p>\n\n\n\n<ul id=\"block-4840af57-f44b-4d9f-aa64-c6a452392e42\"><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.5-beta4.zip\">download the beta here</a> (zip).</li></ul>\n\n\n\n<p id=\"block-a40528cb-eb3b-4c8a-8f5e-aa700f1ba086\">WordPress 5.5 is slated for release on <a href=\"https://make.wordpress.org/core/5-5/\">August 11th, 2020</a>, and <strong>we need your help to get there</strong>!</p>\n\n\n\n<p>Thank you to all of the contributors who tested the <a href=\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-3/\">beta 3</a> development release and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress. </p>\n\n\n\n<h2 id=\"block-15d6d57f-905d-4a47-9f66-839468a5375a\">Some highlights</h2>\n\n\n\n<p id=\"block-85da84ec-c841-42f9-8d3b-1a4537a61d10\">Since <a href=\"https://wordpress.org/news/2020/02/wordpress-5-4-beta-3/\">beta 3</a>, <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=07%2F22%2F2020..07%2F28%2F2020&amp;milestone=5.5&amp;group=component&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">43 bugs</a> have been fixed. Here are a few changes in beta 4:</p>\n\n\n\n<ul><li>Add <code>\"loading\"</code> as an allowed kses image attribute (see <a href=\"https://core.trac.wordpress.org/ticket/50731\">#50731</a>).</li><li>Add filter for the plugin/theme auto-update message in the Info tab of Site health (see <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/50663\">#50663</a>).</li><li><code>$_SERVER[\'SERVER_NAME\']</code> not a reliable when generating email host names (see <a href=\"https://core.trac.wordpress.org/ticket/25239\">#25239</a>)</li><li>Several backported fixes from Gutenberg are included in WordPress 5.5 Beta 4 (<a href=\"https://github.com/WordPress/gutenberg/pull/24218\">See PR #24218</a>)</li></ul>\n\n\n\n<h2 id=\"block-76156b2b-0a52-4502-b585-6cbe9481f55b\">Developer notes</h2>\n\n\n\n<p id=\"block-3fe5e264-0a95-4f12-9a18-0cb9dc5955d1\">WordPress 5.5 has lots of refinements to polish the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-5+dev-notes/\">developers’ notes</a> for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2 id=\"block-bc89fd56-47b0-439f-8e2c-4a642c80a616\">How to Help</h2>\n\n\n\n<p id=\"block-3ff83a77-8b54-4061-ae2d-45fc984cbd76\">Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p id=\"block-9d871099-ec49-446c-8322-9e49b7498c10\">If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you!</p>\n\n\n\n<p id=\"block-bd71c1d3-39d9-4b2a-8193-3486497b45fd\">If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>, where you can also find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</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:\"8719\";s: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:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.5 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Jul 2020 17:51: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=8706\";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:324:\"WordPress 5.5 Beta 3 is now available! This software is still in development,so it’s not recommended to run this version on a production site. Consider setting up a test site to play with the new version. You can test WordPress 5.5 Beta 3 in two ways: Try the WordPress Beta Tester plugin (choose the “bleeding [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jake Spurlock\";s: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:3876:\"\n<p>WordPress 5.5 Beta 3 is now available!</p>\n\n\n\n<p id=\"block-81bd56b9-ea44-43ad-ab36-a5ae78b54375\"><strong>This software is still in development,</strong>so it’s not recommended to run this version on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p id=\"block-7cc1bbc6-17f9-44c5-8f67-da4e3059ad69\">You can test WordPress 5.5 Beta 3 in two ways:</p>\n\n\n\n<ul id=\"block-4840af57-f44b-4d9f-aa64-c6a452392e42\"><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.5-beta3.zip\">download the beta here</a> (zip).</li></ul>\n\n\n\n<p id=\"block-a40528cb-eb3b-4c8a-8f5e-aa700f1ba086\">WordPress 5.5 is slated for release on <a href=\"https://make.wordpress.org/core/5-5/\">August 11th, 2020</a>, and <strong>we need your help to get there</strong>!</p>\n\n\n\n<p>Thank you to all of the contributors who tested the <a href=\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-2/\">beta 2</a> development release and gave feedback. Testing for bugs is a critical part of polishing every release and a great way to contribute to WordPress. </p>\n\n\n\n<h2 id=\"block-15d6d57f-905d-4a47-9f66-839468a5375a\">Some highlights</h2>\n\n\n\n<p id=\"block-85da84ec-c841-42f9-8d3b-1a4537a61d10\">Since <a href=\"https://wordpress.org/news/2020/02/wordpress-5-4-beta-2/\">beta 2</a>, <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=07%2F15%2F2020..07%2F21%2F2020&amp;milestone=5.5&amp;group=component&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">43 bugs</a> have been fixed. Here are a few changes in beta 3:</p>\n\n\n\n<ul><li>Plugin and theme versions are now shared in the emails when automatically updated (see <a href=\"https://core.trac.wordpress.org/ticket/50350\">#50350</a>).</li><li>REST API routes without a <code>permission_callback</code> now trigger a <code>_doing_it_wrong()</code> warning (see <a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://core.trac.wordpress.org/ticket/50075\">#50075</a>).</li><li>Over 23 Gutenberg changes and updates (see <a href=\"https://github.com/WordPress/gutenberg/pull/24068\">#24068</a> and <a href=\"https://core.trac.wordpress.org/ticket/50712\">#50712</a>).</li><li>A bug with the new import and export database Dashicons has been fixed (see <a href=\"https://core.trac.wordpress.org/ticket/49913\">#49913</a>).</li></ul>\n\n\n\n<h2 id=\"block-76156b2b-0a52-4502-b585-6cbe9481f55b\">Developer notes</h2>\n\n\n\n<p id=\"block-3fe5e264-0a95-4f12-9a18-0cb9dc5955d1\">WordPress 5.5 has lots of refinements to polish the developer experience. To keep up, subscribe to the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> and pay special attention to the <a href=\"https://make.wordpress.org/core/tag/5-5+dev-notes/\">developers’ notes</a> for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2 id=\"block-bc89fd56-47b0-439f-8e2c-4a642c80a616\">How to Help</h2>\n\n\n\n<p id=\"block-3ff83a77-8b54-4061-ae2d-45fc984cbd76\">Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p id=\"block-9d871099-ec49-446c-8322-9e49b7498c10\">If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We’d love to hear from you!</p>\n\n\n\n<p id=\"block-bd71c1d3-39d9-4b2a-8193-3486497b45fd\">If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>, where you can also find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</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:\"8706\";s: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:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.5 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 Jul 2020 17:24:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=8681\";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:358:\"WordPress 5.5 Beta 2 is now available! This software is still in development,&#160;so it’s not recommended to run this version on a production site. Consider setting up a test site to play with the new version. You can test WordPress 5.5 beta 2 in two ways: Try the&#160;WordPress Beta Tester&#160;plugin (choose the “bleeding edge nightlies” [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jake Spurlock\";s: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:4552:\"\n<p id=\"block-000046ff-d8e6-40a8-9869-2dd39e50f270\"><br>WordPress 5.5 Beta 2 is now available!</p>\n\n\n\n<p id=\"block-81bd56b9-ea44-43ad-ab36-a5ae78b54375\"><strong><strong>This software is still in development,</strong>&nbsp;</strong>so it’s not recommended to run this version on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p id=\"block-7cc1bbc6-17f9-44c5-8f67-da4e3059ad69\">You can test WordPress 5.5 beta 2 in two ways:</p>\n\n\n\n<ul id=\"block-4840af57-f44b-4d9f-aa64-c6a452392e42\"><li>Try the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin (choose the “bleeding edge nightlies” option)</li><li>Or&nbsp;<a href=\"https://wordpress.org/wordpress-5.5-beta2.zip\">download the beta here</a>&nbsp;(zip).</li></ul>\n\n\n\n<p id=\"block-a40528cb-eb3b-4c8a-8f5e-aa700f1ba086\">WordPress 5.5 is slated for release on&nbsp;<a href=\"https://make.wordpress.org/core/5-5/\">August 11th, 2020</a>, and <strong>we need your help to get there</strong>!</p>\n\n\n\n<p>Thank you to all of the contributors that tested the <a href=\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-1/\">beta 1</a> development release and provided feedback. Testing for bugs is an important part of polishing each release and a great way to contribute to WordPress. Here are some of the changes since beta 1 to pay close attention to while testing.</p>\n\n\n\n<h2 id=\"block-15d6d57f-905d-4a47-9f66-839468a5375a\">Some highlights</h2>\n\n\n\n<p id=\"block-85da84ec-c841-42f9-8d3b-1a4537a61d10\">Since <a href=\"https://wordpress.org/news/2020/02/wordpress-5-4-beta-1/\">beta 1</a>, <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=07%2F08%2F2020..07%2F14%2F2020&amp;milestone=5.5&amp;group=component&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">48 bugs</a> have been fixed. Here is a summary of a few changes included in beta 2:</p>\n\n\n\n<ul><li>19 additional bugs have been fixed in the block editor (see <a href=\"https://github.com/WordPress/gutenberg/pull/23903\">#23903</a> and <a href=\"https://github.com/WordPress/gutenberg/pull/23905\">#23905</a>).</li><li>The Dashicons icon font has been updated (see <a href=\"https://core.trac.wordpress.org/ticket/49913\">#49913</a>).</li><li>Broken widgets stemming from changes in Beta 1 have been fixed (see <a href=\"https://core.trac.wordpress.org/ticket/50609\">#50609</a>).</li><li>Query handling when counting revisions has been improved (see <a href=\"https://core.trac.wordpress.org/ticket/34560\">#34560</a>).</li><li>An alternate, expanded view was added for <code>wp_list_table</code> (see <a href=\"https://core.trac.wordpress.org/ticket/49715\">#49715</a>).</li><li>Some adjustments were made to the handling of default terms for custom taxonomies (see <a href=\"https://core.trac.wordpress.org/ticket/43517\">#43517</a>)</li></ul>\n\n\n\n<p>Several updates have been made to the block editor. For details, see <a href=\"https://github.com/WordPress/gutenberg/pull/23903\">#23903</a> and <a href=\"https://github.com/WordPress/gutenberg/pull/23905\">#23905</a>.</p>\n\n\n\n<h2 id=\"block-76156b2b-0a52-4502-b585-6cbe9481f55b\">Developer notes</h2>\n\n\n\n<p id=\"block-3fe5e264-0a95-4f12-9a18-0cb9dc5955d1\">WordPress 5.5 has lots of refinements to polish the developer experience. To keep up, subscribe to the&nbsp;<a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a>&nbsp;and pay special attention to the&nbsp;<a href=\"https://make.wordpress.org/core/tag/5-5+dev-notes/\">developers’ notes</a>&nbsp;for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2 id=\"block-bc89fd56-47b0-439f-8e2c-4a642c80a616\">How to Help</h2>\n\n\n\n<p id=\"block-3ff83a77-8b54-4061-ae2d-45fc984cbd76\">Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help us translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p id=\"block-9d871099-ec49-446c-8322-9e49b7498c10\">If you think you’ve found a bug, you can post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a>&nbsp;in the support forums. We’d love to hear from you!</p>\n\n\n\n<p id=\"block-bd71c1d3-39d9-4b2a-8193-3486497b45fd\">If you’re comfortable writing a reproducible bug report,&nbsp;<a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>,&nbsp;where you can also find a list of&nbsp;<a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</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:\"8681\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.5 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2020/07/wordpress-5-5-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Jul 2020 21:49:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=8624\";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:358:\"WordPress 5.5 Beta 1 is now available for testing! This software is still in development,&#160;so it&#8217;s not recommended to run this version on a production site. Consider setting up a test site to play with the new version. You can test the WordPress 5.5 beta in two ways: Try the&#160;WordPress Beta Tester&#160;plugin (choose the “bleeding [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jake Spurlock\";s: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:9697:\"\n<p>WordPress 5.5 Beta 1 is now available for testing!</p>\n\n\n\n<p><strong>This software is still in development,</strong>&nbsp;so it&#8217;s not recommended to run this version on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>You can test the WordPress 5.5 beta in two ways:</p>\n\n\n\n<ul><li>Try the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin (choose the “bleeding edge nightlies” option)</li><li>Or&nbsp;<a href=\"https://wordpress.org/wordpress-5.5-beta1.zip\">download the beta here&nbsp;(zip)</a>.</li></ul>\n\n\n\n<p>The current target for final release is August 11, 2020. This is only <strong>five weeks away</strong>. Your help is needed to ensure this release is tested properly.</p>\n\n\n\n<p>Testing for bugs is an important part of polishing the release during the beta stage and a great way to contribute. Here are some of the big changes and features to pay close attention to while testing.</p>\n\n\n\n<h2><strong>Block editor: features and improvements</strong></h2>\n\n\n\n<p>WordPress 5.5 will include eleven releases of the Gutenberg plugin, bringing with it a long list of exciting new features. Here are just a few:</p>\n\n\n\n<ul><li><strong>Inline image editing &#8211; </strong>Crop, rotate, and zoom photos inline right from image blocks.</li><li><strong>Block patterns</strong> &#8211; Building elaborate pages can be a breeze with new block patterns. Several are included by default.</li><li><strong>Device previews</strong> &#8211; See how your content will look to users on many different screen sizes. </li><li><strong>End block overwhelm</strong>. The new block inserter panel displays streamlined categories and collections. As a bonus, it supports patterns and integrates with the new block directory right out of the box.</li><li><strong>Discover, install, and insert third-party blocks</strong> from your editor using the new block directory.</li><li>A better, <strong>smoother editing experience </strong>with:&nbsp;<ul><li>Refined drag-and-drop</li><li>Block movers that you can see and grab</li><li>Parent block selection</li><li>Contextual focus highlights</li><li>Multi-select formatting lets you change a bunch of blocks at once&nbsp;</li><li>Ability to copy and relocate blocks easily</li><li>And, better performance</li></ul></li><li><strong>An expanded design toolset for themes.</strong></li><li>Now <strong>add backgrounds and gradients</strong> to more kinds of blocks, like groups, columns, media &amp; text</li><li>And <strong>support for more types of measurements</strong> &#8212; not just pixels. Choose ems, rems, percentages, vh, vw, and more! Plus, adjust line heights while typing, turning writing and typesetting into the seamless act.</li></ul>\n\n\n\n<p>In all, WordPress 5.5 brings more than 1,500 useful improvements to the block editor experience.&nbsp;</p>\n\n\n\n<p>To see all of the features for each release in detail check out the release posts: <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v7.5.0\">7.5</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v7.6.0\">7.6</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v7.7.0\">7.7</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v7.8.0\">7.8</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v7.9.0\">7.9</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v8.0.0\">8.0</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v8.1.0\">8.1</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v8.2.0\">8.2</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v8.3.0\">8.3</a>, <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v8.4.0\">8.4</a>, and <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v8.5.0\">8.5</a>.</p>\n\n\n\n<h2><strong>Wait! There’s more!</strong></h2>\n\n\n\n<h3><strong>XML sitemaps</strong></h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2020/06/10/merge-announcement-extensible-core-sitemaps/\">XML Sitemaps are now included in WordPress</a> and enabled by default. Sitemaps are essential to search engines discovering the content on your website. Your site&#8217;s home page, posts, pages, custom post types, and more will be included to improve your site&#8217;s visibility.</p>\n\n\n\n<h3><strong>Auto-updates for plugins and themes</strong></h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/tag/core-auto-updates/\">WordPress 5.5 also brings auto-updates for plugins and themes</a>. Easily control which plugins and themes keep themselves up to date on their own. It&#8217;s always recommended that you run the latest versions of all plugins and themes. The addition of this feature makes that easier than ever!</p>\n\n\n\n<h3><strong>Lazy-loading images</strong></h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2020/04/08/lazy-loading-of-images-is-in-core/\">WordPress 5.5 will include native support for lazy-loaded images</a> utilizing new browser standards. With lazy-loading, images will not be sent to users until they approach the viewport. This saves bandwidth for everyone (users, hosts, ISPs), makes it easier for those with slower internet speeds to browse the web, saves electricity, and more.</p>\n\n\n\n<h3><strong>Better accessibility</strong></h3>\n\n\n\n<p>With every release, WordPress works hard to improve accessibility. Version 5.5 is no different and packs a parcel of accessibility fixes and enhancements. Take a look:</p>\n\n\n\n<ul><li>List tables now come with extensive, alternate view modes.</li><li>Link-list widgets can now be converted to HTML5 navigation blocks.</li><li>Copying links in media screens and modal dialogs can now be done with a simple click of a button.</li><li>Disabled buttons now actually look disabled.</li><li>Meta boxes can now be moved with the keyboard.</li><li>A custom logo on the front page no longer links to the front page.</li><li>Assistive devices can now see status messages in the Image Editor.</li><li>The shake animation indicating a login failure now respects the user&#8217;s choices in the <code>prefers-reduced-motion</code> media query.</li><li>Redundant <code>Error:</code> prefixes have been removed from error notices.</li></ul>\n\n\n\n<h2><strong>Miscellaneous Changes</strong></h2>\n\n\n\n<ul><li>Plugins and themes can now be updated by uploading a ZIP file.</li><li><a href=\"https://make.wordpress.org/core/2020/06/26/wordpress-5-5-better-fine-grained-control-of-redirect_guess_404_permalink/\">More finely grained control of redirect_guess_404_permalink()</a>.</li><li><a href=\"https://make.wordpress.org/core/2020/07/01/external-library-updates-in-wordpress-5-5-call-for-testing/\">Several packaged external libraries have been updated</a>, including PHPMailer, SimplePie, Twemoji, Masonry, and more!</li></ul>\n\n\n\n<p>Keep your eyes on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/5-5+dev-notes/\">5.5-related developer notes</a> in the coming weeks, breaking down these and other changes in greater detail.</p>\n\n\n\n<p>So far, contributors have fixed more than <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=5.5&amp;group=component&amp;max=500&amp;col=id&amp;col=summary&amp;col=owner&amp;col=type&amp;col=priority&amp;col=component&amp;col=version&amp;order=priority\">360 tickets in WordPress 5.5</a>, including <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;status=reopened&amp;type=enhancement&amp;milestone=5.5&amp;or&amp;status=closed&amp;status=reopened&amp;type=feature+request&amp;milestone=5.5&amp;col=id&amp;col=summary&amp;col=type&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=priority&amp;col=changetime&amp;col=keywords&amp;order=changetime\">157 new features and enhancements</a>, and more bug fixes are on the way.</p>\n\n\n\n<h2><strong>How You Can Help</strong></h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p>If you think you’ve found a bug, please post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. We would love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. That’s also where you can find a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p class=\"has-small-font-size\"><em>Props to <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, <a href=\'https://profiles.wordpress.org/yvettesonneveld/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>yvettesonneveld</a>, <a href=\'https://profiles.wordpress.org/estelaris/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>estelaris</a>, and <a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a> for compiling/writing this post, <a href=\'https://profiles.wordpress.org/davidbaumwald/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>davidbaumwald</a> for editing/proof reading, and <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <a href=\'https://profiles.wordpress.org/desrosj/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>desrosj</a>, and <a href=\'https://profiles.wordpress.org/andreamiddleton/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>andreamiddleton</a> for final review.</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:\"8624\";s: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:\"Sun, 27 Sep 2020 16:37:44 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:\"Tue, 01 Sep 2020 21:00:15 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20200502153337\";}','no'),(53718,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1601267864','no'),(53719,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1601224664','no'),(53720,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1601267864','no'),(53721,'_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:87:\"WPTavern: Fuxia Scholz First to Pass 100K Reputation Points on WordPress Stack Exchange\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=105282\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:219:\"https://wptavern.com/fuxia-scholz-first-to-pass-100k-reputation-points-on-wordpress-stack-exchange?utm_source=rss&utm_medium=rss&utm_campaign=fuxia-scholz-first-to-pass-100k-reputation-points-on-wordpress-stack-exchange\";s: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:5096:\"<p><a href=\"https://stackexchange.com/users/113787/fuxia\">Fuxia Scholz</a>, a prolific <a href=\"https://wordpress.stackexchange.com/\">WordPress Stack Exchange</a> (WPSE) contributor, is the first member to reach 100,000 reputation points. The popular Q&amp;A community site rewards expert advice by floating the highest quality answers to the top, allowing users to earn reputation points. The gamified help community has proven to be more motivating for developers than many traditional forums, since the upvotes communicate how useful their answers are to others.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Scholz started on Stack Overflow a few months before WordPress had its own site. She wrote around 50 answers and made connections with other WordPress developers ahead of the site&rsquo;s <a href=\"https://area51.stackexchange.com/proposals/1500/wordpress-development\">beta phase in June 2010</a>. Once the site graduated and got its own logo and design, Scholz started writing more.</p>\n\n\n\n<p>&ldquo;One core idea for all Stack Exchange sites is gamification: You earn reputation, and you get access to <a href=\"https://wordpress.stackexchange.com/help/privileges\">certain privileges</a>,&rdquo; Scholz said.</p>\n\n\n\n<p>&ldquo;You can say I got a bit addicted. My favorite questions were about problems for which I didn&rsquo;t know the answer, and couldn&rsquo;t find one with a search engine, because no one else had solved that before. I used my answers to teach myself, and I learned a lot this way! In May 2011 <a href=\"https://stackexchange.com/users/113787/fuxia?tab=reputation\">my reputation on WPSE was already higher than on Stack Overflow</a>, and for the next years it went up in a steep curve.&rdquo; Ten years after WPSE launched, Scholz has become the first to reach 100,000 reputation points.</p>\n\n\n\n<p>&ldquo;What reputation and karma do is send a message that this is a community with norms, it&rsquo;s not just a place to type words onto the internet. (That would be 4chan.)&rdquo; Stack Overflow co-creator Joel Spolsky <a href=\"https://www.joelonsoftware.com/2018/04/13/gamification/\">said</a>. &ldquo;We don&rsquo;t really exist for the purpose of letting you exercise your freedom of speech. You can get your freedom of speech somewhere else. Our goal is to get the best answers to questions. All the voting makes it clear that we have standards, that some posts are better than others, and that the community itself has some norms about what&rsquo;s good and bad that they express through the vote.&rdquo;</p>\n\n\n\n<p>The reputation points were originally inspired by Reddit Karma. Spolsky admits that the points not a perfect system but they do tend to &ldquo;drive a tremendous amount of good behavior.&rdquo; Gamification can shape and encourage certain behaviors but Spolsky said it&rsquo;s a weak force that cannot motivate people to do things they are not already interested in doing. For Scholz, it was the community aspect and an earned sense of ownership and responsibility that kept her hooked.</p>\n\n\n\n<p>&ldquo;In 2012, the community elected me as a moderator, and that changed a lot,&rdquo; she said. &ldquo;Now it wasn&rsquo;t just a game anymore, it was a duty. I felt responsible for the site. I still do. I also found some friends on there. We met at WordCamps and in private, and worked together on different projects.&rdquo;</p>\n\n\n\n<p>Scholz no longer works in development and said she doesn&rsquo;t care about WordPress anymore, but she is still a regular contributor on the WPSE.</p>\n\n\n\n<p>&ldquo;I switched careers and work as a writer, translator, and community manager for <a rel=\"noreferrer noopener\" href=\"https://t.co/mIhjlVjPv4?amp=1\" target=\"_blank\">Chess24.com</a> now,&rdquo; she said. &ldquo;But I still care about the site WordPress Stack Exchange! I keep an eye on new tags, handle flagged posts and comments, try to make every new user feel welcome, and I search for people who are abusing the system &mdash; vote fraud and spam. And, very rarely, I even write an answer, because I still know all this stuff. </p>\n\n\n\n<p>&ldquo;Checking the site has become a part of my daily routine, like feeding the cat.&rdquo; </p>\n\n\n\n<p>This daily habit has snowballed into Scholz racking up more than 2,000 answers. She is getting upvotes on many of her old answers nearly every day, which is what pushed her over the 100k milestone.</p>\n\n\n\n<p>&ldquo;There is a lot to say about the way our site developed over the years,&rdquo; Scholz said. &ldquo;I&rsquo;m not happy about some things. The enthusiasm of the early days is gone. We don&rsquo;t have enough regulars, there is no discussion about the site on <a href=\"https://t.co/tlRekl6sOt?amp=1\">WordPress Development Meta Stack Exchange</a>, and our chat, once very active, funny, and friendly, is now almost dead. </p>\n\n\n\n<p>&ldquo;Maybe that&rsquo;s normal, I don&rsquo;t know. But it&rsquo;s still &lsquo;my&rsquo; site. Reputation and badges don&rsquo;t really mean anything for a long time now, but keeping the site working, useful and friendly is more important.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 26 Sep 2020 15:27:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: PhotoPress Plugin Seeks to Revolutionize Photography for WordPress Users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104770\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:209:\"https://wptavern.com/photopress-plugin-seeks-to-revolutionize-photography-for-wordpress-users?utm_source=rss&utm_medium=rss&utm_campaign=photopress-plugin-seeks-to-revolutionize-photography-for-wordpress-users\";s: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:5638:\"<p class=\"has-drop-cap\">Peter Adams, the owner of the <a href=\"https://wordpress.org/plugins/photopress/\">PhotoPress plugin</a>, announced a couple of weeks ago that <a href=\"https://www.photopressdev.com/its-time-for-photopress/\">now is the time for his project</a> to take center stage. &ldquo;It&rsquo;s Time for PhotoPress,&rdquo; read the title of his post in which he laid out a four-phase plan for the future of his project.</p>\n\n\n\n<p>Adams is no stranger to manipulating WordPress to suit the needs of photographers. He described photography as his first love and second career. He initially found the art of taking photos in high school and set off to college to become a professional photographer in the early &rsquo;90s.</p>\n\n\n\n<p>As his university graduation loomed, he was recruited to run web development for an internet ad agency that built websites for Netscape, Bill Clinton&rsquo;s White House, and dozens of Fortune 500 companies. He spent the next 15 years starting or running tech companies before returning to his roots as a photographer.</p>\n\n\n\n<p>Today, he photographs for various magazines and companies. And, that&rsquo;s where his PhotoPress project comes in.</p>\n\n\n\n<p>&ldquo;As far as WordPress has come, it is at risk of losing an entire generation of photographers to photo website services such as Photoshelter, SmugMug, Squarespace, and PhotoFolio,&rdquo; he said. Adams wants to change that, making WordPress the go-to platform for photographers around the world.</p>\n\n\n\n<h2>The Jetpack of Photography Plugins</h2>\n\n\n\n<p class=\"has-drop-cap\">If you dig into the history of the PhotoPress plugin on WordPress.org, it seems to have a 15-year history. However, this is not the same plugin that was published a decade and a half ago by a different developer. The original plugin is now defunct, and Adams took over when the name was freed up on the directory.</p>\n\n\n\n<p>Adams wrote in his announcement post that WordPress has done a great job of delivering several media features over the years. &ldquo;Yet despite that, there are still many rough edges and missing features that keep WordPress from being the first choice for a photographer that needs to publish a beautiful portfolio of their work, put their image catalog/archive online, or showcase a photo editorial/project.&rdquo;</p>\n\n\n\n<p>He outlined a list of 10 specific problem areas that he wants to address in a &ldquo;Jetpack-like&rdquo; plugin for photographers. This is the bread and butter of the first of the planned four phases, which he said is about 80% finished. He had originally planned to develop PhotoPress as a series of separate plugins, each addressing a specific problem. Now, it is a single plugin with modules than can be enabled or disabled.</p>\n\n\n\n<p>When asked why the &ldquo;right time&rdquo; is now, Adams explained it is because the Gutenberg (block editor) project is a giant leap forward in usability in terms of creating photography blogs.</p>\n\n\n\n<img />PhotoPress Gallery block in the editor.\n\n\n\n<p>&ldquo;Photogs are a rare breed of non-technical users with high design sense,&rdquo; he said. &ldquo;Things that I used to have to teach photographers to do using shortcode syntax and custom CSS can now be simple controls with live feedback inside a Gutenberg block. It&rsquo;s really a game-changer for getting people comfortable with customizing things like gallery styling &mdash; which is the number one thing photographers need to do.&rdquo;</p>\n\n\n\n<p>The primary piece of the PhotoPress plugin is its custom PhotoPress Gallery block. It allows users to choose between a range of gallery styles, such as columns, masonry, justified, and mosaic. Each style has its own options. Images can also be launched into a slideshow when one is clicked.</p>\n\n\n\n<p>Based on some quick tests, the block&rsquo;s front-end output will go farther with some themes than others. This is mainly because of conflicting CSS and issues which can be solved by testing against more themes.</p>\n\n\n\n<p>Aside from the block, the plugin can automatically extract image metadata and group that data through custom taxonomies, such as cameras, lenses, locations, keywords, and more. WordPress stores this information out of the box, but it is hidden away as post meta. The plugin uses the taxonomy system to make it manageable for end-users.</p>\n\n\n\n<p>Ultimately, Adams set out to create a photography plugin that fits in with the WordPress admin user interface and experience, which he has accomplished.</p>\n\n\n\n<h2>The Future of PhotoPress</h2>\n\n\n\n<p class=\"has-drop-cap\">The project is still a work in progress. Adams is still moving through Phase I of the four-phase plan. Once it is complete, he can move on to the next steps in the process.</p>\n\n\n\n<p>Phase II is to create themes that are designed specifically to work with the PhotoPress plugin. He has three planned thus far. One for handling portfolio sites. Another for creating a stock photo archive. And the last for photojournalism and exhibits. Each will be built on top of his <a href=\"https://github.com/photopress-dev/frame\">photography theme framework</a>.</p>\n\n\n\n<p>The themes in Phase II will likely be commercial products. Adams said he needs a way to fund the next phases of the project. He hopes to have this step underway by the end of the year.</p>\n\n\n\n<p>For 2021, he wants to begin tackling Phases III and IV. The former will be a website-as-a-service (WaaS) similar to WordPress.com but for photographers. It will begin as a paid project but could have some free options for emerging photographers and students. The final phase is to build an onboarding system.</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, 25 Sep 2020 19:08: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: Google Officially Releases Its Web Stories for WordPress Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=105227\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:191:\"https://wptavern.com/google-officially-releases-its-web-stories-for-wordpress-plugin?utm_source=rss&utm_medium=rss&utm_campaign=google-officially-releases-its-web-stories-for-wordpress-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5593:\"<img />Web Stories for WordPress dashboard.\n\n\n\n<p class=\"has-drop-cap\">Two and a half months after the <a href=\"https://wptavern.com/google-launches-beta-of-amp-powered-web-stories-plugin-for-wordpress\">launch of its public beta</a>, Google <a href=\"https://blog.google/web-creators/create-compelling-web-stories-wordpress/\">released its Web Stories</a> for WordPress plugin. So far, the plugin has over 10,000 active installations and has garnered a solid five-star rating from four reviews.</p>\n\n\n\n<p>Google created the Web Stories format through its AMP Project to allow publishers to create visually-rich stories. It is primarily geared toward mobile site visitors, allowing them to quickly jump through story pages with small chunks of content.</p>\n\n\n\n<p>The <a href=\"https://wordpress.org/plugins/web-stories/\">Web Stories plugin</a> creates a visual interface within WordPress for creating Stories. It breaks away from the traditional WordPress interface and introduces users to an almost Photoshop-like experience for building out individual Stories. The Stories editor is completely drag-and-drop.</p>\n\n\n\n<p>The plugin also offers eight predesigned templates out of the box that cover a small range of niches. However, according to Google&rsquo;s announcement, the company plans to add more templates in future updates.</p>\n\n\n\n<h2>Web Stories Are for Storytelling</h2>\n\n\n\n<p>&ldquo;Firstly&hellip;the power of Stories,&rdquo; wrote Jamie Marsland, founder of Pootlepress, in a <a href=\"https://twitter.com/pootlepress/status/1309020235102597122\">Twitter thread</a>. &ldquo;Stories are how we (humans) see the world and share our experiences. Up to now the platforms that we have to tell stories have been limited to books/films/tv/websites/blogs/instagram stories etc.&rdquo;</p>\n\n\n\n<p>&ldquo;Websites are ok for telling stories but in many ways the format doesn&rsquo;t really fit the linear arc of storytelling. When Marshall McLuhan said &lsquo;the medium is the message&rsquo; in 1964 he was talking about how the medium itself has a social impact, and change the communication itself&hellip;and the possibilities for what is communicated and how it is perceived. But we should keep coming back to Stories. Stories are the key here imo. Now we have an open format to tell Stories, and we have an open platform (WordPress) where those Stories can be told easily.&rdquo;</p>\n\n\n\n<p>Marsland finished his thread by saying that using Stories as a replacement for a brochure or website is a missed opportunity. He said that it was a platform for storytelling and should be used as such.</p>\n\n\n\n<p>It is far too early to tell if Web Stories will simply be a fad or still in wide use years from now. The technology certainly lends itself well to telling stories, particularly in mobile format, but I doubt we have seen the best of what is possible on the web. The format feels too limited to be the end-all-be-all of storytelling. It is merely one medium that will live and die by its popularity with users.</p>\n\n\n\n<p>With the right design skills, some people will craft beautiful Web Stories. And, that is just what Marsland has done with the <a href=\"https://jamiemarsland.staging.wpengine.com/web-stories/wilson-and-pootle/\">first Story he shared</a>:</p>\n\n\n\n<img />Page from the Wilson and Pootle Web Story by Jamie Marsland.\n\n\n\n<p>I agree with his conclusion. Web Stories should be about storytelling. When you move outside of that zone, the technology feels out of place.</p>\n\n\n\n<p>Where I disagree is that websites are not ideal for storytelling. Ultimately, the WordPress block editor will allow artistic end-users to craft intricate stories, mixing content and design in ways that we have not seen. We are just now scratching the surface. I expect our community of developers to build more intricate tools than what the Web Stories plugin currently allows, and we can do so in a way that revolutionizes storytelling on the web.</p>\n\n\n\n<h2>New Features</h2>\n\n\n\n<img />Story editor with Unsplash photo integration.\n\n\n\n<p class=\"has-drop-cap\">The Web Stories plugin now adds support for Unsplash images and Coverr videos out of the box. The plugin adds a new tab with a &ldquo;media&rdquo; icon. For users of the first beta version of the plugin, this may be a bit confusing. The previous media icon was for a tab that displayed the user&rsquo;s media. Now, the user&rsquo;s media is under the tab with the &ldquo;upload&rdquo; icon.</p>\n\n\n\n<p>It is also not immediately clear that the Unsplash images and Coverr videos are not hosted on the site itself. There is a &ldquo;powered by&rdquo; notice at the bottom of the tab, but it can be easy to miss because it blends in with the media in the background.</p>\n\n\n\n<p>Media from Unsplash and Coverr is hosted off-site and not downloaded to the user&rsquo;s WordPress media library. I could find no mention of this in the plugin&rsquo;s documentation. Such hotlinking was a <a href=\"https://wptavern.com/unsplash-responds-to-image-licensing-concerns-clarifies-reasons-for-hotlinking-and-tracking\">cause for debate</a> over the recent official release of the Unsplash plugin.</p>\n\n\n\n<p>Google also announced it planned to add more &ldquo;stock media integrations&rdquo; in the near future. According to a <a href=\"https://docs.google.com/document/d/1q8rkYYMKZh3R2eqkpwgGkx6QX0oSXoLYtIO6ml1BFD0/edit#heading=h.xqcejitqohdk\">document</a> shared via a GitHub <a href=\"https://github.com/google/web-stories-wp/issues/3909#issuecomment-674053068\">ticket</a>, such future integrations may include Google Photos and GIF-sharing site Tenor.</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, 24 Sep 2020 21:13: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"WPTavern: W3C Drops WordPress from Consideration for Redesign, Narrows CMS Shortlist to Statamic and Craft\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=105108\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:255:\"https://wptavern.com/w3c-drops-wordpress-from-consideration-for-redesign-narrows-cms-shortlist-to-statamic-and-craft?utm_source=rss&utm_medium=rss&utm_campaign=w3c-drops-wordpress-from-consideration-for-redesign-narrows-cms-shortlist-to-statamic-and-craft\";s: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:11563:\"<p>The <a href=\"https://www.w3.org/\">World Wide Web Consortium</a> (<em>W3C</em>), the international standards organization for the web,&nbsp;is redesigning its website and will soon be selecting a new CMS. Although WordPress is&nbsp;already used to manage W3C&rsquo;s <a href=\"https://www.w3.org/blog/\">blog</a> and <a href=\"https://www.w3.org/blog/news/\">news</a> sections of the website, the organization is open to adopting a new CMS to meet its list of preferences and <a href=\"https://w3c.studio24.net/docs/cms-strategy-and-requirements/\">requirements</a>. </p>\n\n\n\n<p>Studio 24, the digital agency selected for the redesign project, narrowed their consideration to three CMS candidates:</p>\n\n\n\n<ol><li><a href=\"https://w3c.studio24.net/docs/w3c-cms-selection-process-update/#statamic\">Statamic</a></li><li><a href=\"https://w3c.studio24.net/docs/w3c-cms-selection-process-update/#craft-cms\">Craft CMS</a></li><li><a href=\"https://w3c.studio24.net/docs/w3c-cms-selection-process-update/#wordpress\">WordPress</a></li></ol>\n\n\n\n<p>Studio 24 was aiming to finalize their recommendations in July but found that none of them complied with the W3C&rsquo;s authoring tool <a href=\"https://www.w3.org/WAI/standards-guidelines/atag/\">accessibility guidelines</a>. The CMS&rsquo;s that were better at compliance with the guidelines were not as well suited to the other project requirements.</p>\n\n\n\n<p>In the most recent project <a href=\"https://w3c.studio24.net/updates/weeknotes-11-sept/\">update</a> posted to the site, Studio 24 reported they have&nbsp;shortlisted two CMS platforms. Coralie Mercier, Head of Marketing and Communications at W3C, confirmed that these include Statamic and Craft CMS.</p>\n\n\n\n<p>WordPress was not submitted to the same review process as the Studio 24 team claims to have extensive experience working with it. In the summary of their concerns, Studio 24 cited Gutenberg, accessibility issues, and the fact that the Classic Editor plugin will <a href=\"https://make.wordpress.org/core/2018/11/07/classic-editor-plugin-support-window/\">stop being officially maintained on December 31st, 2021</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>First of all, we have concerns about the longevity of WordPress&nbsp;<strong>as we use it</strong>. WordPress released a new version of their editor in 2018: Gutenberg. We have already rejected the use of Gutenberg in the context of this project due to accessibility issues.</p><p>If we choose to do away with Gutenberg now, we cannot go back to it at a later date. This would amount to starting from scratch with the whole CMS setup and theming.</p><p>Gutenberg is the future of WordPress. The WordPress core development team keeps pushing it forward and wants to roll it out to all areas of the content management system (navigation, sidebar, options etc.) as opposed to limiting its use to the main content editor as is currently the case.</p><p>This means that if we want to use WordPress long term, we will need to circumvent Gutenberg and keep circumventing it for a long time and in more areas of the CMS as time goes by.&nbsp;</p></blockquote>\n\n\n\n<p>Another major factor in the decision to remove WordPress from consideration was that they found &ldquo;no elegant solution to content localization and translation.&rdquo;</p>\n\n\n\n<p>Studio 24 also expressed concerns that tools like ACF, Fewbricks, and other plugins might not being maintained for the Classic Editor experience &ldquo;in the context of a widespread adoption of Gutenberg by users and developers.&rdquo;</p>\n\n\n\n<p>&ldquo;More generally, we think this push to expand Gutenberg is an indication of WordPress focusing on the requirements of their non-technical user base as opposed to their audience of web developers building custom solutions for their clients.&rdquo;</p>\n\n\n\n<p>It seems that the digital agency W3C selected for the project is less optimistic about the future of Gutenberg and may not have reviewed recent improvements to the overall editing experience since 2018, including those related to accessibility. </p>\n\n\n\n<p>Accessibility consultant and WordPress contributor Joe Dolson recently gave an <a href=\"https://www.youtube.com/watch?v=EKZulmYKYJg\">update on Gutenberg accessibility audit</a> at WPCampus 2020 Online. He reported that while there are still challenges remaining, many issues raised in the audit have been addressed across the whole interface and 2/3 of them have been solved. &ldquo;Overall accessibility of Gutenberg is vastly improved today over what it was at release,&rdquo; Dolson said.</p>\n\n\n\n<p>Unfortunately, Studio 24 didn&rsquo;t put WordPress through the same content creation and accessibility tests that it used for Statamic and Craft CMS. This may be because they had already planned to use a Classic Editor implementation and didn&rsquo;t see the necessity of putting Gutenberg through the paces. </p>\n\n\n\n<p>These <a href=\"https://w3c.studio24.net/docs/w3c-cms-selection-process-update/#the-review-process\">tests</a> involved creating pages with &ldquo;flexible components&rdquo; which they referred to as &ldquo;blocks of layout,&rdquo; for things like titles, WYSIWYG text input, and videos. It also involved creating a template for news items where all the content input by the user would be displayed (without formatting). </p>\n\n\n\n<p>Gutenberg would lend itself well to these uses cases but was not formally tested with the other candidates, due to the team citing their &ldquo;extensive experience&rdquo; with WordPress. I would like to see the W3C team revisit Gutenberg for a fair shake against the proprietary CMS&rsquo;s. </p>\n\n\n\n<h2>W3C Is Prioritizing Accessibility Over Its Open Source Licensing Preferences</h2>\n\n\n\n<p>The document outlining the CMS requirements for the project states that &ldquo;W3C has a strong preference for an open-source license for the CMS platform&rdquo; as well as &ldquo;a CMS that is long-lived and easy to maintain.&rdquo; This preference may be due to the economic benefits of using a stable, widely adopted CMS, or it may be inspired by the undeniable symbiosis between open source and open standards.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&ldquo;The industry has learned by experience that the only software-related standards to fully achieve [their] goals are those which not only permit but encourage open source implementations. Open source implementations are a quality and honesty check for any open standard that might be implemented in software&hellip;&rdquo;</p><cite><a href=\"https://opensource.org/osr-rationale\">Open Source Initiative</a></cite></blockquote>\n\n\n\n<p>WordPress is the only one of the three original candidates to be distributed under an&nbsp;<a href=\"https://opensource.org/licenses\">OSD-compliant license</a>.&nbsp;(CMS code available on GitHub isn&rsquo;t the same.)</p>\n\n\n\n<p>Using proprietary software to publish the open standards that underpin the web isn&rsquo;t a good look. While proprietary software makers are certainly capable of implementing open standards, regardless of licensing, there are a myriad of benefits for open standards in the context of open source usage: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&ldquo;The community of participants working with OSS may promote open debate resulting in an increased recognition of the benefits of various solutions and such debate may accelerate the adoption of solutions that are popular among the OSS participants. These characteristics of OSS support evolution of robust solutions are often a significant boost to the market adoption of open standards, in addition to the customer-driven incentives for interoperability and open standards.&rdquo;</p><cite><a href=\"http://airccse.org/journal/ijsea/papers/0111ijsea01.pdf\">International Journal of Software Engineering &amp; Applications</a></cite></blockquote>\n\n\n\n<p>Although both Craft CMS and Statamic have their code bases available on GitHub, they share similarly restrictive licensing models. The Craft CMS <a href=\"https://github.com/craftcms/cms/blob/develop/CONTRIBUTING.md\">contributing document</a> states:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><strong>Craft isn&rsquo;t FOSS</strong><br />Let&rsquo;s get one thing out of the way: Craft CMS is <strong>proprietary software</strong>. Everything in this repo, including community-contributed code, is the property of Pixel &amp; Tonic.</p><p>That comes with some limitations on what you can do with the code:</p><p>&ndash; You can&rsquo;t change anything related to licensing, purchasing, edition/feature-targeting, or anything else that could mess with our alcohol budget.<br />&ndash; You can&rsquo;t publicly maintain a long-term fork of Craft. There is only One True Craft.</p></blockquote>\n\n\n\n<p>Statamic&rsquo;s contributing docs have similar restrictions:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Statamic is not Free Open Source Software. It is <strong>proprietary</strong>. Everything in this and our other repos on Github &mdash; including community-contributed code &mdash; is the property of Wilderborn. For that reason there are a few limitations on how you can use the code:</p></blockquote>\n\n\n\n<p>Projects with this kind of restrictive licensing often fail to attract much contribution or adoption, because the freedoms are not clear. </p>\n\n\n\n<p>In a GitHub issue <a href=\"https://github.com/craftcms/cms/issues/842\">requesting Craft CMS go open source</a>, Craft founder and CEO Brandon Kelly said, &ldquo;Craft isn&rsquo;t closed&nbsp;<em>source</em>&nbsp;&ndash;&nbsp;all the source code is right here on GitHub,&rdquo; and claims the license is relatively unrestrictive as far as proprietary software goes, that contributing functions in a similar way to FOSS projects.  This rationale is not convincing enough for some developers commenting on the thread.</p>\n\n\n\n<p>&ldquo;I am a little hesitant to recommend Craft with a custom open source license,&rdquo; Frank Anderson said. &ldquo;Even if this was a MIT+ license that added the license and payment, much like React used to have. I am hesitant because the standard open source licenses have been tested.&rdquo;</p>\n\n\n\n<p>When asked about the licensing concerns of Studio 24 narrowing its candidates to two proprietary software options, Coralie Mercier told me, &ldquo;we are prioritizing accessibility.&rdquo; A recent project <a href=\"https://w3c.studio24.net/updates/weeknotes-11-sept/\">update</a> also reports that both CMS suppliers W3C is reviewing &ldquo;have engaged positively with authoring tool accessibility needs and have made progress in this area.&rdquo;</p>\n\n\n\n<p>Even if you have cooperative teams at proprietary CMS&rsquo;s that are working on accessibility improvements as the result of this high profile client, it cannot compare to the massive community of contributors that OSD-compliant licensing enables. </p>\n\n\n\n<p>It&rsquo;s unfortunate that the state of open source CMS accessibility has forced the organization to narrow its selections to proprietary software options for its first redesign in more than a decade. </p>\n\n\n\n<p>Open standards go hand in hand with open source. There is a mutually beneficial connection between the two that has caused the web to flourish. I don&rsquo;t see using a proprietary CMS as an extension of W3C values, and it&rsquo;s not clear how much more benefit to accessibility the proprietary options offer in comparison. W3C may be neutral on licensing debates, but in the spirit of openness, I think the organization should adopt an open source CMS, even if it is not WordPress.</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, 24 Sep 2020 20:13:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:79:\"WPTavern: First Look at Twenty Twenty-One, WordPress’s Upcoming Default Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=105166\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:195:\"https://wptavern.com/first-look-at-twenty-twenty-one-wordpresss-upcoming-default-theme?utm_source=rss&utm_medium=rss&utm_campaign=first-look-at-twenty-twenty-one-wordpresss-upcoming-default-theme\";s: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:6907:\"<blockquote class=\"wp-block-quote\"><p>Fashion is ephemeral. Art is eternal. Indeed what is a fashion really? A fashion is merely a form of ugliness so absolutely unbearable that we have to alter it every six months!</p></blockquote>\n\n\n\n<p>Thus wrote Oscar Wilde on Victorian-era fashion in an article titled &ldquo;The Philosophy of Dress&rdquo; for the <em>New-York Tribune</em> in 1885.</p>\n\n\n\n<p>In many ways, WordPress theming is the same as the ever-changing landscape of fashion. Rounded corners are in one day and out the next. Box shadows are in one year after being frowned up just months earlier. Perhaps web design is so intolerable that we must change it every six months. Or, at least freshen it up every year in the case of WordPress.</p>\n\n\n\n<p>If art is eternal, there are only two default, Twenty* themes that I can truly recall from past years: Twenty Ten and Twenty Fourteen &mdash; yes, Twenty Twenty is memorable, but it is also still the current default. Twenty Ten was a classic that paid homage to WordPress&rsquo;s past. Twenty Fourteen was such a leap away from tradition that it is hard to forget. Everything else has seemed to fade to varying degrees.</p>\n\n\n\n<p>With WordPress 5.6 and the end of the year looming, it is time to look forward to the latest trend. As Mel Choyce-Dwan noted in the <a href=\"https://make.wordpress.org/core/2020/09/23/introducing-twenty-twenty-one/\">announcement of Twenty Twenty-One</a>, the next default theme, &ldquo;<a href=\"https://www.garnishstudios.com/\">Pastels</a> and <a href=\"https://www.designbyparker.com/\">muted</a> <a href=\"https://westportcondos.ca/\">colors</a> are <a href=\"https://arisacoba.com/\">pretty</a> <a href=\"https://www.collaborativechange.global/\">in</a> <a href=\"https://paradigmacreation.com/\">right</a> <a href=\"https://taregrocery.com/\">now</a>.&rdquo;</p>\n\n\n\n<p>She is not wrong. The colors are a refreshing change of pace. Now that we are into the second day of autumn, I am getting <em>the good kind of vibes</em> from some of the more earthy-tones from a couple of the color palettes expected to ship with the theme.</p>\n\n\n\n<img />Potential color palette options for Twenty Twenty-One.\n\n\n\n<p>Whether Twenty Twenty-One will be a fashionable theme for the year or art that we can remember a decade from now, only history will be able to judge. For now, let&rsquo;s enjoy the creation and take a look at what we should expect from the next default WordPress theme.</p>\n\n\n\n<h2>The Current Twenty Twenty-One</h2>\n\n\n\n<p class=\"has-drop-cap\">The new default theme is a fork of <a href=\"https://wordpress.org/themes/seedlet/\">Automattic&rsquo;s Seedlet</a>, a project in which I lauded as the <a href=\"https://wptavern.com/exploring-seedlet-automattics-block-first-wordpress-theme\">next step in the evolution of theming</a>. It is a theme that is focused on WordPress&rsquo;s future of being completely comprised of blocks. It gives us an ideal insight into where theme development is heading. It makes sense as the foundation for the new default. Few other themes would make for a good starting point right now. With WordPress theme development in flux, Seedlet is simply ahead of the pack in terms of foundational elements.</p>\n\n\n\n<img />Seedlet WordPress theme screenshot.\n\n\n\n<p>&ldquo;This provides us with a thorough system of nested CSS variables to make child theming easier, and to help integrate with the global styles functionality that&rsquo;s under development for full-site editing,&rdquo; wrote Choyce-Dwan of using Seedlet as a starting point.</p>\n\n\n\n<p>There are no plans to spin up a Google Web Font for this theme. The design team is going native and sticking with the default system font stack. Choyce-Dwan listed several reasons for the choice, such as keeping a neutral font that allows broad use, speed, and customizability via a child theme.</p>\n\n\n\n<p>Despite the neutral font, the default pastel green is a fairly opinionated design decision. It will not be used broadly across industries. However, the team plans to create multiple color palettes that will give it more range. Presumably, these palettes can also be overwritten.</p>\n\n\n\n<img />Pastel green color scheme on single post view.\n\n\n\n<p>Other than the colors, the design is relatively simple. Choyce-Dwan said that the theme&rsquo;s block patterns support is where it will be truly unique.</p>\n\n\n\n<p>I was initially <a href=\"https://wptavern.com/decision-time-what-block-patterns-should-ship-with-wordpress-5-5\">unhappy with the patterns</a> that were going to ship with WordPress 5.5. However, an 11th-hour <a href=\"https://wptavern.com/gutenberg-8-7-adds-minor-changes-updates-block-pattern-designs-and-continues-full-site-editing-work\">update improved the situation</a> so that they did not feel entirely experimental. The foundational Seedlet theme for Twenty Twenty-One has some unique patterns that begin to scratch the surface of what&rsquo;s possible with this WordPress feature. My hope is that the new default theme steps it up a notch.</p>\n\n\n\n<p>Currently, the theme does not register any custom patterns. However, it has a placeholder file and a note that they are a work in progress. Choyce-Dwan shared some patterns the team has already designed in the announcement.</p>\n\n\n\n<img />Currently-designed block patterns.\n\n\n\n<p>&ldquo;We&rsquo;ll be relying on our talented community designers for more ideas,&rdquo; she wrote. The team has also created a GitHub template for anyone to <a href=\"https://github.com/WordPress/twentytwentyone/issues\">contribute pattern design ideas</a>.</p>\n\n\n\n<p>Currently, the theme does not support the upcoming full-site editing feature of WordPress. After the Beta 1 release of WordPress 5.6, the team plans to begin exploring the addition of this support. WordPress is expected to ship a public beta of full-site editing in its <a href=\"https://make.wordpress.org/core/2020/08/13/wordpress-5-6-release-planning/\">next major release</a>, but it is unclear whether it will be far enough along to be a headline feature for the Twenty Twenty-One theme.</p>\n\n\n\n<p>The team and volunteers have less than a month before the October 20th deadline for committing the new theme to trunk, the core WordPress development branch. At that stage, the theme should be nearly complete and ready for production. Of course, there will be several rounds of patches, bug fixes, and updates before WordPress 5.6 lands in December. Right now is the best time for anyone who wants to get involved with Twenty Twenty-One to do so.</p>\n\n\n\n<p>Useful links with more information:</p>\n\n\n\n<ul><li><a href=\"https://github.com/WordPress/twentytwentyone\">GitHub Repository</a></li><li><a href=\"https://www.figma.com/file/Fv7BODXobfo2prksqRDySy/Introducing-Twenty-Twenty-One?node-id=0%3A1\">Theme Mockups via Figma</a></li><li><a href=\"https://www.pinterest.com/melchoyce/tt1/\">Twenty Twenty-One Idea Pinterest Board</a></li></ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 23 Sep 2020 20:01:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:37:\"HeroPress: Hello World – Hevo Nyika\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=3308\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:176:\"https://heropress.com/essays/hello-world-discovering-the-world-through-wordpress/#utm_source=rss&utm_medium=rss&utm_campaign=hello-world-discovering-the-world-through-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14438:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2021/09/092220-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Find your purpose, pursue it relentlessly\" /><p><a href=\"https://heropress.com/feed/#shona\"><span class=\"css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0\">Unokwanisa kuverenga rondedzero iyi muChiShona</span></a></p>\n<p>So I chose a career in Web Development!!</p>\n<p>To be honest it&#8217;s kind of funny when I think about it and quite surreal to be here talking about my story. It has been a journey and I would like to share my story with you.</p>\n<p>I have been lucky in the Dad department. My Dad encouraged me to work hard and dream big from a very young age. I remember occasionally having ‘when I grow up’ talks.</p>\n<p>For quite some time I wanted to be a Judge, however awesome this dream sounds it was not very inspired. After binge-watching Judge Judy for a whole weekend, I started calling myself Judge Thelma. Though I don&#8217;t remember much of this my sister says that I used to say I would arrest all the men in the World if I ever became a Judge. HAHAHA! (clearly I didn&#8217;t understand how the World works)</p>\n<p>I did not understand what being a Judge meant or what was required for me to start banging that gavel to my heart&#8217;s desire. Eventually, I learnt that I had to become a lawyer first then magistrate before I could be nominated to be a Judge and let us just say that is how I sentenced that dream to a lifetime down the drain.</p>\n<p>See what I did there? hahaha!</p>\n<a href=\"https://s20094.pcdn.co/wp-content/uploads/2021/09/tandd-min.jpg\"><img /></a>With Daddy Dearest\n<p>A few years later, I was in High School and that is when I decided to pursue a career in Computer Science. I did not know what I would be doing or how I would get there but I just knew that I was going to pursue a career in ICT. I wrote my first line of code when I was 16 years old.</p>\n<p>This was after I had joined the school&#8217;s computer class, initially, I thought I would be learning about Excel Sheets and Word Documents until I was assigned to write my first program in C (talk about a double-take!!). It was not easy but it was very exciting, l remember writing up simple code for a Video Club &#8211; a simple check-in/out for VHS tapes and CDs. Dear World, thus began my fascination with computers.</p>\n<p>Seven years later, I was now in university studying ICT as I had always wanted. I was doing a Bachelors in Business Management &amp; Information Technology. In my third year, I was interning at a local Webdesign and hosting company. This was never my plan, I only took on that job after I had failed to get a job with local banks or telecommunications companies. Before I was introduced to Website Design I envisioned myself suiting up and working in IT Audit or offering IT support. Even though things did not go as I had planned, I am glad they did not exactly go my way in that aspect. So in 2017, I was designing websites using HTML, CSS, PHP, JavaScripts and Joomla which was the prefered content management system at that company. I knew about WordPress but I was not using it for anything. People have this misconception that WordPress is not for real developers and it is not secure and at that time I was one of those people.</p>\n<h3>Finding my tribe</h3>\n<p>One day when I was working at the front desk <a href=\"https://heropress.com/essays/wordpress-opened-whole-new-world/\">Thabo Tswana</a> came to give a colleague of mine a purple WooCommerce pen. I did not know what WooCommerce was at that time but I was taken by the purple shirt and pen he was carrying. I asked him about it and he explained what WooCommerce was and that what he was carrying was called &#8216;swag&#8217;. So the love of freebies led me to the WordCamp Harare website, instead of buying a ticket I applied to volunteer. I learnt more about WordPress, I was a volunteer, without any knowledge on WordPress.org or WordPress.com. I only started using WordPress because of the awesome people that l had met at that Wordcamp.</p>\n<p>Everyone was so welcoming, a week later with help from Thabo I designed my first ever WP website.</p>\n<p>Soon after I was part of the community and a bit more involved in the meetups. We had our first-ever Women Who WordPress meetup in 2018. So many ladies came on board bloggers and developers alike. We were free to talk and discuss a lot of things. We had more time to discuss the difference between WordPress.com and WordPress.org we shared views on how to handle discrimination at work, how to promote your website and a whole lot of other things.</p>\n<p><a href=\"https://s20094.pcdn.co/wp-content/uploads/2021/09/20180324_105352-min.jpg\"><img /></a></p>\n<h3>Establishing roots</h3>\n<p>In 2018, Harare had its first-ever female Lead Organiser <a href=\"https://tapiwanashe.com/\">Tapiwanashe Manhobo</a> whoop whoop! I was also part of the organising team that year, I was assigned to handle Harare’s first Kids Camp. The planning process was stressful because the economic crisis in Zimbabwe was getting worse, luckily we had over 8 months to plan and with help from sponsors, we managed to pull through. In the end, everything turned out great. I wrote an article about the <a href=\"https://thelmachido.wordpress.com/2019/11/21/wordpress-juniours-first-edition/\">Kids Camp here</a>.</p>\n<p>After the first Kids Camp, we had several WordPressors that were enthusiasts about encouraging kids to embrace ICT. In 2019 we had not planned to have a Kids Camp because of financial constraints but to our surprise, we had some anonymous donations and we managed to have a WordPress Community outreach to a youth centre a week after our WordCamp. We had the outreach at the <a href=\"https://cttzim.org/\">Centre for Total Transformation</a> which is a non-formal school that caters for underprivileged and vulnerable children. We taught them about WordPress, Computer Hardware and Software.</p>\n<p>Here is a small video I took with Ellen when we were about to leave. Did l mention that I am terrible on camera? hahaha!</p>\n<div class=\"wp-video\"><a href=\"https://thelmachido.me/vid.mp4\">https://thelmachido.me/vid.mp4</a></div>\n<p><a href=\"https://thelmachido.wordpress.com/2020/09/18/kids-camp-2019-centre-for-total-transformation/\">Kids Camp 2019 &#8211; Centre for Total&nbsp;Transformation</a></p>\n<p>I have fallen deeply for WordPress because of the Community, I enjoy attending WordCamps, meeting new people and just learning new stuff. I have a huge list of WordCamps I need to attend before l kick the bucket, hopefully. Last year I managed to cross WordCamp</p>\n<p>Johannesburg off my bucket list. This year I was going to attend WordCamp Capetown but unfortunately, 2020 had other plans for the whole world. Anyway when everything is back to normal my plan to travel to WordCamps will proceed. (fingers crossed)</p>\n<h3>Reaping Fruits</h3>\n<p>Meanwhile, my plan to improve my developing skills has not been on hold. Even though I can still cook up code in C and Java, for now, I have also included WordPress PHP functions to the mix. It was not easy to get to this point, daring myself got me to this slightly better stage. My IQ is not way up there, however, I try to do my best where I can and I am happy to say it has paid off so far.</p>\n<p>Around November last year, I was designing as a freelancer while job hunting. Out of the blue l got a call for a job offer from <a href=\"https://zw.linkedin.com/in/trust-nhokovedzo\">Trust Nhokovenzo</a> who is big on <a href=\"https://afrodigital.org/\">Digital marketing</a> and also part of the WordPress Community. He had asked someone in the community about developers and my name happened to come up. So since February, I have been part of his team at <a href=\"https://calmlock.co.zw/\">Calmlock Digital Marketing Agency</a>.</p>\n<p>There is so much more in the world of WordPress that l am yet to tap into so even though I am ending my write up here, for now, my story is going to continue &#8230;</p>\n<p>Until next time&#8230;</p>\n<h1 id=\"shona\">Hevo Nyika</h1>\n<p>Saka ini ndakasarudza kugadzira mawebhusayiti.</p>\n<p>Ndakaita rombo rakanaka pana baba vandakapihwa naMwari. Baba vangu vaindikurudzira kuti ndishande nesimba. Ndinoyeuka pano neapo tichiita hurukuro dzedu dzekuti ‘kana ndakura ndoda kuveyi’.</p>\n<p>Kwenguva yakati rebei ndaida kuve Mutongi. Kunyangwe ini ndisingazvirangariri mukoma wangu anotaura kuti ndaiti ndaizosunga varume vese vari pasi rino kana ndikangoita mutongi HAHAHA zveshuwa handaiziva kuti mitemo yenyika inofambiswa seyi.<br />\nNdanga ndisinga nzwisisi kuti kuva mutongi kwairevei kana zvaidikanwa kwandiri kuti nditange kurova iro ghavheu kuchishuwo chemoyo wangu. Pakupedzisira, ndakadzidza kuti ndaifanirwa kuzoita gweta ipapo magistrate ndisati ndasarudzwa kuita Mutongi naizvozvo ndokupera kwakaita chiroto chekuva Mutongi.</p>\n<a href=\"https://s20094.pcdn.co/wp-content/uploads/2021/09/tandd-min-1.jpg\"><img /></a>Na Baba Vangu\n<p>Gare gare papfura makore mashoma pandakanga ndave kuHigh School ndakanga ndakuda kuita basa rema kombiyuta. Ndakanyora mutsara wekutanga wekodhi pandaive nemakore gumi nematanhatu. Izvi zvakaitika mushure mekunge ndapinda mukirasi yemakombiyuta, pakutanga ndaifunga kuti ndinenge ndichidzidza nezveExcel Sheets neWord zvisineyi ndakaona ndakunyora kodhi yangu yekutanga muC. Zvaisave nyore kunyora kodhi asi zvainakidza kwazvo, ndorangarira ndichinyora kodhi yeVhidhiyo Kirabhu.</p>\n<p>Makore manomwe apfura, ndakanga ndava kuyunivhesiti ndichidzidza ICT zvandakagara ndakaronga. Ndaiita Bachelors muBusiness Management &amp; Information Technology. Mugore rangu rechitatu ndainge ndave kushanda kune imwe kambani yaita zvekugadzira mawebhusaiti. Ndakawana basa iri mushure mekunge ndatadza kuwana basa kumabhanga. Kunyangwe hazvo zvinhu zvisina kuenda sezvandaive ndakaronga, ndinofara kuti hazvina kunyatso enda nenzira yangu. Saka muna 2017 ndaigadzira mawebhusaiti ndichishandisa HTML, CSS, PHP, JavaScript uye Joomla iyo yaive iyo inokurudzirwa kukambani kwandaive. Panguva iyi ndaiziva nezve WordPress asi ndakanga ndisingaishandisi.</p>\n<h3>Kuwanana neWordPress</h3>\n<p>Rimwe zuva pandakanga ndichishanda ndakaona <a href=\"https://heropress.com/essays/wordpress-opened-whole-new-world/\">Thabo Tswana</a> akauya kuzopa mumwe mukomana wandayishanda naye chinyoreso cheWooCommerce. Ndakanga ndisingazive kuti WooCommerce yaive chii asi ndakafarira chinyoreso nehembe ye WooCommerce yaanga akapfeka. Ndakamubvunza nezvazvo akatsanangura kuti WooCommerce yaive chii. Saka nekudawo zvakanaka, zvemahara ndakaenda pawebhusaiti yeWordCamp Harare ndikabata zvimbo zvegore iroro. Ndakazvipira kubatsirawo vamwe vekuWordPress kuWordCamp Harare. Nerubatsiro kubva kunaThabo ndakagadzira webhusaiti yangu yekutanga yeWordPress vhiki rakatevera .</p>\n<p>Mushure mekunge ndaitawo chipato cheavo vanoshandisa WordPress ndakanga ndakuenda kumisangano yeWordPress yaitwa muHarare. Takaita musangano wevakadzi chete muna 2018. Vakadzi vazhinji vakauya kumusangano uyu. Tainga takasununguka kukurukura zvinhu zvakawanda. Takakurukura pamusoro pemutsauko uripo pakati peWordPress.com neWordPress.org takagovana maonero ekugadzirisa rusarura kubasa nezvimwewo.</p>\n<p><a href=\"https://s20094.pcdn.co/wp-content/uploads/2021/09/20180324_105352-min.jpg\"><img /></a></p>\n<h3>Nguva yandakatanga kushandisa WordPress</h3>\n<p>Muna 2018, kurongwa kweWordCamp Harare kwakatungamirwa kekutanga nemusikana ainzi <a href=\"https://tapiwanashe.com/\">Tapiwanashe Manhobo</a> (waiva mufaro mukuru). Ndakanga ndiri mumwe wevairongawo naye. Hurongwa hwekuronga WordCamp Harare mugore iri hwainetsa pamusaka pekuoma kwehupfumi wemuZimbabwe, zvisineyi takaita rombo rakanaka nokuti takawana rubatsiro kubva kunevamwewo vanhu vakatiwedzera mari. Pakupedzisira, zvese zvakabudirira zvakanaka. Takarongawo WordCamp yevana varipasi pemakore gumi nechishanu, munokwanisa kuverenga pamusoro pezuva iri <a href=\"https://thelmachido.wordpress.com/2019/11/21/wordpress-juniours-first-edition/\">pawebhisaiti yangu apa</a>.</p>\n<p>Mushure mekuita WordCamp yevana, takave nevamwe vanhu veWordPress aifarira kukurudzira vana kuti vagamuchire ICT. Muna 2019 takanga tisina kuronga kuve neWordCamo yeVana nekuda kwezvimhingamupinyi zvemari asi chakatishamisa ndechekuti takawana mari kubvawo kune vamwe. Takaita Camp iyi pa<a href=\"https://cttzim.org/\">Centre for Total Transformation</a> chinova chikoro chisiri chepamutemo chinodzidzisa vana vanotambura. Tadzidzisa vana ava pamusoro peWordPress, Computer Hardware uye Software.</p>\n<div class=\"wp-video\"><a href=\"https://thelmachido.me/vid.mp4\">https://thelmachido.me/vid.mp4</a></div>\n<p>Ndofarira WordPress zvakanyanya nekuda kweavo varimu nharaunda yacho, ini ndinonakidzwa nekuenda kumaWordCampi, kusangana nevanhu vatsva uye kungo dzidza zvinhu zvitsva. Gore rakapera ndakakwanisa kuyambuka muganhu weZimbabwe ndichienda kuWordCamp Johannesburg, dai pasina kuti 2020 nyika dzepasi rino dzakawirwa nedenda reCOVID 19 zvimwe ndingadayi ndakaenda kuWordCamp Capetown. Zvisinei hazvo kana denda ranani zvimwe ndichakwanisa kufamba ndichienda kumaWordCamp edzimwe nyika.</p>\n<h3>Kukowa zvandakadyara</h3>\n<p>Zvichakadaro, chirongwa changu chekuvandudza hunyanzvi hwangu hachina kumira. Kunyangwe ini ndichiri kukwanisa kubika kodhi muC uye Java, ikozvino, ndasanganisirawo WordPress PHP. Zvaive zvisiri nyore kusvika apa, zvakatora kuzvishingisa nekushanda nesimba. Ndinofara mwari aiva neni pamufambo wangu uyu.</p>\n<p>Muna Mbudzi gore rakapera, ndaive ndichigadzira mawebhusayiti apo nditsvaga basa. Pasina nguva ndakataura na<a href=\"https://zw.linkedin.com/in/trust-nhokovedzo\">Trust Nhokovenzo</a> uyo akaandipa basa mukambani yake, kambani iyi inonzi <a href=\"https://calmlock.co.zw/\">Calmlock Digital Marketing Agency</a>.</p>\n<p>Pane zvimwe zvakawanda kuWordPress zvandisati ndapinda mazviri. Nhaizvozvo kunyangwe ndiri kupedzisa kunyora kwangu apa, nyaya yehupenyu wangu ichaenderera mberi&#8230;</p>\n<p>Kusvikira nguva inotevera &#8230;</p>\n<p><strong>&#8230;. tsvaga chinangwa chako, chiite mushe mushe ..</strong></p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/hello-world-discovering-the-world-through-wordpress/\">Hello World &#8211; Hevo Nyika</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, 23 Sep 2020 06:00: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:13:\"Thelma Mutete\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:102:\"WPTavern: WordPress Contributors Debate Dashboard Notice for Upcoming Facebook oEmbed Provider Removal\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=105132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:249:\"https://wptavern.com/wordpress-contributors-debate-dashboard-notice-for-upcoming-facebook-oembed-provider-removal?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-contributors-debate-dashboard-notice-for-upcoming-facebook-oembed-provider-removal\";s: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:5885:\"<p>WordPress contributors are discussing different strategies for responding to Facebook and Instagram <a href=\"https://wptavern.com/upcoming-api-change-will-break-facebook-and-instagram-oembed-links-across-the-web-beginning-october-24\">dropping unauthenticated oEmbed support</a>&nbsp;on October&nbsp;24. WordPress will be removing both Facebook and Instagram as oEmbed providers. When a user attempts to embed content by pasting a URL as they have in the past, they may not understand why it no longer works. They may assume that WordPress broke embeds, causing an increase in the support burden for this change.</p>\n\n\n\n<p>A few participants on the <a href=\"https://core.trac.wordpress.org/ticket/50861\">trac ticket</a> for this issue have suggested WordPress detect users who will be impacted and attempt to warn them with a notice.</p>\n\n\n\n<p>&ldquo;Since this may impact users unknowingly, it is possible to push a dashboard notice to users who have Facebook/Instagram embeds in their content, showing for site admins, as a one-off that can be dismissed,&rdquo; Marius Jensen said.</p>\n\n\n\n<p>&ldquo;We&rsquo;ve previously done post-update-processing to clean up comments, so the idea of looking over content for an embed isn&rsquo;t completely outlandish, and would help with those who don&rsquo;t follow WordPress&rsquo; usual channels to learn of this.&rdquo;</p>\n\n\n\n<p>Others don&rsquo;t see the necessity. &ldquo;Why should we make exception here?&rdquo; Milan Dini&#263; said. &ldquo;It&rsquo;s not the first time oEmbed support was discontinued for a provider, and I don&rsquo;t remember anything specific was done then.&rdquo;</p>\n\n\n\n<p>There is still some uncertainty about what will happen with existing oEmbeds after Facebook updates its API. During a recent core developer meeting, Helen Helen Hou-Sand&iacute; confirmed that WordPress does not clear&nbsp;oEmbed&nbsp;caches regularly. &ldquo;Technically&nbsp;oEmbed&nbsp;caches are cleared if you save and a valid response is returned, we do not do cron-based garbage collection,&rdquo; Hou-Sand&iacute; said.</p>\n\n\n\n<p>In a post today on the core development blog, Jake Spurlock assured users and developers that the existing embeds added before Facebook&rsquo;s API change should still work:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Because oEmbed responses are cached in the database using the hidden&nbsp;<code>oembed_cache</code>&nbsp;post type, any embed added prior to the October 24th deadline will be preserved past the deprecation date. These posts are not purged by default in WordPress Core, so the contents of the embed will persist unless manually deleted.</p></blockquote>\n\n\n\n<p>Marius Jensen cautioned that there is still the possibility that existing embeds may not work going, depending on what Facebook does.</p>\n\n\n\n<p>&ldquo;We don&rsquo;t know how they plan on implementing the use of unauthorized embed attempts,&rdquo; Jensen said. &ldquo;It could not return an embed code and your link would remain a plain link, or maybe they decide to return some kind of embedded &lsquo;unauthorized&rsquo; content. I don&rsquo;t think anyone has heard any specifics on how Facebook plans on doing this, so we&rsquo;re all just kinda waiting to either hear more, or see what happens.&rdquo;</p>\n\n\n\n<p>Jensen said WordPress doesn&rsquo;t re-check the cached results except when something changes with the post, but there may be plugins that clean up temporary data that may create an unpredictable outcome.</p>\n\n\n\n<p>&ldquo;The reliability of the caches are hard to determine (and being caches, it&rsquo;s sort of in the term that it&rsquo;s not guaranteed to always be there, but rather fetched and saved for a while when needed),&rdquo; Jensen said.</p>\n\n\n\n<p>Ideally WordPress&rsquo; oEmbed caches will prevent millions of embeds from breaking, but it&rsquo;s still unknown how Facebook and third party plugins could change things.</p>\n\n\n\n<p>Coming off a rocky 5.5 core update that deprecated jQuery Migrate and flooded official support forums with&nbsp;<a href=\"https://wordpress.org/search/5.5?in=support_forums\">reports of broken sites</a>, some contributors are wary of having another situation where users are left in the dark.</p>\n\n\n\n<p>&ldquo;I think a dashboard notice is desirable,&rdquo; Jon Brown said. &ldquo;Otherwise we&rsquo;re not preemptively warning people in a way they can prepare and transition to another solution. We&rsquo;re letting them know the same instant it&rsquo;s going to break (when editing a specific post). I don&rsquo;t think we can safely assume cached data is going to persist forever either, plenty of routines out there purge transient data before its stated expiration date.</p>\n\n\n\n<p>&ldquo;I see this as potentially being similar to the problems seen in dropping JQM. It&rsquo;ll cause <em>avoidable and silent breakage</em> client side without even any error logging for a site developer to pick up on. In hindsight, what ideally would have happened with JQM would have been incorporating the detection code from Enable jQuery Migrate Helper into core temporarily, or simply installing that plugin automatically on behalf of users.&rdquo;</p>\n\n\n\n<p>Brown suggested WordPress detect calls to the cached embeds and warn users before the calls have the chance to fail so they can consider enabling a plugin to keep their embeds working more reliably.</p>\n\n\n\n<p>The discussion remains open in the make.wordpress.org/core <a href=\"https://make.wordpress.org/core/2020/09/22/facebook-and-instagram-embeds-to-be-deprecated-october-24th/\">post</a> and the corresponding <a href=\"https://core.trac.wordpress.org/ticket/50861\">trac ticket</a>. Spurlock said WordPress will likely remove Facebook and Instagram oEmbed providers in the upcoming 5.6 release (scheduled for December 8) but it could also be shipped in a 5.x minor release that happens after October 24. </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, 23 Sep 2020 04:28: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: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:65:\"WPTavern: Gutenberg Hub Launches Landing Page Templates Directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=105009\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:175:\"https://wptavern.com/gutenberg-hub-launches-landing-page-templates-directory?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-hub-launches-landing-page-templates-directory\";s: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:7657:\"<img />\n\n\n\n<p class=\"has-drop-cap\">Munir Kamal has created <a href=\"https://wptavern.com/copy-and-paste-editor-blocks-via-gutenberghubs-block-library\">copy-and-paste blocks</a>. He has built <a href=\"https://wptavern.com/gutenberg-hub-launches-collection-of-100-block-templates\">sections or &ldquo;patterns&rdquo;</a> from those blocks. He has created a plugin that allows users to completely customize the two features via block options. Yesterday, he <a href=\"https://gutenberghub.com/introducing-gutenberg-landing-page-templates/\">released an initial offering</a> of 22 landing page templates that build upon his earlier work.</p>\n\n\n\n<p>Gutenberg Hub can almost be called his <em>magnum opus</em>, at least at this stage of his career. It is a continually growing library of free tools for WordPress&rsquo;s block editor.</p>\n\n\n\n<p>Like previous projects, Gutenberg Hub&rsquo;s landing templates require the <a href=\"https://wptavern.com/control-block-design-via-the-editorplus-wordpress-plugin\">EditorPlus plugin</a>. This plugin is essentially a suite of design controls for the core WordPress blocks. The templates make use of these options by default. Given the limitations of the block editor&rsquo;s current design controls, the use of such a plugin is necessary. Otherwise, there would be few other ways to realistically create a template system like this.</p>\n\n\n\n<p>Currently, users must copy the block code &mdash; via a convenient &ldquo;copy&rdquo; button &mdash; from the Gutenberg Hub website and then paste it in the editor. It is not an ideal situation, and I have been asking Kamal whether he would consider building a template inserter for months now.</p>\n\n\n\n<p>This time around, he preemptively said, &ldquo;And, by the way, I am already working on adding a Template Inserter in my EditorPlus plugin. That will allow users to browse and insert these templates directly from Gutenberg without leaving the website.&rdquo;</p>\n\n\n\n<p>He knew the question was coming. No need for me to ask again. He was unable to share a current screenshot of what the inserter looks like, but he is asking for feedback on what people expect of the user experience and interface.</p>\n\n\n\n<p>&ldquo;Earlier, I created a template inserter similar to other blocks plugins, but later I changed my mind and thought that I should integrate with the Gutenberg Patterns API and load the templates into the &lsquo;patterns&rsquo; panel in the block inserter,&rdquo; he said. &ldquo;But, I am having a few issues and thinking about going back to the original idea to have a Templates button on the top toolbar that opens a popup window to browse and filter templates that users can insert on a click.&rdquo;</p>\n\n\n\n<p>For now, it is still early. However, at least it is on the long-term roadmap and being worked on.</p>\n\n\n\n<h2>The Landing Page Templates</h2>\n\n\n\n<img />Testing the photography template (with minor adjustments).\n\n\n\n<p class=\"has-drop-cap\">At the moment, Gutenberg Hub offers <a href=\"https://gutenberghub.com/template-category/pages/\">22 landing page templates</a>. The &ldquo;page&rdquo; terminology may not mean &ldquo;full page.&rdquo; It simply depends on the active theme. Some themes have an open-canvas type of template that allows users to create the entire page via the editor. However, that is not a common feature, so these page templates will be confined to the post content area in most cases.</p>\n\n\n\n<p>The templates also work better with themes that have at least a full-width or no-sidebar option. End-users will want a lot of breathing room to use the templates and tinker with their designs.</p>\n\n\n\n<p>Kamal has built templates that stretch across a variety of industries. From restaurants to gyms to education to fashion, there is a lot to choose from right now. He promises more are on the way and at least a 23rd template in the next few days.</p>\n\n\n\n<p>&ldquo;For the niches, I did some research from the top WordPress and HTML marketplaces and found the following most common or popular niches,&rdquo; he said. &ldquo;I think I will stick with these niches unless I get some more recommendations.&rdquo;</p>\n\n\n\n<p>In comparison, <a href=\"https://wptavern.com/redux-framework-relaunches-focuses-efforts-on-gutenberg-templates\">Redux Templates</a> offers access to over 1,000 sections and templates. Of course, there are trade-offs, such as some of those being commercial and the plugin typically requiring other third-party plugins. While quantity is not the only thing to look at, it proves there are miles of landscape that Gutenberg Hub&rsquo;s templates have not yet explored. But, it is merely the beginning.</p>\n\n\n\n<p>Gutenberg Hub&rsquo;s full-page templates are not quite as plug-and-play as its blocks and section templates. This is not so much a fault from the developer&rsquo;s end. It is an issue of the platform, which is constantly being updated, and the range of support from current themes. End-users will start seeing some of the current limitations of the system when a layout does not quite look right with one theme but does with another. Or, if their theme has not been updated to support a new feature, such as the Social Links block, the typical horizontal menu design will likely be a normal vertical list of links instead.</p>\n\n\n\n<p>These are not insurmountable issues. Gutenberg and themes need more time to mature before projects like Gutenberg Hub&rsquo;s landing templates are perfect or at least as close to perfect as can be expected.</p>\n\n\n\n<p>There are some things that Gutenberg Hub could improve with its templates. With several that I tested, I needed to switch specific blocks to be full width. This should be set up as the default with templates that are clearly meant to be full width in the example screenshots available on the site. It is a minor issue, but correcting this in the editor fixed several layout issues I was having when using the templates.</p>\n\n\n\n<h2>Monetization Plans</h2>\n\n\n\n<p class=\"has-drop-cap\">The second question that Kamal has not been prepared to answer fully over the past several months is how he will monetize Gutenberg Hub. Eventually, developers need some return on their investment when building tons of free tools. Many would do it all for free as long as their bills somehow got paid, but the reality is that there will come a tipping point where their projects need funding for long-haul maintenance.</p>\n\n\n\n<p>Kamal said he has laid the groundwork for funding but has not finalized anything yet. Currently, he is working on three ideas:</p>\n\n\n\n<ul><li>Creating a pro version of his EditorPlus plugin.</li><li>Offering premium templates and blocks but is looking for a talented designer to work with.</li><li>Using ads specific to Gutenberg users, but he is not a fan of going this route or ads in general.</li></ul>\n\n\n\n<p>He is open to feedback on how to best monetize the website and its projects. However, he said he is unwilling to compromise on giving away current and future free templates and tools.</p>\n\n\n\n<h2>Future Gutenberg Projects</h2>\n\n\n\n<p class=\"has-drop-cap\">Kamal said he does not have any new Gutenberg-related projects in the pipeline. The current plan is to work on what he has already created, which is a large ecosystem of Gutenberg tools that somehow work together.</p>\n\n\n\n<p>Outside of blocks, templates, and plugins, he is beginning to write more free tutorials on the Gutenberg Hub blog and focusing on <a href=\"https://www.youtube.com/GutenbergHub\">creating videos</a> around the project, including a new tutorial <a href=\"https://www.youtube.com/playlist?list=PLfVnkTCddAJ2HMmjw1o12XP7TAEoOV5oE\">series for beginners</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:\"Tue, 22 Sep 2020 21:05: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:97:\"WPTavern: WordPress Mobile Engineers Propose Dual Licensing Gutenberg under GPL v2.0 and MPL v2.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=105025\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:239:\"https://wptavern.com/wordpress-mobile-engineers-propose-dual-licensing-gutenberg-under-gpl-v2-0-and-mpl-v2-0?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-mobile-engineers-propose-dual-licensing-gutenberg-under-gpl-v2-0-and-mpl-v2-0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6556:\"<p>During a Q&amp;A session at WordCamp Europe 2020 online, Matt Mullenweg mentioned that Gutenberg contributors were considering dual licensing for embedding Gutenberg in mobile apps, along with the requirement that they would need to get an agreement from all contributors. WordPress mobile engineer <a href=\"https://bia.is/\">Maxime Biais</a> has just published a <a href=\"https://make.wordpress.org/core/2020/09/21/proposal-dual-licensing-gutenberg-under-gpl-v2-0-and-mpl-v2-0/\">proposal</a> for discussion, recommending dual licensing the editor under GPL v2.0 and MPL v2.0.</p>\n\n\n\n<p>&ldquo;The GPL v2.0 license is a blocker for distributing the Gutenberg library in proprietary mobile apps,&rdquo; Biais said in the corresponding <a href=\"https://github.com/WordPress/gutenberg/issues/23651\">GitHub issue</a>. &ldquo;Currently the only known users of Gutenberg on mobile are the WordPress mobile apps which are under GPL v2.0 (<a href=\"https://github.com/wordpress-mobile/WordPress-Android\">WordPress for Android</a>,&nbsp;<a href=\"https://github.com/wordpress-mobile/WordPress-iOS\">WordPress for iOS</a>). Mobile apps under the GPL v2.0 are not common and this limits Gutenberg usage in many apps.</p>\n\n\n\n<p>&ldquo;Rich text editor libraries in the mobile space are lacking. There is no well known open source rich text editor for Android or iOS. We believe that Gutenberg could be a key library for many mobile apps, but that will never happen with the GPL v2.&rdquo;</p>\n\n\n\n<p>Mobile app developers are limited by the GPL, because it requires the entire app to be distributed under the same license. The team is proposing dual licensing under MPL v2.0, a weaker copyleft license that is often considered to be more &ldquo;business-friendly.&rdquo; It allows users to combine the software with proprietary code. MPL v2.0 requires the source code for any changes to be available under the MPL, ensuring improvements are shared back to the community. The rest of the app can be distributed under any terms with the MPL v2.0 code included as part of a &ldquo;larger work.&rdquo;</p>\n\n\n\n<p>&ldquo;The idea here is to keep some of the WordPress-specific modules under the GPL v2.0 only; some of them are not needed and not relevant for using Gutenberg in another software. Ideally, there would be a different way of bundling the project for being used in WordPress or in a non-GPL software,&rdquo; Biais said.</p>\n\n\n\n<p>The GitHub ticket has several comments from developers who hope to be able to use the editor in their own projects. Radek Pietruszewski, tech lead for a collaborative todo app called&nbsp;<a href=\"https://nozbe.com/\">Nozbe Teams</a>, has been requesting a relicensing of Gutenberg since October 2019.</p>\n\n\n\n<p>&ldquo;Our tech stack is essentially React on web and React Native on iOS and Android,&rdquo; Pietruszewski said. &ldquo;We&rsquo;re a tiny company, and so we share &gt;80% of app&rsquo;s codebase between these 3 platforms.</p>\n\n\n\n<p>&ldquo;Our app sorely lacks a WYSIWYG editor. We had a working implementation on web, but we decided to scrap it, because there was no way to port it on iOS and Android. There are pretty much no viable rich text editors for iOS or Android, yet alone both. But even then, shipping three completely separate, but somehow compatible editors would be a vast amount of work.&rdquo;</p>\n\n\n\n<p>When Peitruszewski originally made his case to the mobile team, he identified Gutenberg/Aztec as a basic infrastructure that has the potential to enable many different apps:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>And that infrastructure is sorely lacking. There are very few rich text editor libraries on both iOS and Android &mdash;&nbsp;and most of them suck. And if you want an editor that has a shared API for both platforms&hellip;&nbsp;you&rsquo;re stuck. There are no options &ndash; Gutenberg is the only game in town (and it&rsquo;s really good).</p><p>And it&rsquo;s very hard to create this infrastructure. WYSIWYG editors are very hard, and it takes entire teams years to develop them (and they still usually suck). Almost no-one has the resources to develop it just for themselves, and if they do, they&rsquo;re unwilling to open-source it.</p></blockquote>\n\n\n\n<p>Automattic&rsquo;s mobile app engineers have <a href=\"https://twitter.com/danroundhill/status/1296941098393190401\">struggled to get regular contributions to the apps</a>, despite them being open source. Dual licensing Gutenberg could open up a new world of contributors with the editor being used more widely across the industry.</p>\n\n\n\n<p>&ldquo;While we might not be big enough to be able to tackle a challenge of developing a rich text editor from scratch, we&rsquo;re big enough to contribute features and bug fixes to open source projects,&rdquo; Pietruszewski said.</p>\n\n\n\n<p>Matt Mullenweg was the first comment on Biais&rsquo; post in favor of the change: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>I think&nbsp;Gutenberg&nbsp;has a chance to become a cross-CMS standard, giving users a familiar interface any place they currently have a rich text box. There are hundreds and hundreds of engineers at other companies solving similar problems in a proprietary way, it would be amazing to get them working together but a huge barrier now is supporting Gutenberg in mobile apps, which every modern web service or CMS has. (Hypothetically, think of Mailchimp as a possible consumer and collaborator here, but it could be any company, SaaS, or other&nbsp;open source&nbsp;CMS.)</p></blockquote>\n\n\n\n<p>Unless any major blockers come up in further discussion, this dual licensing change appears to be on track to move forward. Biais noted that a&nbsp;<a href=\"https://github.com/wordpress-mobile/AztecEditor-Android/pull/922\">similar&nbsp;license change has already happened on Aztec-Android</a>&nbsp;and&nbsp;<a href=\"https://github.com/wordpress-mobile/AztecEditor-iOS/issues/1299\">Aztec-iOS</a>. The last hurdle is gaining the approval of all the original code contributors or rewriting the code for those who decline to give approval. </p>\n\n\n\n<p>Once Gutenberg can be used under the MPL v2.0, the editor will gain a broader reach, with people already on deck wanting to use it. Other companies and projects that are normally outside WordPress&rsquo; open source orbit will also have the opportunity to enrich Gutenberg&rsquo;s ecosystem with contributions back to the project. At the same time, the MPL 2.0 protects Gutenberg from companies that would try to re-release the code as a closed-source project.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 Sep 2020 22:59: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: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: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:124:\"WPTavern: GitHub to Use ‘Main’ Instead of ‘Master’ as the Default Branch on All New Repositories Starting Next Month\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=105014\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:269:\"https://wptavern.com/github-to-use-main-instead-of-master-as-the-default-branch-on-all-new-repositories-starting-next-month?utm_source=rss&utm_medium=rss&utm_campaign=github-to-use-main-instead-of-master-as-the-default-branch-on-all-new-repositories-starting-next-month\";s: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:4844:\"<p class=\"has-drop-cap\">In August, GitHub <a href=\"https://github.blog/changelog/2020-08-26-set-the-default-branch-for-newly-created-repositories/\">announced that it would change</a> the &ldquo;master&rdquo; branch name for all new repositories created on the platform to &ldquo;main&rdquo; starting October 1. The date is less than two weeks away, and WordPress developers need to be prepared for the change if they use the service for version control or project management.</p>\n\n\n\n<p>The larger tech and web development community began conversations through various venues in June, a time in which the Black Lives Matter was gaining more traction in the U.S. and worldwide. The discussion centered on removing any terminology that could be discriminatory or oppressive to specific groups of people. This ongoing discussion has shown that there is a deep division over whether such changes are necessary or even helpful.</p>\n\n\n\n<p>The WordPress community is dealing with this division itself. Aaron Jorbin <a href=\"https://make.wordpress.org/core/2020/06/18/proposal-update-all-git-repositories-to-use-main-instead-of-master/\">proposed a change</a> at the same time to rename the default branch name on WordPress-owned repositories. Through discussion on his post and elsewhere, the community landed on &ldquo;trunk,&rdquo; which keeps WordPress projects in line with its SVN roots.</p>\n\n\n\n<p>&ldquo;To close the circle on this, a decision was made in June and earlier today (August 19),&rdquo; <a href=\"https://make.wordpress.org/core/2020/06/18/proposal-update-all-git-repositories-to-use-main-instead-of-master/#comment-39524\">wrote Helen Hou-Sand&iacute;</a>, a lead WordPress developer, in the comments of the original proposal. &ldquo;I updated the default branch name for new GitHub repositories under the WordPress organization to be trunk after GitHub enabled early access to that feature.&rdquo;</p>\n\n\n\n<p>As evidenced by the comments on the <a href=\"https://wptavern.com/proposal-to-rename-the-master-branch-from-wordpress-owned-git-repositories\">Tavern&rsquo;s coverage of the proposal</a> and those on the original post, the WordPress development community as a whole did not support this decision.</p>\n\n\n\n<p>Jorbin has updated several of WordPress&rsquo;s repositories and switched them to use <code>trunk</code> instead of <code>master</code>. However, there are still some lingering projects yet to be updated, including the primary <a href=\"https://github.com/WordPress/WordPress\">WordPress</a> and <a href=\"https://github.com/WordPress/wordpress-develop\">WordPress Develop</a> repositories. He left a <a href=\"https://make.wordpress.org/core/2020/06/18/proposal-update-all-git-repositories-to-use-main-instead-of-master/#comment-38817\">comment with an updated lis</a>t in June. There is no public word on whether the existing, leftover projects will be changed.</p>\n\n\n\n<h2>WordPress Developer Preparations</h2>\n\n\n\n<img />Customizing the default branch for a user&rsquo;s GitHub repositories.\n\n\n\n<p class=\"has-drop-cap\">GitHub is merely changing the default branch name for new repositories starting on October 1. This change does not affect existing repositories. Individual users, organization owners, and enterprise administrators can customize the default branch via their account settings now before the switch is made. Owners can also change the default branch name for individual repositories.</p>\n\n\n\n<p>The biggest thing that developers need to watch out for is their tooling or other integrations that might still require the master branch. There may be cases where an alternative default branch name will break workflows. If planning to use a different branch name, the best thing to do right now is to spin up the tools you use on a test repository. If something breaks, check to see whether the particular tool you are using will be getting an update. In most cases, this should not be a problem because customized default branch names will be an industry standard.</p>\n\n\n\n<p>The great thing about how GitHub is rolling out this feature is that it offers a choice. Those who believe that &ldquo;master&rdquo; is oppressive can change the branch name to something they feel is more inclusive. For those who believe otherwise, they can keep their master branch. But, everyone can use the branch name they prefer.</p>\n\n\n\n<p>For existing repositories, GitHub is asking that developers be patient for now. The company is investing in tools to make this a seamless experience <a href=\"https://github.com/github/renaming#later-this-year\">later this year</a>. There are a few technical hurdles to clear first.</p>\n\n\n\n<p>Developers should read the full GitHub guide on <a href=\"https://docs.github.com/en/github/administering-a-repository/setting-the-default-branch\">setting the default branch</a> for more information.</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, 21 Sep 2020 20:39:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:125:\"WPTavern: Matt Mullenweg and Jamstack Community Square Off, Making Long-Term Bets on the Predominant Architecture for the Web\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104428\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:293:\"https://wptavern.com/matt-mullenweg-and-jamstack-community-square-off-making-long-term-bets-on-the-predominant-architecture-for-the-web?utm_source=rss&utm_medium=rss&utm_campaign=matt-mullenweg-and-jamstack-community-square-off-making-long-term-bets-on-the-predominant-architecture-for-the-web\";s: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:19953:\"<p>Over the past two weeks, Matt Mullenweg and Jamstack community leaders have forged a new rivalry, after Mullenweg told <a href=\"https://thenewstack.io/wordpress-co-founder-matt-mullenweg-is-not-a-fan-of-jamstack/\">The New Stack</a> that he sees Jamstack as &ldquo;a regression for the vast majority of the people adopting it.&rdquo;  </p>\n\n\n\n<p>&ldquo;The usability and functionality is actually lower,&rdquo; Mullenweg said to Richard MacManus in an email. &ldquo;Even rebuilding sites in Jamstack harkens back to the Movable Type days, where the bigger your site gets the slower it is to rebuild or update templates.&rdquo; </p>\n\n\n\n<p>Mullenweg also described a &ldquo;fragile&rdquo; chain of services required to run Jamstack sites.</p>\n\n\n\n<p>&ldquo;You can patch together a dozen services, each with its own account and billing, for hundreds of dollars a month, to get a similar result you&rsquo;d have for a few dollars a month using WordPress on shared hosting,&rdquo; he said. &ldquo;And it would be more fragile, because the chain is only as strong as its weakest link. You are chaining together different toolsets, logins, billing, hosting&hellip; any part of it going down can break the entire flow.&rdquo;</p>\n\n\n\n<p>Mullenweg has since further <a href=\"https://wptavern.com/matt-mullenweg-clarifies-jamstack-remarks\">clarified his comments</a> while also doubling down on his original premise, saying that &ldquo;there isn&rsquo;t a vast number of people adopting Jamstack in the first place, and those who do are probably fully aware of the tradeoffs.&rdquo; He outlined how he sees WordPress providing a better experience for users in terms of performance, security, scaling, and developer experience.&nbsp;</p>\n\n\n\n<p>Mullenweg&rsquo;s provocative remarks set off a chain of open letters from the CEO&rsquo;s of Jamstack-related services. They are convinced that the LAMP stack is on its way out and that Jamstack is on the precipice of replacing its incumbent as the most dominant architecture of the web. </p>\n\n\n\n<p>Ohad Eder-Pressman, co-founder and CEO of <a href=\"https://www.stackbit.com/\">Stackbit</a>, was the first to fire back. He believes that Jamstack is a &ldquo;disruptive innovation&rdquo; that may appear to be inferior now because it is still relatively low level and new when compared to a 17-year old product like WordPress.</p>\n\n\n\n<p>&ldquo;We should be asking whether Jamstack is a better architecture than LAMP and what gaps currently exist with products and solutions built on top of the Jamstack,&rdquo; Eder-Pressman said. He agreed that Jamstack tools are still largely focused on developers but makes a bold prediction on the stack&rsquo;s future reach:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The achievements of WordPress in terms of market share and how it democratized early web publishing are amazing. When it comes to architecture I think it was best in class for the early 2000s but it&rsquo;s time to move forward. We already see cohorts of websites where Jamstack adoption crosses 20% &ndash; it&rsquo;s no longer a question of if the Jamstack becomes the predominant architecture for the web but a question of when. The cliche is a cliche but it also rings true &ndash;&nbsp;<strong>First, they ignore you, then they laugh at you (we are here), then you win</strong>.</p></blockquote>\n\n\n\n<p>Eder-Pressman agreed with Mullenweg regarding Jamstack&rsquo;s lower usability and functionality but touted the architecture as &ldquo;infinitely more resilient&rdquo; due to being hosted on a CDN. He admitted that rebuilding larger sites can be slow but cited developments like build parallelization, build cache, partial rebuild, and incremental static regeneration as&nbsp;optimizations as efforts the Jamstack ecosystem&nbsp;is exploring to solve this known issue.</p>\n\n\n\n<p>Netlify&nbsp;CEO Mathias Biilmann, who originally coined the term &ldquo;Jamstack,&rdquo; goes so far as to hail &ldquo;the end of the WordPress era&rdquo; in his <a href=\"https://www.netlify.com/blog/2020/09/15/on-mullenweg-and-the-jamstack-regression-or-future/\">article</a> refuting Mullenweg&rsquo;s remarks. </p>\n\n\n\n<p>&ldquo;There&rsquo;s often a moment right around the time when an old technology is about to be displaced by the next thing, where the main leader in the field goes out and makes a strong argument that absolutely nothing is happening,&rdquo; Biilmann said. &ldquo;A moment that ends up looking like a turning point where the new was undeniably present enough to be worth being in denial about.&rdquo;</p>\n\n\n\n<h2>The Bet: By September 2025, what will be the predominant architecture for the web?</h2>\n\n\n\n<p>In a brief exchange on Twitter, Mullenweg and Eder-Pressman made a wager for five years into the future, to see if Eder-Pressman&rsquo;s prediction will hold up, as measured by the Alexa top 10k. In order for Jamstack to become the predominant architecture for the web, it will need to surpass WordPress&rsquo; numbers, which are currently hovering at <a href=\"https://trends.builtwith.com/cms/WordPress\">39.75%</a> (via BuiltWith) and <a href=\"https://w3techs.com/technologies/details/cm-wordpress\">38.4%</a>&nbsp;(via w3techs).</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">They currently have us ~37% of top 10k. I wonder if you\'re undercounting us with YC companies too? <a href=\"https://t.co/ki9Ng3DGqI\">https://t.co/ki9Ng3DGqI</a></p>&mdash; Matt Mullenweg (@photomatt) <a href=\"https://twitter.com/photomatt/status/1302048647882784769?ref_src=twsrc%5Etfw\">September 5, 2020</a></blockquote>\n</div>\n\n\n\n<p>&ldquo;I&rsquo;m happy to make a long bet: 1 year, 5 years, 10 years,&rdquo; Mullenweg said in another <a href=\"https://twitter.com/photomatt/status/1306368508792504321\">thread</a> in response to Netlify&rsquo;s CEO. &ldquo;We&rsquo;re building and rebuilding WordPress to be generational. We&rsquo;ve navigated and created bigger architectural shifts in the past, and will do so in the future.&rdquo;</p>\n\n\n\n<p>&ldquo;I&rsquo;m a developer, founder, and investor in the space of web technologies &ndash; if I&rsquo;m not willing to engage in a public discussion and share my predictions for where the web is heading then what merit does my work have?&rdquo; Eder-Pressman said when I asked him why he was willing to make this public wager.</p>\n\n\n\n<p>&ldquo;I felt compelled given Mullenweg&rsquo;s comments and what I believe is the lack of appreciation for how much adoption and momentum Jamstack technologies already have. If anything I would say that my bet is actually pretty cautious.&rdquo;</p>\n\n\n\n<p>Eder-Pressman and his team at Stackbit are working on a tool to track Jamstack adoption across the web, as BuiltWith does not yet have a Jamstack stat panel that correctly aggregates all the technologies associated with this relatively new category of websites.</p>\n\n\n\n<p>&ldquo;We&rsquo;ve built an internal tool that tracks adoption of Jamstack technologies across different cohorts of websites which we find informative,&rdquo; he said. &ldquo;This isn&rsquo;t unlike what say Builtwith provides except that we track a few technologies that they don&rsquo;t and we bundle this into a Jamstack adoption indicator. We&rsquo;ve used this internally up until now and are planning to release some public facing version of it later this year.&rdquo;</p>\n\n\n\n<p>As the CEO of Stackbit, a service that cranks out Jamstack sites in 60 seconds while bypassing any requirement to use the command line or download npm packages, Eder-Pressman is actively engaged in trying to bring this technology stack to the masses. The company aims to solve the very problems that Mullenweg identified in his critical comments, as is evident in the marketing copy on the Stackbit website. It acknowledges that piecing together a Jamstack website can be challenging even for developers:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&ldquo;In a fragmented Jamstack environment, developers struggle to glue products together when trying out the latest tech. Stackbit connects the best tools on the market, and helps them play together.&rdquo;</p></blockquote>\n\n\n\n<p>A year ago, Stackbit caught my attention and I contacted them to find out when WordPress would land among their list of CMS import options. At that time they said they were considering WordPress as a headless CMS option but did not have it on the immediate roadmap. One year later, Stackbit is no closer to building import capabilities for the most popular CMS on the web.</p>\n\n\n\n<p>&ldquo;It&rsquo;s on the horizon but its not something we&rsquo;ve prioritized,&rdquo; Eder-Pressman said. &ldquo;WordPress is a full blown monolithic CMS. It has been used before as a headless CMS but there are better headless CMS choices out there. Even Mullenweg <a href=\"https://twitter.com/photomatt/status/1302028302530404353\">agrees</a> it&rsquo;s a complicated premise.&rdquo;</p>\n\n\n\n<p>When asked if his recent conversations have changed the company&rsquo;s plans to support WordPress imports, he said, &ldquo;No, it doesn&rsquo;t make us want to do this any more or less. I really enjoyed the conversation and am glad that Mullenweg recognizes the rise of the Jamstack so much so that he found it necessary to take aim at it. We as a company are driven by the market, user demand, growth opportunities and a healthy vision for the future of the web.&rdquo;</p>\n\n\n\n<p>Jamstack will need to make itself accessible to the wide world of non-technical website owners if its advocates hope to capture any meaningful segment of the Alexa top 10k marketshare. Stackbit, for one, is still grossly underestimating WordPress&rsquo; ability to sustain its <a href=\"https://joost.blog/cms-market-share-june-2020-analysis/\">phenomenal growth</a>, and doesn&rsquo;t see the necessity for creating a simple path to convert WordPress users. Eder-Pressman believes that making Jamstack accessible starts with developers.</p>\n\n\n\n<p>&ldquo;The Jamstack is an architecture which is winning the minds of developers around the world and across the web development stack,&rdquo; he said. &ldquo;Adoption for new architectures often begins with developers so I&rsquo;m excited to see a company like say Netlify boast over 1 million developers on its Jamstack platform.&rdquo; </p>\n\n\n\n<p>Eder-Pressman&rsquo;s tool for measuring Jamstack adoption will need to produce some compelling data on the stack&rsquo;s growth, if his bet is going to materialize. While nearly every offering in the Jamstack ecosystem still falls squarely within the realm of experienced developers, it doesn&rsquo;t seem likely that five years is enough time for it to overtake WordPress as the predominant architecture for the web. WordPress hasn&rsquo;t achieved its dominance by prioritizing developer happiness over usability.</p>\n\n\n\n<p>Looking at the numbers five years from now, will we see Jamstack overtake WordPress as the most popular way to build a website? Will Jamstack grow with developer usage and then plateau once it fails to reach regular people who don&rsquo;t have a git-based workflow at the top of their wishlists? Are we going to find Jamstack and WordPress neck and neck in the battle for the predominant architecture for the web? Those who work with a hybrid of both technologies see no need for this kind of rivalry.</p>\n\n\n\n<h2>Shifting the conversation towards collaboration: &ldquo;Jamstack can be an opportunity for our industry, rather than a threat.&rdquo;</h2>\n\n\n\n<p>&ldquo;Reading Mullenweg&rsquo;s comments and the responses from CEOs in the Jamstack community make me feel caught in the middle and a bit frustrated,&rdquo; <a href=\"https://www.getshifter.io/\">Shifter</a> COO Daniel Olson said. &ldquo;I see friction between two communities that have so much in common.&rdquo;</p>\n\n\n\n<p>Olson has been a proponent of using Jamstack with WordPress for the past four years since launching Shifter, a static site generator and hosting company that supports headless WordPress sites on the Jamstack. </p>\n\n\n\n<p>&ldquo;If you look for the most secure, cost-effective way to build and host a high-traffic website today, the cross-section you&rsquo;ll arrive at is the Jamstack. Looking at how it offers each of those benefits, you will find inspiration and ways WordPress could do the same,&rdquo; Olson said. &ldquo;Rather than write something off wholesale, see what you can learn and apply it.&rdquo;</p>\n\n\n\n<p>Olson said his mission is to bridge the gaps between WordPress and the benefits Jamstack offers, while working through its early days and messy parts, innovating on the tools that work.</p>\n\n\n\n<p>&ldquo;We should be working together to address specific challenges and worry less about how we get there,&rdquo; Olson said. &ldquo;Some technologies are indeed a better fit for solving each of those challenges but you don&rsquo;t need to leave one ecosystem for the other to do it. You can share knowledge and best practices and discover what&rsquo;s possible. There&rsquo;s a good chance you&rsquo;ll end up creating something new, which is part of that innovation we need in our communities.&rdquo;</p>\n\n\n\n<p>Jamstack hosting services for WordPress are eager to remind users that they don&rsquo;t have to go all in on the technology. You can have your JAM and spread it on top of WordPress, accommodating developers&rsquo; love for experimenting with new frontend technologies, while preserving the dynamic publishing power that has been refined over the past 17 years. These hybrid hosting companies aim to enable this without leaving users behind. </p>\n\n\n\n<p>&ldquo;Matt is absolutely right that the usability and functionality of the Jamstack is lower,&rdquo; <a href=\"https://www.strattic.com/\">Strattic</a> co-founder and CEO Miriam Schwab said. &ldquo;The Jamstack is a great example of technology that is incredibly appealing to developers, but the actual end users &ndash; writers, marketers, business owners &ndash; cannot use it. I&rsquo;ve heard many stories of major companies that have come to the decision to adopt Jamstack for all web development as a company-wide policy, only to find that their marketing team has gone rogue and is installing WordPress sites in order to get their job done.</p>\n\n\n\n<p>&ldquo;The reason for this is like Matt said: every Jamstack site is a compilation of layers of services, and each layer has dozens of options available: you need a static site generator, a CMS, static hosting, and a CDN &ndash; and you need to tie it all together with version control. This is all cool and shiny, and the output is truly fantastic because when you have a site that&rsquo;s a collection of pre-rendered static files served up through a CDN it&rsquo;s fast, secure, scalable and stable. But then along comes marketing and they want to set up a landing page and they are totally dependent on their dev team and can&rsquo;t move forward without them. That defeats the purpose of a CMS-driven website! With WP, you get all the layers in one platform&hellip;but you don&rsquo;t get the awesome output.&rdquo;</p>\n\n\n\n<p>Schwab said she sees WordPress having its age work both for it and against it, but ultimately she believes in enabling real world users to manage their own websites without having to rely on developers. </p>\n\n\n\n<p>&ldquo;I&rsquo;ve seen many companies abandon WP for the shiny new stack, and then come back to it,&rdquo; Schwab said. &ldquo;Github is a good example of this &ndash; yes Github, the modern repository of cutting-edge code moved their blog off of WordPress, and then came back because it truly is the best tool for just getting your content out there. There aren&rsquo;t a zillion steps and integrations &ndash; you write content, click Publish, and that&rsquo;s it. It gets the job done, and the fanciest tools will never beat something that just gets the job done.&rdquo;</p>\n\n\n\n<p>At the same time, WordPress needs to be open to enabling diverse frontend implementations, if it wants to remain relevant for the next decade. &ldquo;WP is running on legacy architecture,&rdquo; Schwab said. &ldquo;It&rsquo;s showing its age, and it&rsquo;s not appealing to new generations of developers. We need to keep WordPress appealing and interesting to developers in order to secure its future for years to come. If we don&rsquo;t make developers excited, we will inevitably see a decline.&rdquo;&nbsp;She encourages the WordPress community to embrace Jamstack as &ldquo;a breath of fresh air.&rdquo; </p>\n\n\n\n<p>&ldquo;Jamstack can be an opportunity for our industry, rather than a threat,&rdquo; Schwab said. &ldquo;There are ways for the two industries to collaborate, like in the case of headless WP deployments using Gatsby.&rdquo;</p>\n\n\n\n<p>Unlike many other Jamstack service companies, the team behind Gatsby has <a href=\"https://wptavern.com/gatsby-raises-15m-plans-to-invest-more-heavily-in-wordpress-and-cms-integrations\">more readily embraced WordPress</a> as a data source and a critical component of its continued success. The company <a href=\"https://wptavern.com/jason-bahl-joins-the-gatsby-team-to-work-on-wpgraphql-full-time\">hired Jason Bahl</a>, creator of the GraphQL for WordPress project, to work on WPGraphQL (and its immediate ecosystem) full-time, while providing a bridge to the WordPress world.</p>\n\n\n\n<p>&ldquo;Maybe I&rsquo;m getting caught up in semantics, but the JAM in JAMStack means JavaScript, APIs and Markup,&rdquo; Bahl said. &ldquo;It wasn&rsquo;t long ago when Matt prescribed the WordPress ecosystem to &lsquo;Learn JavaScript Deeply,&rsquo; and not long after that when a Jamstack application called Gutenberg was merged into WordPress core, along with React. Gutenberg is the JavaScript, the WP REST API is the API and the end result is markup. Jamstack isn&rsquo;t a regression, it&rsquo;s a future that Automattic is helping drive WordPress toward.&rdquo;</p>\n\n\n\n<p>When Mullenweg says he is ready to build and rebuild WordPress to be generational, it&rsquo;s a promise he has already delivered on by introducing the React-based Gutenberg editor two years ago, successfully pushing past an enormous amount of resistance from the developer community.</p>\n\n\n\n<p>Bahl said he sees this continued legacy of improvement happening over and over again in various ways, made possible by WordPress&rsquo; pluggable system:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>WordPress ships with a lot of APIs, but often they are replaced with something newer and better. For example, it&rsquo;s common for sites to offload images to a CDN instead of use the built-in file system for media. Or instead of using built-in WordPress MySQL search, users will reach for ElasticSearch, Algolia or Solr. In the case of WordPress and the JAMStack, reaching for Next, Gatsby or Gridsome to replace the built-in Theme API isn&rsquo;t a regression, it&rsquo;s using newer technology to handle things that built-in parts of WordPress might not do as well. The Theme API of WordPress is just one API and replacing it with technology that does the job better isn&rsquo;t a regression.</p></blockquote>\n\n\n\n<p>Gatsby&rsquo;s build step, which has received <a href=\"https://twitter.com/tesseralis/status/1293649015020457984\">negative attention in the news</a> recently, is one example of what Bahl thinks Mullenweg was referring to as a regression for users. Bahl is working with Gatsby to reduce the friction associated with decoupled architectures when using WordPress as the API in Jamstack.</p>\n\n\n\n<p>&ldquo;I don&rsquo;t see Jamstack competing against WordPress,&rdquo; Bahl said. &ldquo;In my mind, Jamstack with WordPress as the API is the future of the web. WordPress is the best CMS. Gatsby specifically is trying to embrace this. This isn&rsquo;t a zero sum game. If the Gatsby + WordPress experience can allow users to use the best CMS in the world while using modern dev tooling, it&rsquo;s a win all around.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 19 Sep 2020 18:54: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:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WPTavern: Matt Mullenweg Clarifies Jamstack Remarks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104883\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:147:\"https://wptavern.com/matt-mullenweg-clarifies-jamstack-remarks?utm_source=rss&utm_medium=rss&utm_campaign=matt-mullenweg-clarifies-jamstack-remarks\";s: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:6205:\"<p>Two weeks ago, Matt Mullenweg made some pointed remarks in an article from <a href=\"https://thenewstack.io/wordpress-co-founder-matt-mullenweg-is-not-a-fan-of-jamstack/\">The New Stack</a>, calling Jamstack &ldquo;a regression for the vast majority of the people adopting it.&rdquo; In preparation for an upcoming article that will include comments from leaders across both the WordPress and Jamstack communities, I asked Mullenweg if he stands by his remarks characterizing Jamstack as a regression. His response was lengthy and is printed here in its entirety to preserve cohesion.</p>\n\n\n\n<p><strong>Q: Do you stand by your remarks that Jamstack is a regression for the vast majority of the people adopting it?</strong></p>\n\n\n\n<p><strong>Answer:</strong></p>\n\n\n\n<p>&ldquo;Vast majority of people adopting it&rdquo; was probably too harsh, because there isn&rsquo;t a vast number of people adopting Jamstack in the first place, and those who do are probably fully aware of the tradeoffs. There are some good reasons, for certain situations, to decouple and add complexity to your architecture, and WordPress&rsquo; REST API works fantastically as a backend there. But I worry they are over-selling the promise of what&rsquo;s really an architectural decision. If&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://jamstack.org/\">you look at the benefits they purport</a>,&nbsp;it&rsquo;s better performance, security, scaling, and developer experience:</p>\n\n\n\n<img />\n\n\n\n<p><strong>Better Performance:</strong> You can achieve the same performance by putting a great CDN like Cloudflare on top of WordPress, and your life will be infinitely easier when you want to add dynamic features like a store or comments. You can also easily find a static WordPress host like&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://www.strattic.com/\">Strattic</a>&nbsp;or&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://www.getshifter.io/\">Shifter</a>.</p>\n\n\n\n<p><strong>Higher security:</strong> I don&rsquo;t believe that introducing a number of proprietary and sub-scale SaaS services like Netlify into your stack will make your site more secure. I believe the most secure thing you can do is run fully open source code, as widely vetted and used as possible, on servers you control, or from the fewest number of vendors possible. WordPress securely runs some of the most attacked websites on the internet, including major media, Facebook, and&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http://whitehouse.gov/\">WhiteHouse.gov</a>. Having this many moving parts doesn&rsquo;t inspire confidence:</p>\n\n\n\n<img />\n\n\n\n<p><strong>Cheaper, easier scaling:</strong> CDNs are more expensive than normal hosting accounts, and you can get WordPress running on a decent host for less than $5/mo. And there are even more powerful offerings: The personal plan on&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http://wp.com/\">WP.com</a>&nbsp;can serve tens of millions of visitors per day, to the website or the headless API, includes a global CDN, and a domain name for $4/mo, and we still have a profit margin.&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://graphcms.com/pricing\">GraphCMS starts at $29/mo and only gives you &ldquo;5,000 entities,&rdquo;</a> whatever that means.&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://www.contentstack.com/pricing\">Contentstack is $3,500/mo</a>. And that&rsquo;s just for the headless CMS part! You still need to sign up and pay for a bunch of the other stuff in that graphic before you have a website a human can visit in a browser.</p>\n\n\n\n<p><strong>Better developer experience:</strong> If your developer wants to copy and paste updates from marketing to the website, sure, but if they want people to be able to update the website without their help, they should go with something easier for users like WordPress. If you&rsquo;re curious about the developer experience, or an investor thinking about this space, I really suggest you watch this three hour and thirty minute tutorial to really understand what is being sold under the premise of &ldquo;better&rdquo;:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Have I ever built stuff like that? Totally! It can be a ton of fun, like building a rocket at home or fixing up an old car. I&rsquo;ve seen some awesome sites built on decoupled architectures or static publishing, using headless WordPress rather than the CMS&rsquo;s above, but still a similar idea. People are trying to paint me as being against Jamstack, but that is as foreign to me as being against duct tape &mdash; it&rsquo;s good for some things, bad for others, and it&rsquo;s not going away. I just wish they would be more intellectually rigorous and honest when marketing it. I expect a Jamstack-like approach to exist forever, just like the ideas behind Jamstack pre-date it getting jammed down our throats by Netlify&rsquo;s marketing team.</p>\n\n\n\n<p>Biilmann has got the Ballmer / iPhone story backwards &mdash;&nbsp;Microsoft&rsquo;s mistake there was they made something too complicated, and the iPhone simplified it. Jamstack introduces numerous vendors, build steps, network calls, interfaces, even billing relationships for something that&rsquo;s a single button press in WordPress.</p>\n\n\n\n<p>The reason services like&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http://wordpress.com/\">WordPress.com</a>&nbsp;and Shopify are growing so much is they are taking things that were complicated and making them simpler and accessible to a much wider audience. My mission is to democratize publishing and commerce, to make it radically accessible to everyone regardless of technical or economic ability, and increase the freedom and openness on the internet.&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://twitter.com/photomatt/status/1306368508792504321\">As I said on Twitter</a>, the first 15 years of WordPress were just the first few chapters. I&rsquo;m looking forward to building and rebuilding the platform the rest of my lifetime, and when that comes to an end I hope future generations will carry the torch.</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, 18 Sep 2020 22:49: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: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: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:65:\"WPTavern: Gutenberg’s Custom Spacing Should Be Theme Controlled\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104867\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:169:\"https://wptavern.com/gutenbergs-custom-spacing-should-be-theme-controlled?utm_source=rss&utm_medium=rss&utm_campaign=gutenbergs-custom-spacing-should-be-theme-controlled\";s: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:5679:\"<img />Adjusting padding on a Group block.\n\n\n\n<p class=\"has-drop-cap\">When <a href=\"https://wptavern.com/gutenberg-9-0-brings-major-improvements-to-navigation-screen-and-query-block\">Gutenberg 9.0 landed</a> earlier this week, it came with an experimental <a href=\"https://github.com/WordPress/gutenberg/pull/24966\">padding control</a> for the Group block. Most users will not see it unless their theme has opted into supporting the feature using the <code>experimental-custom-spacing</code> flag.</p>\n\n\n\n<p>This was not the first that we have seen of the padding option on a block. <a href=\"https://wptavern.com/gutenberg-8-3-updates-block-categories-includes-parent-block-selector-and-adds-new-design-controls\">Gutenberg 8.3</a> introduced it for the Cover block. Since then, nothing has changed with the implementation.</p>\n\n\n\n<p>The problem with the custom spacing/padding option is that it creates an inline style that does not adjust based on the design of the theme. Fortunately, the feature is still experimental. This means that we have time to reevaluate how it works.</p>\n\n\n\n<p>Unless we&rsquo;re doing away with any remaining illusion that themes will play an important aspect of WordPress&rsquo;s future and front-end design becomes fully entrenched within core, theme authors need some level of control. And, even if themes are going the way of the dinosaur, custom padding numbers on the block level will create design consistency issues down the road. Using 100 pixels of padding might make sense within a site&rsquo;s current design, but 96 pixels might make sense within a future design. When a user adds dozens or hundreds of blocks with custom padding today, it will wreak havoc on tomorrow&rsquo;s spacing and rhythm.</p>\n\n\n\n<p>Besides that, the average user has little concept of design rules. Having a standardized system for spacing would give theme authors control over the output while giving end-users the ability to customize the look.</p>\n\n\n\n<p>I have argued that WordPress needs some sort of <a href=\"https://wptavern.com/themes-of-the-future-a-design-framework-and-a-master-theme\">design framework</a>. For example, Tailwind CSS has specific padding classes. So does Bootstrap and nearly every other CSS framework. The web development community has been down this road. It is a well-trodden path, and WordPress is not innovating by using inline styles.</p>\n\n\n\n<p>If the WordPress platform is going to put this sort of power into the hands of its users, it should do so in a way that allows designers to do their thing and not push users toward semi-permanent, inline-style soup in their content.</p>\n\n\n\n<p>Pre-Gutenberg, I would have been entirely against the idea of WordPress introducing any sort of CSS or design framework. However, the platform is consistently moving toward becoming a UI-based design tool rather than simply a way to manage content. Users will have design-related options on a global scale all the way down to individual blocks. Users should absolutely have the ability to adjust a block&rsquo;s padding in such a system. They should not need an understanding of CSS to do so. Instead, for most use cases, users should be able to adjust padding based on whether they want larger or smaller spacing, not specific CSS values.</p>\n\n\n\n<p>I propose a full set of standardized padding classes. The same would go for margins or other design-related options down the road. Gutenberg/WordPress should create a set of default values for these classes, which theme authors could override based on their design.</p>\n\n\n\n<p>This is not a new concept. Dave Smith, a developer for Automattic, introduced a <a href=\"https://github.com/WordPress/gutenberg/pull/16730\">patch in 2019</a> that used named selectors for spacing on the Group block. He gave the following reasoning for choosing this approach over absolute values:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Imagine you are a Theme designer. You craft your CSS with spacing that is perfect for the design. You want to ensure that is consistent throughout your Theme, even if the page layout is being created by the end-user in the Block Editor.</p><p>With the approach I&rsquo;ve taken here, when a size is selected only classes are added to the Block in the DOM. This affords the Theme creator the opportunity to provide custom sizes in CSS that are suitable for their Theme. If they opt not to do this then sensible defaults are provided.</p><p>With the pixels approach, we&rsquo;re locking users of the Block into absolute values and asking them to make a lot of decisions that they&rsquo;d probably prefer not to have to make. It could also lead to an inconsistent visual experience.</p></blockquote>\n\n\n\n<p>This ship has already sailed and sunk with custom colors and font sizes. Gutenberg had an opportunity to standardize class names for these options but left it to theme authors. As a result, there is no standard across the theme market, which means that choosing the &ldquo;large&rdquo; font size or the &ldquo;blue&rdquo; text color provided by the theme will likely not carry across to the user&rsquo;s next theme. Now, we are on the cusp of far more design-related options as WordPress moves toward full-site editing. It is time to consider some standards on design-related class names and provide a framework that all themes can use.</p>\n\n\n\n<p>Gutenberg could still provide a <em>custom</em> padding option just like it does for colors and font sizes. Users who choose to go this route would be making an explicit choice to work outside of the standard. But, let&rsquo;s not go down this road of allowing users to set absolute spacing values as the default option.</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, 18 Sep 2020 18:49: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WPTavern: GoDaddy Acquires SkyVerge, Creator of Over 60 WooCommerce Add-Ons\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104658\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:193:\"https://wptavern.com/godaddy-acquires-skyverge-creator-of-over-60-woocommerce-add-ons?utm_source=rss&utm_medium=rss&utm_campaign=godaddy-acquires-skyverge-creator-of-over-60-woocommerce-add-ons\";s: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:4911:\"<p class=\"has-drop-cap\">On September 14, GoDaddy <a href=\"https://aboutus.godaddy.net/newsroom/news-releases/press-release-details/2020/GoDaddy-Acquires-SkyVerge-to-Help-Everyday-Entrepreneurs-Sell-Online-with-WordPress-and-WooCommerce/default.aspx\">announced it had acquired SkyVerge</a>, a major WooCommerce-focused development company, for an undisclosed amount. At the moment, GoDaddy is playing it close to the vest in terms of its future plans. It has not publicly announced anything beyond a continued commitment to current customers.</p>\n\n\n\n<p>The initial announcement makes note that SkyVerge&rsquo;s free plugins on WordPress.org have been downloaded more than 3.1 million times. However, the company&rsquo;s <a href=\"https://profiles.wordpress.org/skyverge/#content-plugins\">nine plugins in the directory</a> currently have over 155,000 active installs. Nevertheless, SkyVerge&rsquo;s real value is in its team and its impressive array of free and commercial add-on plugins available directly from its site.</p>\n\n\n\n<p>WooCommerce is a cash cow for companies with the right products and marketing at the moment. GoDaddy seems to be going all-in on the back of WordPress&rsquo;s most popular eCommerce solution. It launched a <a href=\"https://wptavern.com/godaddy-launches-ecommerce-hosting-plan-in-partnership-with-woocommerce\">managed WooCommerce hosting plan</a> in October 2019. The hosting company has now added over 60 WooCommerce extensions to its inventory in one swoop.</p>\n\n\n\n<p>&ldquo;As more small businesses and entrepreneurs go online, having a highly performant eCommerce experience is becoming more important than ever,&rdquo; said Rich Tabor, Senior Product Manager of WordPress Experience at GoDaddy. &ldquo;Late last year we launched a Managed WooCommerce offering, bundling many WooCommerce extensions in the Managed WordPress environment.&rdquo;</p>\n\n\n\n<p>SkyVerge has quietly become a massively successful WordPress and WooCommerce business. It was bringing in <a href=\"https://www.starterstory.com/develop-ecommerce-tools\">$350,000 per month</a> at the end of 2019. There was no response on how well the business has performed thus far in 2020.</p>\n\n\n\n<p>The entire SkyVerge team came along for the transition to GoDaddy. &ldquo;We&rsquo;re just beginning to deliver more capabilities and an even better setup and ongoing usage experience for our customers,&rdquo; said Tabor. &ldquo;The SkyVerge team will lead and accelerate those plans. They are an incredibly talented and innovative team that lives and breathes WooCommerce. Joining forces with them advances GoDaddy&rsquo;s WordPress strategy and enhances our ability to deliver intuitive eCommerce experiences that help everyday entrepreneurs sell online.&rdquo;</p>\n\n\n\n<p>With so many extensions in place, the big question for average users is whether those extensions will become a part of GoDaddy&rsquo;s eCommerce hosting bundle. Tabor either did not or could not let slip any plans in the works. &ldquo;We&rsquo;re just beginning to determine how to best deliver SkyVerge&rsquo;s wonderful products to GoDaddy customers. SkyVerge brings a lot of great software. It&rsquo;s reasonable to expect we&rsquo;ll be delivering that to our customers who are selling online.&rdquo;</p>\n\n\n\n<p>It is doubtful that GoDaddy went into this acquisition without at least some short-term plans or visions for how its managed hosting service would use these extensions. For now, we will have to wait and see.</p>\n\n\n\n<p>It seems that the immediate plan will be to maintain business as usual. Tabor said GoDaddy had no changes to announce related to SkyVerge&rsquo;s products and website. &ldquo;We are committed to continuing support of SkyVerge&rsquo;s customers and investing in the SkyVerge software,&rdquo; he said.</p>\n\n\n\n<p>SkyVerge also created <a href=\"https://jilt.com/\">Jilt</a>, which is an email marketing platform for eCommerce sites. The platform currently supports WooCommerce, Easy Digital Downloads, Shopify, and Shopify Plus. Tabor did not directly respond to what the future looked like for Jilt&rsquo;s non-WooCommerce customers nor did he give any indication of whether there were plans to expand Jilt to other eCommerce systems.</p>\n\n\n\n<p>He did say that GoDaddy would continue to invest in its priority eCommerce platforms, which are WooCommerce and GoDaddy Websites + Marketing.</p>\n\n\n\n<p>Max Rice, co-founder of SkyVerge, did leave some indication of Jilt&rsquo;s future in his <a href=\"https://www.skyverge.com/blog/skyverge-joins-godaddy/\">announcement post</a>. &ldquo;We made a commitment to be there for your business with software you can depend on, and we&rsquo;re sticking to it,&rdquo; he said. &ldquo;We&rsquo;ll continue to support our existing WooCommerce plugins and Jilt. While we&rsquo;ll be building something new at GoDaddy, everything we&rsquo;ve already built is a big part of that.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Sep 2020 20:59:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:86:\"WPTavern: Gutenberg 9.0 Brings Major Improvements to Navigation Screen and Query Block\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104795\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:217:\"https://wptavern.com/gutenberg-9-0-brings-major-improvements-to-navigation-screen-and-query-block?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-9-0-brings-major-improvements-to-navigation-screen-and-query-block\";s: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:2749:\"<p>If you haven&rsquo;t played around with Gutenberg&rsquo;s experiments lately, the Navigation block is getting some exciting updates. Version 9.0 was released today with drag-and-drop support added to the list view of navigation items.  </p>\n\n\n\n<img />\n\n\n\n<p>Contributors have been <a href=\"https://github.com/WordPress/gutenberg/issues/24875\">working through several different prototypes</a> aimed at unifying the controls and simplifying the menu building process. The Navigation screen included in version 9.0 has been redesigned to <a href=\"https://github.com/WordPress/gutenberg/issues/25014\">improve the &ldquo;Create Menu&rdquo; flow</a> and includes the following changes:</p>\n\n\n\n<ul><li>New&nbsp;<em>Header</em>&nbsp;and&nbsp;<em>Toolbar</em>&nbsp;components.</li><li><em>Manage Locations</em>&nbsp;has been rewritten and is now a popover.</li><li><em>Add New</em>&nbsp;form has been rewritten and now appears inline in the toolbar.</li><li><em>Automatically Add Pages</em>&nbsp;checkbox and&nbsp;<em>Delete menu</em>&nbsp;button has been rewritten and now appears in the block inspector.</li></ul>\n\n\n\n<p>The screen is starting to take shape but is still very much a work in progress. If you want to test it, you can enable it under Gutenberg &gt; Experiments.</p>\n\n\n\n<p>The Query block was another main focus fr the 9.0 release. It is taking a giant leap forward with new features like search, filtering by author, support for order/order by (date + title), and tags. This block should be tested locally and is still behind the&nbsp;<code>__experimentalEnableFullSiteEditing</code>&nbsp;flag since it requires full site editing blocks to display queried content.</p>\n\n\n\n<img />\n\n\n\n<p>Other notable UI enhancements include <a href=\"https://github.com/WordPress/gutenberg/pull/24852\">a new drag handle added to block toolbar</a> for drag-and-drop capability. (It is not visible on the top toolbar). Blocks can be dragged to other areas of a post as an alternative to using the up/down arrows.</p>\n\n\n\n<img />\n\n\n\n<p>This release also <a href=\"https://github.com/WordPress/gutenberg/pull/24472\">removes the Facebook and Instagram blocks</a> from the inserter, as Facebook will be&nbsp;<a href=\"https://wptavern.com/upcoming-api-change-will-break-facebook-and-instagram-oembed-links-across-the-web-beginning-october-24\">dropping unauthenticated oEmbed support</a>&nbsp;on October&nbsp;24. WordPress core is also set to remove Facebook and Instagram as an oEmbed provider in an upcoming release.</p>\n\n\n\n<p>For a full list of all the enhancements, bug fixes, experiments, and documentation updates, check out the <a href=\"https://make.wordpress.org/core/2020/09/16/whats-new-in-gutenberg-16-september/\">9.0 release post</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, 17 Sep 2020 03:18:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\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:\"HeroPress: How To Become A Freelancer – A Few Things I Learned Before I Gave Up\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=3280\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:206:\"https://heropress.com/essays/how-to-become-a-freelancer-a-few-things-i-learned-before-i-gave-up/#utm_source=rss&utm_medium=rss&utm_campaign=how-to-become-a-freelancer-a-few-things-i-learned-before-i-gave-up\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:28154:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2020/09/091620-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I realized that freelancing is not the only way to achieve my goals.\" /><p><a href=\"https://heropress.com/feed/#serbian\">Članak je takođe dostupan na sprskom jeziku.</a></p>\n<p>Everyone’s story is unique. Our life journeys differ in so many aspects and these experiences shape us into who we are now. Therefore, things that we, as individuals, learn along the way can’t always apply to someone else’s life goals, potentials, aspirations, and struggles.</p>\n<p>But, sometimes, knowing about other people’s mistakes and successes can help us navigate through our life challenges better. We can avoid making the same mistakes and, even better, we can get inspired to accomplish similar achievements.</p>\n<p>That is why I decided to share a few things that I have learned by trying to become a freelancer. Spoiler alert &#8211; I’m a corporate employee now.</p>\n<p>My career path was a bit unusual. I wasn’t quite tech-savvy until 5 years ago and my entire focus was around the fitness industry from 2006 until 2015. Being a fitness trainer was a dream job for me when I was 26 but, by the age of 35, it became somehow, well, boring.</p>\n<p>Then I had a huge epiphany &#8211; numerous opportunities come with WordPress and freelancing was one of them. So, if you are at the stage of your life when becoming a freelancer seems like a good idea, read on.</p>\n<p>I will try to break down 5 things that helped me in starting my freelance career. They are formulated as general tips for beginners but some of them can also be applied when changing the course of your career. So, let’s dive right in.</p>\n<h3>Question your motives</h3>\n<p>The first and the most important thing that you should ask yourself before you do anything in your life is why. “Why am I doing this?”</p>\n<p>So, why do you want to become a freelancer?</p>\n<p>Is it because you need an extra income? Or maybe because of flexible working hours. Or because you will be able to work from different locations? Or you see freelancing as just a phase before you get enough experience to open your agency and have others working for you.</p>\n<blockquote><p>Be honest with yourself. List all the reasons why you want to become a freelancer. This will help you later on in choosing the right jobs or maybe in considering some other alternatives to freelancing.</p></blockquote>\n<p>For example, these are my top 3 motives to become a freelancer:</p>\n<ul>\n<li>Opportunity to grow intellectually and learn new things</li>\n<li>Flexible working hours (by not being forced to work 9 am to 5 pm every day, I was able to avoid the boring routine)</li>\n<li>Peaceful and quiet working environment &#8211; quite opposite to the gym where everything is so loud</li>\n</ul>\n<p>So, after you question your goals and motives, and you are certain that you want to become a freelancer what’s next? My suggestion is &#8211; develop WordPress related skills.</p>\n<h3>Get the skills &#8211; choose WordPress</h3>\n<p>Why WordPress you might ask? Well, for a start, WordPress gives various opportunities and it is not a developer-only niche.</p>\n<p>Although, when someone thinks of freelancing and WordPress, web developer and web designer are first associations, there is a huge variety of WordPress related freelance jobs:</p>\n<ul>\n<li>Web developer (coding websites, themes, and plugins)</li>\n<li>Web implementor (creating websites from existing themes without coding)</li>\n<li>Web designer (designing website mockups, editing images or creating infographics for websites)</li>\n<li>Client support professional (helping people with their websites)</li>\n<li>Website maintenance professional (takes care of the website to make sure that WordPress, themes, and plugins are up to date and new backups are created regularly)</li>\n<li>WordPress teacher (teaching clients how to use WordPress or teaching other web professionals)</li>\n<li>Content writer</li>\n<li>Accessibility specialist (making sure that certain standards are met and suggesting solutions for accessibility barriers)</li>\n<li>SEO consultant</li>\n<li>Statistics consultant (especially for webshops)</li>\n<li>WordPress assistant (adding new content and editing existing posts)</li>\n<li>Website migration specialist (moving websites from one server to another)</li>\n<li>Web security specialist</li>\n</ul>\n<p>Another reason why WordPress is great for freelancers is a strong community that exists around this CMS. There are regular meetups, WordCamps, and other events (they are now switched to online), where you can get a ton of useful information, and also get to ask like-minded people literally anything. The community is so large and diverse, that you will definitely find the answer to any question. It’s much easier to start your freelance career when you have such a great community around you.</p>\n<h3>Plan in advance</h3>\n<p>Now that you know where the opportunity lies, you can start planning your career.</p>\n<p>Becoming a freelancer is a process. At the beginning of that process, you should acquire or improve relevant skills that will make you stand out in the freelance market. And, of course, as you learn and grow, you will be able to take more challenging and better-paid jobs.</p>\n<p>Which skill should you focus on? If you already have a basic skill set for at least one of the previously listed jobs, you can improve your knowledge in that direction and specialize in that area.</p>\n<p>However, if you don’t have any relevant skills, in my opinion, it would be the easiest to step into the freelancing world with a job that has a shorter learning curve and build your knowledge around that. Example &#8211; you can start with either content writing or as a web implementer since these jobs have a shorter learning curve than SEO related jobs or web development. Then, from content writing, you can expand your knowledge towards SEO and from a web implementer, you can become a developer. Just don’t stop learning.</p>\n<p>Also, if you have specific talents or hobbies like writing or design, you can base your career on that.</p>\n<blockquote><p>There is nothing better than doing what you love.</p></blockquote>\n<p>Additionally, it would be a good idea to analyze the market before you jump into the learning process.</p>\n<p>For example, now it would not be the best time to specialize in writing travel-related content, while it would be a great moment for any job related to webshops and online sales.</p>\n<p>If you want to learn web development, web design, web security, or SEO, you should always focus on new trends, so your skills can be useful in the future as well.</p>\n<p>For different jobs, working terms often vary so you should take this into consideration when choosing your career path. At some jobs, you can work flexible hours while at others you have to be available during predefined hours. This is what you should have in mind when specializing in a certain area or looking for a first job.</p>\n<h3>Hurray, it’s time to get a first freelancing job</h3>\n<p>If you currently have a job, it would be wise to either save some money before you quit your job to become a full-time freelancer or try freelancing for a few hours per week, in the beginning, to see if you like it or not. If you become successful and decide that freelancing is something that fits your needs, only then quit your job, not before.</p>\n<blockquote><p>Although some people do benefit when taking a risk, think twice before you take any irreversible actions.</p></blockquote>\n<p>And here are some tactics that worked for me when trying to get my first freelancing job:</p>\n<p><i>Use a freelancing platform</i> &#8211; although this is not mandatory, it is much easier to get the first job when you are using a freelancing platform. My choice was Upwork back in the day, but there are several platforms that you can use to get the first job faster.</p>\n<p><i>Triple-check your resume</i> &#8211; I guess that this is not something that I should mention but I will anyway, just in case. Don’t make spelling mistakes in your resume, it will give the impression that you are not thorough and that you will oversee mistakes in your other work as well.</p>\n<p><i>Present yourself in a professional manner</i> &#8211; Take the time to present your professional skills in the best possible light but still stay humble. Don’t write: “Best WordPress developer that never wrote a bad code”. This is not evidence-based, and it will make you seem arrogant. Instead, you can write: “Web developer with 3 years of experience and over 50 satisfied clients, specialized in WordPress.” This statement is based on facts and it shows your credibility.</p>\n<p><i>Fill up your portfolio</i> &#8211; If you have any previous work (that is presentable, of course) you should put it in your portfolio. Emphasis on presentable. If not, you can make a few websites, designs, or write some example texts if you are a content writer in order to showcase your skills. This is not applicable to all jobs, like SEO consultants or customer support but if you have the opportunity to create a portfolio, use the opportunity.</p>\n<p><i>Use video material</i> &#8211; Short introductory video will make you stand out since making promotional video material is not something that many freelancers do. It will help you create a more human professional approach. For your clients, you will not be just a list of skills and previous experiences, but a real person that has these skills and experiences and that provides a certain service for them.</p>\n<p><i>Have a detailed strategy when choosing your first employer &#8211;</i> Choose your first employer wisely, very wisely. I can’t emphasize enough how important this is so I will give you an example. When I had to apply for my first job, I considered the following:</p>\n<ul>\n<li>How this employer was rated by other freelancers which worked for him previously</li>\n<li>How the employer rated other freelancers</li>\n<li>How much money he had already spent on this platform and if he posts regular job offers</li>\n<li>The number of open positions for this job and the number of freelancers that have already applied. In my case, the job had about 10 open positions so that amplified my chances of getting hired, even if the competition is high.</li>\n</ul>\n<p><i>The first job is not all about the money &#8211;</i> Don’t get greedy on your first job. If you get good reviews, your second job can be paid 2-3 times more. And your third job can go up to 5 times more. That was my experience at least.</p>\n<h3>Be careful, you are an adult</h3>\n<p>Individual responsibility is key when it comes to freelancing. You have the freedom to choose who you are going to work for, what kind of job are you going to take, and how it is going to be delivered. And freedom often comes with responsibility. They are like two sides of the same coin.</p>\n<p>You should never miss a deadline. If you are not sure that you are going to be able to deliver, don’t take the job or as an alternative have someone very reliable as a backup, just in case. When you miss a deadline, your client loses money, and they have every right to be angry. This will very likely affect your reviews after the job is complete. And then, the opportunity to get your next job and so on. This can start a downward spiral for your career.</p>\n<p>However, we are all humans and unpredictable things can happen. If for some reason you are not able to complete your work in a timely manner, let your client know immediately so they can have enough time to hire someone else.</p>\n<p>Also, it is important to make everything clear in advance, before you accept the job. Let your clients know what your expectations are and make sure that you understand what they expect from you. For example, if you are a content writer, make sure that you know the length of the text in characters or words, ask if some keywords should be used and how frequently, what writing style your client prefers, and so on. And if you are a designer, specify how many revisions are included in the price.</p>\n<blockquote><p>The clearer the initial arrangement is, the more satisfied both you and your client will be at the end.</p></blockquote>\n<p>If you have flexible working hours, don’t let other people interrupt you. If your friends and family wouldn’t show up in your office every day if you were a bank clerk, they shouldn’t interrupt you when you work from home. It’s the same principle and it’s up to you to set the boundaries and let them know about your working schedule. It’s not up to them.</p>\n<p>So, these are some basic guidelines that helped me in starting my freelance career and I hope that they will be helpful for you as well.</p>\n<blockquote><p>There is no unique recipe and one size doesn’t fit all when it comes to the path you ought to take.</p></blockquote>\n<p>It’s just important to stay focused on your goals and to be open to new opportunities.</p>\n<p>If you were wondering why I’m not a freelancer anymore, this is where the answer lies. By constantly being interested in different opportunities, I realized that freelancing is not the only way to achieve my goals. There are companies that offer flexible working hours and peaceful work environment while stimulating professional growth and creative thinking.</p>\n<p>Plus I gained something very precious by joining a team &#8211; my colleagues became my support system both professionally and privately, and that is what I have been missing while being a freelancer.</p>\n<p>I wish you a lot of luck and success in the future, regardless of the path you choose to take.</p>\n<h1 id=\"serbian\">Kako postati frilenser &#8211; stvari koje sam naučila pre nego što sam odustala</h1>\n<p>Naše životne priče su različite. Svako od nas ima svoj jedinstveni životni put, a iskustva koja steknemo oblikuju nas u osobe koje smo danas. Zbog toga, stvari koje mi, kao pojedinci, naučimo na svom putu ne mogu uvek lako da se primene na situacije kroz koje prolazi neko drugi.</p>\n<p>Ipak, ponekad sagledavanje tuđih uspeha i grešaka može da nam pomogne da se bolje snađemo u sopstvenim životnim izazovima. Možemo da izbegnemo da napravimo istu grešku koju je napravio naš prijatelj ili, još bolje, možemo postati motivisani da postignemo jednak ako ne i veći uspeh kao neko iz našeg okruženja.</p>\n<p>Zbog toga sam odlučila da sa vama podelim ono što sam naučila pokušavajući da postanem frilenser. Spoiler alert &#8211; sada sam zaposlena u korporacji.</p>\n<p>Moja karijera je isla pomalo neuobičajenim putem. Nisam uopšte bila naklonjena informatici do pre pet godina. Tačnije nisam znala skoro ništa o toj oblasti. Bila sam potpuno fokusirana na fitnes industriju i radila sam isključivo kao fitnes trener od 2006. do 2015. To je za mene bio posao iz snova dok sam bila mlađa ali mi je oko moje 35. godine već pomalo dosadio.</p>\n<p>Tada sam otkrila WordPress i shvatila da se mnogobrojne prilike otvaraju bas sa poznavanjem ove platforme. A frilensing je jedna od njih. Tako da, ako ste trenutno u fazi kada vam se frilensovanje čini kao dobra ideja, nastavite da čitate.</p>\n<p>Pokušaću da detaljno opišem pet stvari koje sam naučila pokušavajući da postanem frilenser. Formulisala sam ih kao uopštene savete za početnike, ali neki od njih mogu da se primene i kada menjate kurs svoje frilens karijere.</p>\n<h3>Preispitajte svoje motive</h3>\n<p>Prva i najvažnija stvar koju treba da se zapitate pre nego što uradite išta u životu je zašto. “Zašto to radim?” Zbog čega želite da postanete frilenseri? Da li zbog toga što vam treba dodatni prihod? Ili zbog fleksibilnog radnog vremena? Ili da biste mogli da radite sa bilo koje lokacije na svetu? Ili frilensing vidite kao fazu pre nego što steknete dovoljno iskustva da možete da otvorite svoju agenciju.</p>\n<blockquote><p>Budite iskreni prema sebi. Popišite koji su to razlozi zbog kojih želite da budete frilenser. Ovo će vam kasnije pomoći pri izboru adekvatnog frilensing posla ili pri razmatranju neke druge alternative.</p></blockquote>\n<p>Na primer, ovo su bila moja tri glavna razloga:</p>\n<ul>\n<li>Prilika da naučim nesto novo i da se intelektualno razvijam u nekom novom pravcu</li>\n<li>Fleksibilno radno vreme &#8211; time što sam imala fleksibilno radno vreme bila sam u mogućnosti da izbednem dosadnu “od 9 do 5” rutinu</li>\n<li>Tiho i mirno radno okruženje, potpuno u suprotnosti sa teretanama u kojima je uvek bučno</li>\n</ul>\n<p>Nakon što ste preispitali svoje ciljeve i motive, i sigurni ste da želite da se bavite frilensingom, šta dalje? Moj predlog je naučite nešto što je vezano za WordPress.</p>\n<h3>Steknite znanja vezana za WordPress</h3>\n<p>Sada se možda pitate zašto baš WordPress. Za početak, zato što WordPress nudi mnoštvo raznovrsnih prilika, i to ne samo za developere.</p>\n<p>Iako, kad se pomene WordPress, prvo što će nekome pasti na pamet je ili developer ili web dizajner, postoji veliki broj različitih poslova vezanih za WordPress:</p>\n<ul>\n<li>Web developer (kodira sajtove, teme i dodatke)</li>\n<li>Web implementator (pravi sajtove od gotovih tema bez kodiranja)</li>\n<li>Web dizajner (dizajnira skice sajtova, edituje slike i kreira infografike za sajtove)</li>\n<li>Korisnička podrška (pomaže klijentima kada se nešto desi sa sajtom)</li>\n<li>Održavanje sajtova (redovno održava sajt, kreira bekape, ažurira teme, dodatke i sam WordPress)</li>\n<li>WordPress predavač (uči klijente kako da koriste WordPress ili uči druge web profesionalce koji se usavršavaju u nekoj oblasti)</li>\n<li>Pisac tekstova za sajtove</li>\n<li>Specijalista za aksesibilnost (vodi računa da određeni standardi budu ispunjeni i predlaže rešenja za barijere u aksesibilnosti)</li>\n<li>SEO konsultant</li>\n<li>Statističar (najčešće radi za velike onlajn prodavnice)</li>\n<li>WordPress asistent (unosi novi sadržaj i menja postojći)</li>\n<li>Specijalista za migracije (seli sajtove sa servera na server)</li>\n<li>Specjalista za web bezbednost</li>\n</ul>\n<p>Još jedan razlog zbog kojeg mislim da je dobro izabrati WordPress je jaka zajednica koja se okupila oko ovog CMS-a. Redovno se održavaju manja okupljanja (trenutno na daljinu) ali i ona veća koja su nazvana WordCamp (takođe na daljinu do daljnjeg) na kojima možete dobiti pregršt korisnih informacija i pitati druge profesionalce sve što vas interesuje. Zajednica je toliko velika i raznolika da ćete tu pronaći odgovor na skoro svako stručno pitanje. Mnogo je lakse započeti frilens karijeru kada su sjajni ljudi oko vas.</p>\n<h3>Planirajte unapred</h3>\n<p>Sada kada znate u kom ćete pravcu ići, vreme je da počnete da planirate svoju karijeru.</p>\n<p>Postati frilenser je proces. Na početku tog procesa potrebno je da steknete ili dodatno unapredite svoje veštine kojima ćete se istaći u odnosu na konkurenciju. I naravno kako učite i napredujete, moći ćete da prihvatate izazovnije i bolje plaćene poslove.</p>\n<p>Na koja se onda znanja fokusirati? Ukoliko već imate neko predznanje za neki od prethodno navedenih poslova, možete se dalje razvijati u tom pravcu i specijalizovati se za tu oblast.</p>\n<p>S druge strane, ukoliko nemate nikakvo relevantno predznanje, po mom mišljenju bi najlakše bilo započeti sa poslom koji ima kraći period učenja pa da kasnije nadograđujete znanje. Na primer, možete početi kao pisac tekstova za sajtove ili kao implementator jer se ti poslovi brže savladavaju nego poslovi vezani za SEO ili web development. Onda od pisanja sadržaja za sajtove možete proširiti znanje na SEO a od implementatora vremenom postati developer. Samo budite radoznali i ne prestajte da učite.</p>\n<p>Takođe, ukoliko imate specifične talente ili neki hobi kao npr. pisanje ili dizajn, možete da bazirate karijeru oko toga.</p>\n<blockquote><p>Najlepše je kad neko zarađuje od nečega što inače voli da radi.</p></blockquote>\n<p>Uz to, valjalo bi da proučite tržište pre nego što se “bacite” na učenje.</p>\n<p>Na primer, sada nije trenutak da se specijalizujete za pisanje sadržaja koji je vezan za putovanja, a pravi je momenat za sticanje veština koje, na bilo koji način, imaju veze sa onlajn prodavnicama i prodajom putem Interneta.</p>\n<p>Ukoliko želite da savladate web development, SEO, web dizajn ili web bezbednost, bitno je da se fokusirate na nove trendove, tehnologije i alate, kako bi vaše veštine bile primenljive i u budućnosti.</p>\n<p>Za različite poslove, uslovi rada mogu biti veoma različiti, pa bi i to valjalo imati na umu. Za neke vrste posla, radno vreme je fleksibilno, dok za druge, morate biti raspoloživi tokom određenog doba dana (ako radite kao korisnička podrška, na primer). I ovo bi trebalo da uzmete u obzir kada birate za koju oblast ćete se specijalizovati.</p>\n<h3>Konačno! Vreme je za prvi posao!</h3>\n<p>Ako ste zaposleni, bilo bi pametno da prištedite novac pre nego što napustite posao da biste se bavili isključivo frilensingom. Druga pametna opcija bi bila da vam na početku frilensing bude dodatni posao uz ono što već radite kako biste videli da li vam takav način rada odgovara ili ne. Ako postanete uspešni i shvatite da je frilensing nešto što odgovara vašim potrebama, tek tada napustite trenutni posao, ne pre toga.</p>\n<blockquote><p>Iako neki ljudi profitiraju kada rizikuju, dobro razmislite pre nego što preduzmete korake posle kojih nema nazad.</p></blockquote>\n<p>Evo nekoliko taktika koje su mi pomogle kada sam pokušavala da dobijem svoj prvi posao kao frilenser:</p>\n<p><i>Koristite platformu za frilensere</i> &#8211; iako nije obavezno, mnogo je lakše doći do prvog posla kada koristite neku platformu namenjenu frilenserima. U to doba, moj izbor je bio Upwork. Svakako, sada postoji i nekoliko drugih platformi pomoću kojih možete brže doći do prvog posla.</p>\n<p><i>Triput proverite svoju biografiju</i> &#8211; pretpostavljam da to nije nešto što bi trebalo da pomenem, ali svejedno ću naglasiti, za svaki slučaj. Ne pravite pravopisne greške u biografiji jer ćete time stvoriti utisak da niste temeljni i da će vam se greške lako potkrasti i dok obavljate svoj posao.</p>\n<p><i>Predstavite se profesionalno</i> &#8211; Uložite trud da svoje profesionalne veštine predstavite u najboljem mogućem svetlu, ali i dalje budite skromni. Nemojte napisati: &#8220;Najbolji WordPress developer koji nikada nije napisao loš kod&#8221;. Ovo nije zasnovano na dokazima i učiniće da izgledate arogantno. Umesto toga, možete napisati: &#8220;Web programer sa 3 godine iskustva i preko 50 zadovoljnih klijenata, specijalizovan za WordPress.&#8221; Ova izjava je zasnovana na činjenicama i deluje verodostojno.</p>\n<p><i>Popunite portfolio</i> &#8211; Ako imate bilo kakav prethodni rad (koji je naravno reprezentativan), trebalo bi da ga dodate u portfolio. Naglasak je na reprezentativan. Ako ne, možete da napravite nekoliko sajtova, dizajnirate skice sajtova ili napišete primere tekstova kako biste prikazali svoje veštine. Ovo se ne odnosi na sve poslove, kao što su SEO konsultanti ili korisnička podrška, ali ako imate priliku da napravite portfolio, iskoristite priliku.</p>\n<p><i>Koristite video materijale</i> &#8211; Kratki uvodni video će skrenuti pažnju na vas jer izrada promotivnog video materijala nije nešto što mnogi frilenseri rade. Pomoći će vam da delujete ljudskije i profesionalnije. Za svoje klijente nećete biti samo lista veština i prethodnih iskustava, već stvarna osoba koja zaista ima te veštine i iskustva i koja im pruža određenu uslugu.</p>\n<p><i>Imajte detaljnu strategiju pri izboru prvog poslodavca</i> &#8211; Birajte svog prvog poslodavca mudro. Ne mogu dovoljno da naglasim koliko je ovo važno, pa ću vam dati primer. Kada sam se prijavljivala za svoj prvi posao, uzela sam u obzir sledeće:</p>\n<ul>\n<li>Kako su ovog poslodavca ocenili drugi frilenseri koji su ranije radili za njega</li>\n<li>Kako je poslodavac ocenio druge frilensere</li>\n<li>Koliko novca je već potrošio na ovoj platformi i da li redovno objavljuje ponude za posao</li>\n<li>Broj otvorenih pozicija za ponuđeni posao i broj frilensera koji su se već prijavili. U mom slučaju, posao je imao oko 10 otvorenih radnih mesta, što je povećalo moje šanse za zapošljavanje, čak i u slučaju da je konkurencija velika.</li>\n</ul>\n<p>Kod prvog posla nije bitan samo novac &#8211; nemojte biti pohlepni. Ako budete dobro ocenjeni, vaš drugi posao može biti plaćen 2-3 puta više. A vaš treći posao može biti vrednovan i do 5 puta više. To je barem bilo moje iskustvo.</p>\n<h3>Vodite računa, odrasla ste osoba</h3>\n<p>Individualna odgovornost je ključna kada je u pitanju uspeh u frilensingu. Imate slobodu da izaberete za koga ćete raditi, kakav ćete posao prihvatiti i kako ćete isporučiti dogovoreno. A uz slobodu često dolazi i odgovornost. Oni su poput dve strane iste medalje.</p>\n<p>Nikada ne smete propustiti rok. Ako niste sigurni da ćete uspeti da završite, nemojte ni prihvatati posao ili, umesto toga, za svaki slučaj imajte nekoga vrlo pouzdanog da priskoči u pomoć ako zatreba. Kada propustite rok, vaš klijent gubi novac i ima puno pravo da se naljuti. Ovo će vrlo verovatno uticati na vaše ocene nakon obavljenog posla. A posledično, i na priliku da dobijete sledeći posao i tako dalje. To može pokrenuti silaznu spiralu za vašu karijeru.</p>\n<p>Međutim, svi smo ljudi i mogu se dogoditi nepredvidive stvari. Ako iz nekog razloga niste u mogućnosti da svoj posao obavite u roku, odmah obavestite svog klijenta kako bi imao dovoljno vremena da zaposli nekog drugog.</p>\n<p>Takođe je važno da sve bude jasno definisano unapred, pre nego što prihvatite posao. Obavestite svoje klijente o svojim očekivanjima i uverite se da razumete šta oni očekuju od vas. Na primer, ako treba da pišete tekst za sajt, uverite se da znate dužinu teksta u karakterima ili rečima, pitajte da li treba koristiti neke ključne reči i koliko često, koji stil pisanja preferira vaš klijent itd. A ako ste dizajner, navedite koliko je revizija uključeno u cenu.</p>\n<blockquote><p>Što je početni dogovor jasniji, to ćete na kraju biti zadovoljniji i vi i vaši klijenti.</p></blockquote>\n<p>Ako imate fleksibilno radno vreme, ne dozvolite da vas drugi ljudi prekidaju. Ako se vaši prijatelji i porodica ne bi svakodnevno pojavljivali u vašoj kancelariji da ste bankarski službenik, ne bi trebalo da vas prekidaju ni kada radite od kuće. To je isti princip i na vama je da postavite granice i obavestite ih o svom radnom vremenu. To nije njihov zadatak.</p>\n<p>Ovo su neke osnovne smernice koje su mi pomogle u započinjanju karijere frilensera i nadam se da će biti korisne i vama.</p>\n<blockquote><p>Ne postoji jedinstveni recept i jedna veličina ne odgovara svima kada je reč o putu kojim treba da krenete.</p></blockquote>\n<p>Važno je samo ostati fokusiran na svoje ciljeve i biti otvoren za nove mogućnosti.</p>\n<p>Ako ste se pitali zašto više nisam frilenser, evo odgovora. Stalnim sagledavanjem različitih mogućnosti, shvatila sam da frilensing nije jedini način da postignem svoje ciljeve. Postoje kompanije koje nude fleksibilno radno vreme i mirno radno okruženje, istovremeno stimulišući profesionalni rast i kreativno razmišljanje.</p>\n<p>Uz to, stekla sam nešto vrlo dragoceno pridruživanjem timu &#8211; moje kolege su postale moj sistem podrške i profesionalno i privatno, i to je ono što mi je nedostajalo dok sam bila frilenser.</p>\n<p>Želim vam puno sreće i uspeha u budućnosti, bez obzira na put koji ste odabrali!</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/how-to-become-a-freelancer-a-few-things-i-learned-before-i-gave-up/\">How To Become A Freelancer &#8211; A Few Things I Learned Before I Gave Up</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, 16 Sep 2020 06:00:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Tijana Andrejic\";s: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:112:\"WPTavern: Upcoming API Change Will Break Facebook and Instagram oEmbed Links Across the Web Beginning October 24\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104140\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:269:\"https://wptavern.com/upcoming-api-change-will-break-facebook-and-instagram-oembed-links-across-the-web-beginning-october-24?utm_source=rss&utm_medium=rss&utm_campaign=upcoming-api-change-will-break-facebook-and-instagram-oembed-links-across-the-web-beginning-october-24\";s: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:5294:\"<p>In an extraordinarily inconvenient API change, Facebook and Instagram will be <a href=\"https://developers.facebook.com/docs/plugins/oembed-legacy\">dropping unauthenticated oEmbed support</a>&nbsp;on October&nbsp;24, breaking content across millions of websites. The change will force users to generate&nbsp;an app ID with a developer account in order to continue embedding links via oEmbed:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><strong>Changes to tokenless access for User Picture and FB/IG OEmbed endpoints:</strong>&nbsp;By October 24, 2020, developers must leverage a user, app, or client token when querying Graph API for user profile pictures via UID, FB OEmbeds and IG OEmbeds. Developers should provide a user or app token when querying for profile pictures via a UID or ASID, though client tokens are supported as well. Please visit our changelog for&nbsp;<a href=\"https://developers.facebook.com/docs/graph-api/changelog/version8.0#users\">User Picture</a>,&nbsp;<a href=\"https://developers.facebook.com/docs/graph-api/changelog/version8.0#social-plugins\">Facebook OEmbed</a>&nbsp;and&nbsp;<a href=\"https://developers.facebook.com/docs/graph-api/changelog/version8.0#instagram\">Instagram OEmbed</a>&nbsp;for details on how to start calling these Graph API endpoints today.</p><cite><a href=\"https://developers.facebook.com/blog/post/2020/08/04/Introducing-graph-v8-marketing-api-v8/\">Facebook for Developers blog</a></cite></blockquote>\n\n\n\n<p>In 2008, Leah Culver, one of the collaborators on the <a href=\"https://oembed.com/\">oEmbed</a> spec, <a href=\"https://blog.leahculver.com/2008/05/announcing-oembed-an-open-standard-for-embedded-content.html\">said</a> it was created to be &ldquo;an open web API standard for fetching embed code based on a URL.&rdquo; Requiring authentication in order to use oEmbed links seems like a violation of its intended purpose. For more than a decade, oEmbed has made it possible for users to easily share media across websites and social networks, without having to touch any code. It underpins a flourishing, connected landscape of web sharing that opens up new audiences for posts that might otherwise be buried in a social network&rsquo;s fast-moving timeline.</p>\n\n\n\n<p>In pursuit of a more secure walled garden, Facebook will now require all publishers to obtain developer app credentials in order to embed content that was previously available through simple URLs. Many users will be understandably frustrated when they find they can no longer embed Facebook and Instagram links the way they could in the past. Some will not be motivated to surmount the hurdle of setting up a Facebook app and may resort to posting screenshots or omitting the content altogether. A feature so widely used by non-technical users should not be suddenly locked away behind developer credentials.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Facebook turning off its oEmbed endpoint for FB and Instagram is another brick in the wall around Facebook reality.</p>&mdash; &#9899; Your roots are in the infinite (@thejaymo) <a href=\"https://twitter.com/thejaymo/status/1305960256082784259?ref_src=twsrc%5Etfw\">September 15, 2020</a></blockquote>\n</div>\n\n\n\n<p>At the time of publishing, none of the original oEmbed spec authors were available for comment regarding Facebook&rsquo;s API change, but we will update the post as new information becomes available.</p>\n\n\n\n<h2>WordPress to Remove Facebook and Instagram oEmbed Providers</h2>\n\n\n\n<p>In response to Facebook&rsquo;s API change, WordPress will be&nbsp;<a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/50861\" target=\"_blank\">removing Facebook as an oEmbed provider</a>&nbsp;in an upcoming core release. This will break a lot of content &ndash; many years&rsquo; worth of posts in some instances, and will require users to install a fallback plugin. WordPress plugin developer <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> has created a new plugin called <a href=\"https://wordpress.org/plugins/oembed-plus/\">oEmbed Plus</a> that brings back support for Facebook and Instagram content embedding. It guides users through the process of setting up Facebook developer app credentials.</p>\n\n\n\n<p>For those who are using the Gutenberg plugin, the Facebook and Instagram blocks have been <a href=\"https://github.com/WordPress/gutenberg/pull/24472\">removed</a> as part of tomorrow&rsquo;s version 9.0 release. oEmbed links will continue to work until Facebook&rsquo;s API change goes into effect.</p>\n\n\n\n<p>Moving forward, publishers will need to re-examine how they include social media links within their content. <a href=\"https://wptavern.com/wordpress-5-5-to-remove-hulu-from-list-of-supported-oembed-providers\">Hulu recently dropped oEmbed support</a> after being available as an oEmbed provider in WordPress for the past 11 years. As major players like Facebook and Instagram follow suit in abandoning open web API&rsquo;s, the web is growing increasingly more fragmented. Facebook&rsquo;s upcoming API change will leave millions of broken embeds in its wake, with little pieces of embedded history lost along the way, in instances where website owners are no longer updating their content.</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, 15 Sep 2020 22:47:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:82:\"WPTavern: Digging Into Recipe Card Blocks, WPZOOM’s Solution for Recipe Bloggers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104730\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:201:\"https://wptavern.com/digging-into-recipe-card-blocks-wpzooms-solution-for-recipe-bloggers?utm_source=rss&utm_medium=rss&utm_campaign=digging-into-recipe-card-blocks-wpzooms-solution-for-recipe-bloggers\";s: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:8785:\"<p class=\"has-drop-cap\">After publishing a post about the new <a href=\"https://wptavern.com/start-a-recipe-blog-with-the-recipe-block-wordpress-plugin\">Recipe Block</a> plugin last week, several people were quick to point out that WPZOOM had released a recipe-related block plugin two years ago. Among them, was the plugin author, Pavel Ciorici. I had previously tested the <a href=\"https://wordpress.org/plugins/recipe-card-blocks-by-wpzoom/\">Recipe Card Blocks</a> plugin and thought it fit into that &ldquo;overly complex&rdquo; category that is not ideal for the average user who wants to share a recipe here or there. However, it may fit the bill for more dedicated recipe bloggers.</p>\n\n\n\n<p>Over the past few days, I have been testing the plugin and giving it a more in-depth second look.</p>\n\n\n\n<p><em>My thoughts on the plugin?</em> Not much has changed. I would still recommend the Recipe Block plugin that I covered last week for its simplicity and ease of use. However, this is not a comparison post. There is a lot to like about WPZOOM&rsquo;s Recipe Card Blocks plugin, and it caters to a similar but somewhat different audience. It is also not a single block plugin and would never be in the official WordPress block directory in its current form. Instead, it is a more fully-featured recipe plugin. Blocks are merely its primary component.</p>\n\n\n\n<p>Recipe Card Blocks is packed full of options and features. If that&rsquo;s your thing, it might interest you as a potential user. And, the pro version tacks on tons more, such as star ratings, social sharing, and adjustable serving sizes from the front end.</p>\n\n\n\n<h2>Recipe Card Blocks</h2>\n\n\n\n<img />Using the Recipe Card block in the editor.\n\n\n\n<p class=\"has-drop-cap\">The primary feature of the plugin is its Recipe Card block, which outputs Schema markup. This could give a search results boost or at least help search engines understand that you have a recipe on the site. For serious recipe bloggers, this is probably one of the most important features this plugin offers.</p>\n\n\n\n<p>The question is really if the plugin&rsquo;s Recipe Card block is worth using. For users who want options, options, and more options, the plugin offers at least a couple dozen of them for this one block alone. It has a plethora of toggles, inputs, buttons, and other things to customize. The downside is that it can be a bit overwhelming. With so many options, it also means the plugin developers must maintain tighter control over the elements within the block, which can mean less flexibility in other ways.</p>\n\n\n\n<p>The block includes the standard fields that one might expect for a recipe card, such as servings, cook and prep time, ingredients and directions lists, and an image. However, it goes above and beyond by including extra features like:</p>\n\n\n\n<ul><li>Grouping for ingredients and directions.</li><li>Recipe video section.</li><li>Notes section.</li><li>Pinterest button.</li><li>Print button.</li></ul>\n\n\n\n<p>One of my favorite features of the Recipe Card block is that site readers can check off ingredients on the front end. For ingredient-heavy recipes, this can be a time-saver in the kitchen as you gather the things you need to get started.</p>\n\n\n\n<img />Ticking items off the ingredients checklist on the front end.\n\n\n\n<p>The default design is beautiful. There is ample spacing between elements. The sections are clearly separate so that there&rsquo;s no confusion for the reader. It simply looks good.</p>\n\n\n\n<p>However, there are some limitations and issues. At times, the default design is too opinionated, overruling theme styles. It also does not support wide alignment and has a hard limit on its maximum width of 750 pixels. This could make it undesirable with some site designs. Nevertheless, the plugin team made generally smart design decisions. It should work well within most contexts.</p>\n\n\n\n<p>What makes the Recipe Card block tough to use is that end-users must jump back and forth between the post content area and the block options in the right sidebar panel. For example, users must add the course, cuisine, and difficulty text in the sidebar but add the servings, prep time, and cooking time in the content editor.</p>\n\n\n\n<p>Entering items in the ingredients or directions lists also requires more work than one might think. Typically, in visual editors, simply hitting the <code>Enter</code> key should create a new list item. This is not the case with the Recipe Card block. Even tabbing moves users to other controls instead of hopping between items in the list. It is particularly frustrating if you prefer to use the keyboard over the mouse.</p>\n\n\n\n<p>These usability issues keep the plugin from being simply a <em>good</em> plugin rather than a <em>great</em> plugin. User experience issues are not insurmountable. They can be addressed, and I hope the team can continue iterating on and improving the experience.</p>\n\n\n\n<p>I would also like to see the block opened up for the addition of other inner, sub-blocks. Currently, the layout is locked in place. While it may be suitable for some users, locking the block template means that users can neither move the current elements around nor add custom sections that suit their needs. Locking the block means that the plugin author retains control over much of the output, which can sometimes be a good thing &mdash; quality control. However, it makes the block less flexible.</p>\n\n\n\n<p>This inflexibility is somewhat mitigated with the plugin&rsquo;s other blocks. While the Recipe Card block is the primary feature of the plugin, it does break its sub-elements down into individual blocks that users can use to create their own layout by dropping them into a Group or other container-type block. It offers the following extra blocks:</p>\n\n\n\n<ul><li>Details</li><li>Directions</li><li>Ingredients</li><li>Jump to Recipe</li><li>Print Recipe</li><li>Nutrition</li></ul>\n\n\n\n<img />Separate Nutrition block in the editor.\n\n\n\n<p>With a little ingenuity and perhaps a plugin like <a href=\"https://wordpress.org/plugins/block-pattern-builder/\">Block Pattern Builder</a> (a plugin that I maintain), end-users could create custom, reusable recipe layouts.</p>\n\n\n\n<h2>The Big Issue</h2>\n\n\n\n<p class=\"has-drop-cap\">The thing I dislike about the plugin the most is that it outputs a &ldquo;RECIPE CARD PLUGIN BY WPZOOM&rdquo; message in the front-end post content output. This message is hidden in the editor view. Plugin users can see it only on the front end. For the average user, there is no easy way to remove this message without upgrading to the pro version of the plugin, which costs at least $69.</p>\n\n\n\n<p>Frankly, commercializing the removal of a credit link a shady business practice. It is a tactic that preys on those who do not know how to code. <em>Sorry, I got no love to give for this.</em></p>\n\n\n\n<p>This was frowned up 10-15 years ago when theme authors were doing it. It should be frowned upon today when plugin authors do the same.</p>\n\n\n\n<p>Upsell custom branding. Upsell a 100 other things that <em><strong>add value</strong></em>. Don&rsquo;t upsell removing a credit link that you are outputting in the user&rsquo;s post content. This one problem with the plugin paints a stain over everything else that is good about it.</p>\n\n\n\n<h2>Final Thoughts</h2>\n\n\n\n<p class=\"has-drop-cap\">I do not want to end on a negative note. Recipe Card Blocks is a useful plugin for those who want more than a basic recipe block. It is almost more of a recipe management tool but not quite.</p>\n\n\n\n<p>I would have taken a different route with some of the development based on the publicly-known plans for the plugin. For example, I could see creating a recipe custom post type separate from the block system. Then, allow users to insert these &ldquo;recipe posts&rdquo; into the block editor. With plans to add custom taxonomies to the plugin, it makes sense to keep the whole data layer separate.</p>\n\n\n\n<p>It seems the plugin is torn between being a recipe block and a full recipe management plugin. I would like to see it fully commit to the latter because that seems to be the direction it is heading. However, from an architectural standpoint, it will need work to get there. It can still be done, despite two years of legacy code, and it has the opportunity to carve out its own space in the ecosystem.</p>\n\n\n\n<p>If the plugin&rsquo;s development team would remove the upsell of the credit link, I would absolutely recommend this plugin to people who want to run a serious, full-time recipe blog. It has those extra features like a nutrition label, a print button, and Schema markup that give it an edge over some of the competition. For users who simply want to add a recipe on their blog from time to time, it is overkill.</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, 15 Sep 2020 21:25: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Akismet: Introducing updated Akismet plans\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=2086\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://blog.akismet.com/2020/09/15/introducing-updated-akismet-plans/\";s: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:3109:\"<p>Since Akismet launched nearly 15 years ago, it has <a href=\"https://blog.akismet.com/2020/07/06/akismet-five-hundred-billion-with-a-b-spam/\">blocked 500 billion spam comments</a>. We’re proud to have saved you countless hours of moderation time, reduced frustration for millions of people, and helped make the web a more beautiful place.</p>\n<p>Akismet is the most powerful solution on the market for stopping spam, but spammers are continually inventing new ways to get past our filters. Adding new spam detection techniques will ensure we keep Akismet one step ahead of bad actors, but it will require additional investment. We don’t take changing prices lightly. In fact, we haven’t changed the price of the entry-level plan since it was introduced in 2005.</p>\n<p>For commercial sites, the price of Akismet will be better aligned to API usage. This means that as you use Akismet more, the cost per API call will decrease.</p>\n<p>For those that use Akismet on your personal sites — we’re 100% committed to offer Akismet at a price you can afford. Spam is a menace to the internet and we feel that everyone should have the ability to stop spam on their websites. Even if you’re not making money from your site, we want you to have the best spam filter available. We will continue to provide the option to pay what you can, and we thank you for helping to contribute to this project.</p>\n<p><strong>To our current customers, you don’t need to do anything now.</strong> Your plan will remain at its original price and API limits at least into 2021. If you’d like to switch plans or start a new account, your plan will start at the new price.</p>\n<p><img /></p>\n<p><strong>What’s different?</strong></p>\n<p><span>Personal</span></p>\n<p>No changes. For sites that don’t sell anything, advertise, or have affiliate links, Akismet is available for whatever amount you are able to pay.</p>\n<p><span>Plus</span></p>\n<p>Akismet will block spam on one site for up to 10,000 API calls and provide priority support for $8.33 per month billed yearly. The price for monthly billing is $10. That’s equal to two months free for selecting yearly billing.</p>\n<p><span>Enterprise</span></p>\n<p>We’re decreasing the price of our Enterprise plan! Yearly plans will now be $41.66 per month, with the total yearly cost at $500 instead of $550. For monthly billing, the price is staying the same at $50 per month. For enterprise plans, Akismet will block spam on multiple sites for up to 60,000 API calls per month, as well as provide priority support on all sites.</p>\n<p><span>Enterprise Plus</span></p>\n<p>For our largest customers, we’re happy to provide discounted pricing and dedicated support through this new plan. If your sites have more than 60,000 API calls per month, <a href=\"mailto:partners@akismet.com\">contact us</a> and we’ll be happy to set you up.</p>\n<p>Thank you for your continued support of Akismet. If you have questions specifically related to your own Akismet account or API key, then <a href=\"https://docs.akismet.com/\">please visit our Support page</a>.</p>\n<p>&nbsp;</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, 15 Sep 2020 15:59:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Josh Smith\";s: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:83:\"WPTavern: Podcasting During the Pandemic: Castos Sees 300% Growth in New Podcasters\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=102111\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:207:\"https://wptavern.com/podcasting-during-the-pandemic-castos-sees-300-growth-in-new-podcasters?utm_source=rss&utm_medium=rss&utm_campaign=podcasting-during-the-pandemic-castos-sees-300-growth-in-new-podcasters\";s: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:6841:\"<img />&ldquo;My Podcast Set I&rdquo;&nbsp;by brainblogger&nbsp;is licensed with <a href=\"https://creativecommons.org/licenses/by/2.0/\">CC BY 2.0.</a> \n\n\n\n<p>Podcasting, like many other industries during the pandemic, is seeing a strong shift over the past six months, which has resulted in more shows and fewer listeners. While some avid podcast fans have taken solace in listening to their favorite shows to stay connected, many listeners who previously had podcasts built into their routines have turned to other forms of media consumption in the absence of a daily commute.</p>\n\n\n\n<p>In April, global podcast listening was <a href=\"https://blog.voxnest.com/coronavirus-impact-on-podcast-listening/\">up 42%</a> (and 53% in Europe) as lockdowns began in the U.S. and other parts of the world. Although listening in the U.S. went down 20%, certain verticals remained strong, such as true crime, music interviews, science, medicine, religion and spirituality, and self-improvement. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">worst part of still quarantining is the fact that I don&rsquo;t drive anywhere so im super behind on my podcasts</p>&mdash; Brad Parbs (@bradparbs) <a href=\"https://twitter.com/bradparbs/status/1301571407437074433?ref_src=twsrc%5Etfw\">September 3, 2020</a></blockquote>\n</div>\n\n\n\n<p>Prior to the pandemic, the podcasting industry was experiencing a boom, with experts projecting marketers to spend <a href=\"https://www.searchenginejournal.com/marketers-will-spend-1-billion-on-podcast-advertising-by-2021-report/316499/#close\">over $1 billion in advertising by 2021</a>. The pandemic has thrown a wrench into the industry&rsquo;s growth. In the months of continued isolation and social distancing, E-marketer recorded its first contraction in time spent listening since it began tracking in 2015 but estimates a rebound in the coming years.</p>\n\n\n\n<img /><strong><em>Source:</em></strong>&nbsp;<a rel=\"noreferrer noopener\" href=\"https://www.emarketer.com/\" target=\"_blank\">eMarketer</a>, June 2020 (<a rel=\"noreferrer noopener\" href=\"https://www.emarketer.com/content/time-spent-with-podcasts-will-dip-amid-pandemic-should-rebound-by-2022?ecid=NL1001\" target=\"_blank\">https://www.emarketer.com/content/time-spent-with-podcasts-will-dip-amid-pandemic-should-rebound-by-2022?ecid=NL1001</a>)\n\n\n\n<p>The pandemic may have temporarily stunted the growth of listeners, but the team at <a href=\"https://castos.com/\">Castos</a> is witnessing a new trend emerging: individual creators and businesses are finding the time and inspiration for firing up new shows. From April until now, the podcast hosting company has seen a 300% increase in new trials, and a 102% increase in MRR over last two years. Castos currently has nearly 2,000 paying customers. </p>\n\n\n\n<p>The company started in 2017 after non-technical founder Craig Hewitt acquired the <a href=\"https://wordpress.org/plugins/seriously-simple-podcasting/\">Seriously Simple Podcasting</a> plugin from its original creator, Hugh Lashborooke.&nbsp;Hewitt expanded the platform to allow both WordPress and non-WordPress users to create podcasts, and has grown the business to support seven remote, full-time employees. He attributes most of the industry&rsquo;s fresh infusion of new shows to companies that are exploring new ways of getting into customers&rsquo; homes.</p>\n\n\n\n<p>&ldquo;Many brands are finding that traditional marketing efforts are falling short in these turbulent times, but great content that serves a specific audience always has an impact,&rdquo; Hewitt said.&nbsp;&ldquo;Many companies are pivoting from more conventional paid acquisition approaches to building stronger and longer lasting relationships with their audiences through podcasting.&rdquo;</p>\n\n\n\n<p>Hewitt said he expects the trend to continue after the pandemic subsides. Many of the companies Castos works with have reported that podcasting is likely to become a core part of their marketing efforts for the long haul, in both B2B and B2C environments. </p>\n\n\n\n<p>&ldquo;Like the move to remote work many companies are seeing that podcasting isn&rsquo;t hard to do, and provides great returns for them in terms of branding and as a top of funnel customer acquisition strategy,&rdquo; Hewitt said. &ldquo;Whether in the midst of Coronavirus or afterwards this will continue to be true and the momentum that podcasting has gained should continue.&rdquo;</p>\n\n\n\n<p>Approximately 70% of Castos&rsquo; hosting customers are using the Seriously Simple Podcasting plugin. The hosting platform is unique in the podcasting market in that it automates YouTube Republishing, transcriptions, and Headliner integration, while allowing users to manage it all via WordPress. Castos recently hired Matt Medeiros, an experienced podcaster and YouTube creator, to help new podcasters keep pushing with their shows and convert into longterm customers. He shares Hewitt&rsquo;s optimistic outlook on the future of the industry.</p>\n\n\n\n<p>&ldquo;There were early reports that podcast download stats dropped in tandem with listener commute times, but I think that opened up opportunity for creators to really capture their most loyal audiences,&rdquo; Medeiros said.</p>\n\n\n\n<p>&ldquo;The other side of that coin are the businesses that needed to stay top of mind with the customers while their doors were closed. Spinning up a podcast is a perfect way to do that. Podcasts come in all shapes and sizes, so building one that&rsquo;s tailored to your customers is what really matters and will survive through our post-pandemic &lsquo;new normal.\'&rdquo;</p>\n\n\n\n<p>Portability is the common denominator for podcasts &ndash; people are listening from their desktops, mobile devices, and smart speakers, using a variety of different apps. But audiences vary in their appetites for staying informed, educated, and entertained through the podcasting medium. Medeiros advises both new and established podcasters to find out what kind of show their customers want them to produce.</p>\n\n\n\n<p>&ldquo;Podcasts don&rsquo;t have to be cookie cutter,&rdquo; Medeiros said. &ldquo;If you spend time getting feedback from your customers or audience, you want to tailor the show around that. Do they like 15 minute news highlights or 3 hour 1-on-1 interviews? Do they want hard news or laugh out loud entertainment? What&rsquo;s in it for them as a listener? What&rsquo;s in it for you as a creator?</p>\n\n\n\n<p>&ldquo;At the end of the day, the biggest opportunity for podcasting is that it opens the door to having your favorite creators and fans in the same room every time you publish an episode. It&rsquo;s a chance to (literally) have a conversation and build trust through creative storytelling &ndash; your brand&rsquo;s digital handshake.&rdquo;&nbsp;</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, 15 Sep 2020 01:44: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: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:85:\"WPTavern: Plugin Authors Can Opt Into Email Confirmation for WordPress Plugin Updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104653\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:215:\"https://wptavern.com/plugin-authors-can-opt-into-email-confirmation-for-wordpress-plugin-updates?utm_source=rss&utm_medium=rss&utm_campaign=plugin-authors-can-opt-into-email-confirmation-for-wordpress-plugin-updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5149:\"<p class=\"has-drop-cap\">Overnight, the Meta Team for WordPress.org <a href=\"https://meta.trac.wordpress.org/changeset/10255\">flipped the switch</a> for a new plugin author feature in the official directory. It allows plugin authors to opt into confirming plugin updates via email. Release confirmations will strengthen security and make sure any updates sent in are intentional.</p>\n\n\n\n<p>Dion Hulse opened the <a href=\"https://meta.trac.wordpress.org/ticket/5352\">original ticket</a> six weeks ago with a detailed proposal and set of questions. <a href=\"https://wptavern.com/wordpress-5-5-eckstine-introduces-block-directory-block-patterns-and-automatic-updates-for-themes-and-plugins\">WordPress 5.5</a> introduced <a href=\"https://wptavern.com/automatic-theme-and-plugin-updates-slated-for-wordpress-5-5\">automatic updates</a> for plugin and theme authors. While auto-updates are completely opt-in for end-users, Hulse wanted to make sure that WordPress.org was on top of any potential disasters that may arise from the new system, such as accidental or even malicious plugin releases.</p>\n\n\n\n<p>&ldquo;I&rsquo;d like to propose that we add an extra optional step into the release flow for plugins, not intended on adding friction, but intending to ensure that plugin releases only get made when they&rsquo;re intended to,&rdquo; he wrote. &ldquo;A simple Email confirmation.&rdquo;</p>\n\n\n\n<p>At the moment, release confirmation via email is merely an opt-in feature that all plugin authors can take advantage of. However, the original proposal required it for high-usage plugins &mdash; there was never a definitive minimum install count that constituted &ldquo;high usage&rdquo; in the ticket.</p>\n\n\n\n<p>The general agreement on how this feature should work seems to be:</p>\n\n\n\n<ul><li>Opt-in for all plugin authors now.</li><li>Forced opt-in and no opt-out for high-usage plugins soon.</li><li>Opt-out for all other plugins in the future.</li></ul>\n\n\n\n<p>For larger plugins with multiple committers, there was some discussion on requiring confirmation from a separate committer who did not push the code live. This would essentially require two people to confirm that a plugin update is valid. This could potentially add to the friction that Hulse wanted to avoid in the original proposal. However, some friction for plugins with millions of installs might not always be such a bad thing. These plugins serve a massive user base and can damage WordPress&rsquo;s reputation if a malicious actor gained commit access somehow. Having two people confirm an update is <em>a good kind</em> of friction in some cases.</p>\n\n\n\n<p>However, requiring two-person confirmation is a more nuanced discussion that will need to happen. For example, Chris Christoff brought up examples in the ticket of not being able to send updates for plugins with two committers when one is on vacation or when the committers live in different time zones. Perhaps this will be an opt-in feature for plugin companies that choose to go this route in the future, depending on what fits their release flow best.</p>\n\n\n\n<p>On the whole, the current implementation is a good starting position that will allow the community to iron out further details. This is about making WordPress more secure. If there is an extra step involved in publishing a code update, plugin authors should be on board with the process. Verifying the validity of a release sounds like a common-sense security feature. I would welcome WordPress.org making this a hard requirement &mdash; neither opt-in nor opt-out &mdash; in the long run after the feature has gone through a few rounds of real-world testing.</p>\n\n\n\n<p>Theme developers do not have access to this feature at this time. However, the theme authors do not have access to SVN and must submit updates via a ZIP file. It is a much more manual process and should not be subjected to the same number of potential mishaps as plugin updates.</p>\n\n\n\n<h2>How Plugin Authors Can Enable Release Confirmation Emails</h2>\n\n\n\n<img />Enable email release confirmation form for plugin authors.\n\n\n\n<p class=\"has-drop-cap\">Plugin authors should now see a new administration option for each of their projects listed in the official plugin directory. The Danger Zone section of the Advanced View tab should display a new sub-section for enabling release confirmation emails. From there, authors merely need to click a button to turn them on.</p>\n\n\n\n<p>It is important to note that, once enabled, release confirmation emails cannot be disabled from the same screen. Plugin authors are presented with the following notice before enabling the feature:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Warning: Enabling release confirmations is intended to be a permanent action. There is no way to disable this without contacting the plugins team.</p></blockquote>\n\n\n\n<p>Do not let the warning put you off if you are a plugin author. This is a good thing. Go ahead and enable it on at least one plugin if you want to test it first. I already have done so for one of my plugins. It is a simple process and helps add one additional layer of security over your plugins.</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, 14 Sep 2020 20:34:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:90:\"WPTavern: WordPress Themes Directory Adds New “Delist” Status for Non-Compliant Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104585\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:213:\"https://wptavern.com/wordpress-themes-directory-adds-new-delist-status-for-non-compliant-themes?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-themes-directory-adds-new-delist-status-for-non-compliant-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4182:\"<p>In August, following the <a href=\"https://wptavern.com/astra-theme-suspended-and-reinstated-themes-team-works-toward-delisting-strategy-for-guideline-violations\">suspension of the popular Astra theme</a>, WordPress Meta contributors opened a ticket to add a new &ldquo;delisting&rdquo; status for non-compliant themes. Astra&rsquo;s infraction, breaking the directory&rsquo;s ban on affiliate links, put more than a million users at risk of not getting theme updates just as WordPress 5.5 was on deck for release. This week the team <a href=\"https://meta.trac.wordpress.org/changeset/10240\">committed a patch</a> for a delist status that will temporarily hide a theme from search, while still making it available directly. Alex Shiels outlined how the new status will work:</p>\n\n\n\n<ul><li>Delist is only available from a&nbsp;<code>published</code>&nbsp;state.</li><li>Relist will set the status back to&nbsp;<code>publish</code>.</li><li>Delisted themes are excluded from site search.</li></ul>\n\n\n\n<p>While a full suspension may seem like the best retributive action when theme authors violate directory guidelines, the necessity for users to be able to continue to get updates outweighs throwing the book at the author, especially for a first-time offense. A delisting policy is more restorative in that it seeks to maintain the connection that users have with the theme&rsquo;s author instead of merely imposing a penalty that might ultimately have a negative impact on everyone involved.</p>\n\n\n\n<p>In the past, the Themes Team has been limited on available actions for responding to violations. Ionut Neagu, CEO of ThemeIsle, had his company&rsquo;s popular Zerif Lite theme <a href=\"https://wptavern.com/zerif-lite-suspended-from-wordpress-theme-directory-300k-users-left-without-updates\">suspended from the directory in 2016</a> for a five-month period that left 300,000+ users without maintenance and security updates. It also resulted in a 63% decline in the company&rsquo;s revenue for that theme, since ThemeIsle was using WordPress.org as the primary channel for distribution.</p>\n\n\n\n<p>Neagu remarked on how the new &ldquo;delist&rdquo; status provides a less severe transition back into the directory for popular themes:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The practice of delisting is something that&rsquo;s already been done by other companies in similar situations. For instance, delisting is what Google does all the time when they find a website that doesn&rsquo;t comply. Then, the website is allowed to come back and appear on the ranking pages again when the issues are fixed.</p><p>In the end, I think this is a move in the right direction and an improvement to the process of what happens with a problematic theme.</p></blockquote>\n\n\n\n<p>Despite the controversial decision that slashed ThemeIsle&rsquo;s revenue from $120k/month to $45k/month in 2017, the company continued to support the theme, as well as new products, with WordPress.org as the main place to find them. Neagu reported that when the theme was reinstated, its revenue continued to be hard hit. It lost momentum and was unable to ride the wave of its initial success. Astra faired much better in the aftermath of its violation, given its short-lived suspension.</p>\n\n\n\n<p>WordPress Themes Team member Alexandru Cosmin requested the ticket for adding the delisting status receive prompt attention, as the team is set to <a href=\"https://meta.trac.wordpress.org/ticket/5362#comment:13\">introduce some new policies</a> and requirements that are tied to it. The patch was committed and then reverted temporarily to review how it impacted theme trac tickets, but the bugs appear to be unrelated to the patch.</p>\n\n\n\n<p>The volunteer Themes Team has essentially been the de facto guardians of the WordPress.org marketplace that sends millions of dollars to theme authors, and they perform a great service to the community. But in the interest of supporting and accelerating the growth of the WordPress ecosystem, the team needs to adopt policies that create a more restorative path for violators, instead of obstructing the growth of products where issues have been quickly resolved.</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, 11 Sep 2020 22:59: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: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:95:\"WPTavern: Addressing the Theme Design Problem With Gutenberg’s New Block-Based Widgets System\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104569\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:229:\"https://wptavern.com/addressing-the-theme-design-problem-with-gutenbergs-new-block-based-widgets-system?utm_source=rss&utm_medium=rss&utm_campaign=addressing-the-theme-design-problem-with-gutenbergs-new-block-based-widgets-system\";s: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:5655:\"<p class=\"has-drop-cap\">I could hardly sleep last night. Once in a blue moon, I have an idea I want to try out. While my day job as a writer means I spend far less time breaking sites through the rigorous trials and errors of building plugins and themes, some problems bug me with WordPress, the sort that keeps me from dozing into restful and peaceful dreams.</p>\n\n\n\n<p>Last week, Gutenberg 8.9 <a href=\"https://wptavern.com/gutenberg-8-9-brings-block-based-widgets-out-of-the-experimental-stage\">dropped the experimental flag</a> from its block-based widgets system. Overall, it was a solid first outing for a feature that should land in WordPress 5.6 this December. However, the largest problem centered on how theme authors would be able to style widgets in traditional fashion. Because actual widgets are being phased out and replaced with blocks, theme authors will no longer have access to the standard widget and widget title classes. This is problematic because there is no predictable way to style all widgets of a particular sidebar to look the same.</p>\n\n\n\n<p>The classic example is of the <em>boxed</em> widget design. Many themes, such as the popular <a href=\"https://wordpress.org/themes/colibri-wp/\">Colibri</a>, employ such a design for their sidebars as shown in the following screenshot.</p>\n\n\n\n<img />Boxed widget design in right sidebar of Colibri theme.\n\n\n\n<p>In its current state, there is no reliable way for theme authors to create such a sidebar design via the block-based widgets system. Because there is no way to exert any sort of control over the structure of whatever content users will drop into a sidebar, it would be easy to look at this situation and think that theme designers are losing control.</p>\n\n\n\n<p>Based on a recent <a href=\"https://github.com/WordPress/gutenberg/issues/25174\">GitHub ticket</a> and a related <a href=\"https://wordpress.slack.com/archives/C02QB2JS7/p1599661386001500\">Slack discussion</a> from earlier this week, it does not appear that the Gutenberg development team intends to create parity between the old and new widgets systems, at least as far as theme design is concerned.</p>\n\n\n\n<p>It bears repeating. I am a fervent supporter of <a href=\"https://wptavern.com/rebirth-of-creativity-gutenberg-and-the-future-of-wordpress-themes\">handing over this type of ultimate control</a> to the user. However, we need to balance that with helping them to make smart choices.</p>\n\n\n\n<p>Theme authors must begin thinking about how this impacts the work they do and come up with creative solutions for sidebars, widgets, and other areas that will be affected by full-site editing in the future.</p>\n\n\n\n<h2>A Potential Solution</h2>\n\n\n\n<p class=\"has-drop-cap\">That thing that kept me up last night was an idea of combining block patterns, <a href=\"https://wptavern.com/block-patterns-will-change-everything\">one of my favorite features</a>, with widgets. The trouble was that the block-based widgets system does not currently support block patterns. And, until a quick discussion with Mark Uraine, one of Gutenberg&rsquo;s designers, on a <a href=\"https://github.com/WordPress/gutenberg/issues/22875#issuecomment-689601857\">GitHub ticket</a>, the idea did not seem to even be on the table.</p>\n\n\n\n<p>For theme authors, the traditional sidebar and widget system of the past was nothing more than a pattern. WordPress provided theme devs with the ability to set a wrapping HTML element for the entire widget and the widget title. It was a rigid and inflexible system, but it was a reliable standard.</p>\n\n\n\n<p>Block-based widgets are the complete opposite. They are essentially a free-for-all where users can drop arbitrary content into a &ldquo;block area.&rdquo;</p>\n\n\n\n<p><em>What happens when we combine the structure of patterns with the flexibility of blocks inside of sidebars?</em></p>\n\n\n\n<p>That was the idea that got me out of bed and behind the computer screen early this morning after my restless night. It was such a simple concept. Theme authors could provide a &ldquo;widget&rdquo; pattern to their end-users. This would provide users with a choice between what the theme author thinks best and forging their own path &mdash; the best of both worlds.</p>\n\n\n\n<img />Simple example of recreating a boxed &ldquo;widget&rdquo; pattern.\n\n\n\n<p>And, here is where the beauty of the block system really comes in. Theme authors can create any number of patterns. This provides even more options for users.</p>\n\n\n\n<p>Regardless of whether the Gutenberg plugin currently supports patterns for the block-based widget system, the idea was simple to test. In a sidebar on the new widgets screen, I merely needed to add a new Group block with the <code>widget</code> class. Then, I added an H3 Heading block with the <code>widget__title</code> class. Those classes may even be unnecessary in the context of patterns unless theme authors want to directly target them. Outside of the custom classes, I added a simple background to the Group block and changed the text color of the Heading. I also inserted an empty paragraph where the user&rsquo;s custom content would go.</p>\n\n\n\n<p>Afterward, it was a simple matter of testing it with various blocks.</p>\n\n\n\n<img /><em>Faux</em> block pattern in the widgets block editor.\n\n\n\n<p>I would love to know what theme authors and the Gutenberg team think of the idea. I think it has some merit while soothing some of the transitional pains between traditional widgets and block-based widgets.</p>\n\n\n\n<p>The biggest issue I see is the discoverability aspect. Will end-users know these &ldquo;widget/block patterns&rdquo; exist if theme authors went this route?</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, 11 Sep 2020 18:56:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:72:\"WPTavern: AMP Plugin 2.0 Adds Onboarding Wizard and Expanded Reader Mode\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104487\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:189:\"https://wptavern.com/amp-plugin-2-0-adds-onboarding-wizard-and-expanded-reader-mode?utm_source=rss&utm_medium=rss&utm_campaign=amp-plugin-2-0-adds-onboarding-wizard-and-expanded-reader-mode\";s: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:4008:\"<p>The <a href=\"https://wordpress.org/plugins/amp/\">official AMP plugin for WordPress</a> recently crossed the 2.0 milestone, a major release that <a href=\"https://github.com/ampproject/amp-wp/milestone/28?closed=1\">closed 141 issues and merged 174 pull requests</a>. The release was originally planned for v1.6 but due to the number of major changes the team decided to bump it to 2.0.</p>\n\n\n\n<p>One of the most significant updates in this release is the expansion of the Reader Mode. The plugin has a lot of AMP-specific terminology associated with it and unless you are working with it every day, it&rsquo;s easy to get confused by the different modes. Standard Mode is an AMP-first site where all URLs are presented as AMP pages. Transitional Mode uses one theme but canonical non-AMP URLs may offer a separate AMP version. Reader Mode uses two themes with the active one for canonical non-AMP URLs and a separate &ldquo;Reader&rdquo; theme for AMP URLs.</p>\n\n\n\n<p>Version 2.0 introduces a new AMP Customizer for customizing the Reader theme. It loads with a mobile view and does not support widgets or homepage settings, as they are not applicable for the AMP version. The AMP Customizer makes it easy for site owners to make tweaks and changes that will only apply to the AMP version of URLs.</p>\n\n\n\n<img />\n\n\n\n<p>The Reader Mode is especially useful for sites that are not using <a href=\"https://amp-wp.org/ecosystem/themes/\">AMP-compatible themes</a>. Google engineer Weston Ruter described the expanded Reader Mode as follows:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Reader mode now allows for any AMP-compatible theme to be used to serve AMP pages, rather than just the legacy post templates. This allows for long-requested features including nav menus, logos, commenting, and template design variations. It also makes it possible to serve all URLs of a Reader-mode site in AMP, as opposed to just singular posts.&nbsp;</p></blockquote>\n\n\n\n<p>One major usability update in version 2.0 is the addition of an onboarding wizard and revamped Settings screen that guides users through the different templating modes when configuring the plugin. Users who are routed to Reader Mode will be presented with a selection of themes for serving AMP pages and the wizard will handle installation. The final step of the configuration process allows users to review their choices in a preview screen.</p>\n\n\n\n<img />\n\n\n\n<p>Given the complexity of the AMP plugin and its many configuration options, the onboarding wizard was a critical addition if the plugin is going to grow past 500,000 active installs to reach a larger number of non-technical users.</p>\n\n\n\n<p>Another notable update in this release includes a feature called &ldquo;Plugin Suppression&rdquo; that allows administrators to turn certain plugins off for AMP pages if they are causing validation errors. It also introduces mobile redirection for Transitional/Reader mode sites where AMP is intended to be the mobile version.</p>\n\n\n\n<p>AMP is still far from a plug-and-play experience for WordPress users but the plugin does a lot of the heavy lifting and is evolving towards becoming more approachable for non-technical users. To that end, the AMP plugin team just announced a new video series that will focus on success with WordPress as a content creator, as well as performance and usability.</p>\n\n\n\n<p>&ldquo;We are crafting it with an audience in mind that covers both technical and non-technical users,&rdquo; Google Developer Advocate Alberto Medina said. &ldquo;The 2.0 version of the plugin makes an emphasis on providing options for users that are non technical but still want to take advantage of AMP to bring great page experiences to their users.&rdquo; </p>\n\n\n\n<p>The series will launch next week on <a href=\"https://www.youtube.com/c/TheAMPProject\">Google&rsquo;s AMP YouTube channel</a>. Medina is also working on another series geared towards content creators that will cover topics like Web Stories in the first episodes. </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, 10 Sep 2020 22:44:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:68:\"WPTavern: Start a Recipe Blog With the Recipe Block WordPress Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104474\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:181:\"https://wptavern.com/start-a-recipe-blog-with-the-recipe-block-wordpress-plugin?utm_source=rss&utm_medium=rss&utm_campaign=start-a-recipe-blog-with-the-recipe-block-wordpress-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4468:\"<p>&ldquo;Organize your quarantine-inspired baking blog with a &lsquo;Recipe&rsquo; block!&rdquo; read the opening description of Kelly Choyce-Dwan&rsquo;s new plugin, <a href=\"https://wordpress.org/plugins/recipe-block/\">Recipe Block</a>. That was enough to pique my interest. I love food. I love baking &mdash; mostly pizza and bread. Food-related plugins and themes almost inspire me to spin up a recipe blog of my own. <em>Almost.</em></p>\n\n\n\n<p>At least with plugins like this, I can dream of building that site. Or, I can vicariously live through those who have the inclination, passion, and drive to post recipes regularly.</p>\n\n\n\n<p>For far too long, building a recipe blog has required specialized themes or overly complex plugins. I have been eagerly awaiting a simple recipe block because I have known since Day 1 of Gutenberg&rsquo;s launch that it would be well-suited to such a feature. Choyce-Dwan&rsquo;s Recipe Block plugin makes the complex simple and brings recipe-blogging to any WordPress user.</p>\n\n\n\n<h2>Using the Recipe Block</h2>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img />Recipe Block</li><li class=\"blocks-gallery-item\"><img />Cover + Recipe Block</li><li class=\"blocks-gallery-item\"><img />EditorPlus + Recipe Block</li></ul>\n\n\n\n<p class=\"has-drop-cap\">Within a couple of minutes of installing and activating the plugin, I had a quick pizza recipe set up and published on my test install. It worked well with the several themes I tested it against. I did make a couple of spacing adjustments via CSS for my personal theme, but that is not uncommon for plugins that have front-end output.</p>\n\n\n\n<p>Technically, the plugin adds four blocks:</p>\n\n\n\n<ul><li><strong>Recipe:</strong> Primary block that houses other blocks.</li><li><strong>Information:</strong> Sub-block for adding servings, time, and difficulty level.</li><li><strong>Ingredients:</strong> Sub-block for listing ingredients.</li><li><strong>Directions:</strong> Sub-block for listing directions.</li></ul>\n\n\n\n<p>The Recipe block also makes use of the core Image and Heading blocks. It is as simple to use as nearly any other block. Add the block to a post via the inserter or the <code>/recipe</code> slash command. From there, end-users can customize the output to their heart&rsquo;s content.</p>\n\n\n\n<p>Because the Recipe block itself lacks any custom colors or other stylistic options outside of wide and full-width alignment, the easiest way to spruce up the design a bit is to drop it into a Cover or Group block. Doing so provides a wider range of design options. For those users who need even more design control, Munir Kamal&rsquo;s <a href=\"https://wptavern.com/control-block-design-via-the-editorplus-wordpress-plugin\">EditorPlus plugin</a> is a nice addition when wrapping it with the Group block.</p>\n\n\n\n<p>One of the best things about the Recipe block is that it is not locked. End-users can move sub-blocks around to their liking. It even allows nesting of other blocks. Not everyone creates the exact same type of recipe cards, so it makes sense to have some extra customizability.</p>\n\n\n\n<p>The block is also flexible enough for recipes that have multiple ingredients and directions lists. <em>So, that pie and pie crust recipe you want to share?</em> No problem. You can split the ingredients and directions so that your readers are not accidentally dropping lard into the pie filling.</p>\n\n\n\n<h2>Missing Features</h2>\n\n\n\n<p class=\"has-drop-cap\">The Recipe Block plugin is by no means ideal for every situation. Some features could make it stand out a bit more. For the most part, I wanted a few additional styling options.</p>\n\n\n\n<p>Choyce-Dwan makes it clear in the plugin description that it does not support Schema or structured content. That would make a nice block option for those who want to enable it.</p>\n\n\n\n<p>I would like to be able to change the text and background color of the main Recipe block. However, this is easily done by wrapping it with the core Group block. Ultimately, I would like to have the option to add some different styles to it, such as a custom border. Such a feature should probably land in core WordPress first so that there is a standard.</p>\n\n\n\n<p>It would be nice to allow users to change the font size and colors within the Information, Ingredients, and Directions blocks similar to how the core Paragraph block works. Again, you can wrap this with the Group block and at least set the colors at a higher level.</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, 10 Sep 2020 21:00: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"WPTavern: Deque Systems to Host Axe-Con Virtual Accessibility Conference, March 10-11, 2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104433\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:223:\"https://wptavern.com/deque-systems-to-host-axe-con-virtual-accessibility-conference-march-10-11-2021?utm_source=rss&utm_medium=rss&utm_campaign=deque-systems-to-host-axe-con-virtual-accessibility-conference-march-10-11-2021\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3263:\"<p><a rel=\"noreferrer noopener\" href=\"https://www.deque.com/\" target=\"_blank\">Deque Systems</a>, a widely respected accessibility firm that has <a href=\"https://wptavern.com/wordpress-accessibility-team-to-host-hackathon-with-deque-systems-at-wordcamp-us-2018\">contributed</a> to setting up automated accessibility testing for WordPress core, will be hosting a new &ldquo;<a href=\"https://www.deque.com/axe-con/\">Axe-con</a>&rdquo; virtual conference focusing on digital accessibility. Axe-con is named for the company&rsquo;s <a href=\"https://github.com/dequelabs/axe-core\">axe-core</a> project, an open source library and accessibility testing engine that can be customized to integrate with all modern browsers and testing frameworks. It&rsquo;s happening March 10-11th, 2021, and tickets are free.</p>\n\n\n\n<p>Learning how to create accessible experiences for the web is challenging. Axe-con will bring together experts from around the world who can accelerate that journey for developers, designers, business owners, accessibility professionals, and anyone involved in the team effort required to make digital experiences accessible. The event will feature multiple tracks with a variety of topics, including sustainable accessibility, compliance, best practices, and case studies from organizations leading large-scale accessibility efforts.</p>\n\n\n\n<p>For those interested in obtaining or maintaining IAAP (International Association of Accessibility Professionals) certification, attendance at Axe-con sessions can count towards <a href=\"https://www.accessibilityassociation.org/content.asp?contentid=395\">IAAP continuing education (CE)</a> credits.</p>\n\n\n\n<p>The event will also include a hackathon where attendees will have the opportunity to network with each other while coding and collaborating on accessibility projects. A few examples include testing open source component libraries and logging issues, building new axe integrations, and working on personal projects.</p>\n\n\n\n<p>Deque Systems is hosting this new conference the same week as the CSUN Assistive Technology Conference. The company is has attended and sponsored the event in the past but sees the need for a conference focused more on building accessible digital experiences. Deque could no longer meet this need by tackling those topics in a single sponsorship room limited to 100 people. When its CSUN 2020 sessions were forced to go virtual, the team discovered that thousands were able to join in on topics more related to digital accessibility.</p>\n\n\n\n<p>Organizers anticipate that attendees will join both CSUN and axe-con in 2021. By scheduling the events in the same week, they are hoping to help attendees make more efficient use of their time that would normally be set aside for traveling to an in-person conference.</p>\n\n\n\n<p><a href=\"https://www.deque.com/axe-con/register/\">Registration</a> is open and last week organizers reported there were already <a href=\"https://twitter.com/dboudreau/status/1301610760951431168\">more than 2,000 people signed up</a>. The Call for Papers will be open until 8:00PM ET&nbsp;Friday, October 23rd, 2020, and speakers will be notified by November 23. Talks will be broadcast in the Eastern timezone but international speakers are welcome.</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, 10 Sep 2020 05:23: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: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:71:\"WPTavern: Exploring Seedlet, Automattic’s Block-First WordPress Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104405\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:179:\"https://wptavern.com/exploring-seedlet-automattics-block-first-wordpress-theme?utm_source=rss&utm_medium=rss&utm_campaign=exploring-seedlet-automattics-block-first-wordpress-theme\";s: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:5580:\"<img />\n\n\n\n<p class=\"has-drop-cap\">On August 26, Automattic <a href=\"https://wordpress.com/blog/2020/08/26/seedlet-wordpress-theme/\">launched a new theme titled Seedlet</a> that focused on integrating with the WordPress block editor. A few days later, it was also <a href=\"https://wordpress.org/themes/seedlet/\">live in the WordPress.org theme directory</a>. The theme development team wanted to produce a theme that would be in a good position to transition to full-site editing later this year as WordPress 5.6 lands.</p>\n\n\n\n<p>Seedlet makes wide use of features that integrate with the block editor. It does so in what is the simplest of ways, which is a testament to how much easier theme development is becoming in the dawn of the block-based themes era. The theme makes liberal use of theme-supported features like custom font sizes, colors, and gradients. It takes its integration an extra step by registering block styles and patterns.</p>\n\n\n\n<p>Seedlet almost feels like a skin around the block editor. It is a prime example of the future that we&rsquo;re hurtling toward, which will mean less focus on code and more focus on design configuration. Themes will not be <em>themes</em> in the traditional sense. I use the term &ldquo;skin&rdquo; because it harkens to various systems in days gone by where designers simply added CSS to skin a site. WordPress themes will always be a bit more complex than a simple stylesheet but not much more so. We will be getting back to the basics of CSS and HTML.</p>\n\n\n\n<p>That is what I see when I look through the Seedlet theme&rsquo;s code. While it still has copious PHP, there is an unmistakable structure that clearly says that that theme development is changing &mdash; and here is what it looks like as we transition.</p>\n\n\n\n<p>I have seen many themes that developers have built to work with the block editor. However, I have seen only a few that have taken a block-editor-first approach. It is almost subtle, and unless you have been neck-deep into theme development for years, you may miss it. Automattic&rsquo;s theme team is riding the winds of change. Theme authors who want to ride along should pay attention to where this project goes in the coming months.</p>\n\n\n\n<p>The one thing I do not understand is why Automattic did not choose to add the &ldquo;Block Editor Styles&rdquo; tag to the theme. It clearly adds such styles. This is a missed opportunity to help users find themes compatible with the block editor.</p>\n\n\n\n<p>The theme will not suit everyone&rsquo;s taste. It is a basic blogging theme at its core. However, its wide-open canvas makes it suitable for a variety of sites. The theme&rsquo;s typography is on point, creating a comfortable reading pace for longer-form work. There is a lot to like about the theme, but I am primarily interested in what the development team has built for the block editor.</p>\n\n\n\n<p>Kjell Reigstad, the primary designer on the theme, also <a href=\"https://themeshaper.com/2020/08/31/introducing-seedlet/\">announced the team is working</a> on a completely block-based version called <a href=\"https://github.com/Automattic/themes/tree/master/seedlet-blocks\">Seedlet Blocks</a>. The current plan is to continue iterating on it and launching it as a separate, standalone theme in the future.</p>\n\n\n\n<h2>Experimenting With Block Patterns</h2>\n\n\n\n<p class=\"has-drop-cap\">While Seedlet includes only three block patterns, they immediately stood out to me. The patterns are not overly complex, but they are unique designs that make use of core blocks with a mixture of the theme&rsquo;s presets, such as custom gradients and block styles.</p>\n\n\n\n<p>The &ldquo;Group with Split Background&rdquo; pattern uses a Group block with the theme&rsquo;s preset diagonal gradient to create a background for an Image block. It is not a particularly groundbreaking design. However, the beauty is in the simplicity. It shows that theme authors can create interesting designs without adding extra CSS code.</p>\n\n\n\n<img />Group with Split Background pattern in the editor.\n\n\n\n<p>The theme&rsquo;s &ldquo;Group with Image Overlap&rdquo; pattern kicks it up a notch in complexity. Starting with the same concept of a Group block with another custom gradient preset, it throws in a Columns block. In the left column, users can add two images, stacked. In the right column, users can add one image. The end result is a custom layout &mdash; primarily because of the gradient background &mdash; where the two images from the left column overlap the solid background.</p>\n\n\n\n<img />Front-end output of the Group with Image Overlap pattern.\n\n\n\n<p>The technique is simple in terms of code, but it takes a good designer to create the concept. We are just now scratching the surface of what theme designers will be able to accomplish when they begin thinking about applying various techniques to the block system. Seedlet has some of that sort of outside-the-box thinking with its use of gradients. We need to see more of that from the theming community.</p>\n\n\n\n<p>Admittedly, I am not a fan of the third pattern the theme adds. &ldquo;Alternating Grid of Latest Posts&rdquo; inserts the Latest Posts block into the editor with the theme&rsquo;s custom &ldquo;Alternating Grid&rdquo; style. Mostly, I just do not care for the layout, but that is simply based on my personal taste.</p>\n\n\n\n<img />Alternating Grid of Latest Posts pattern in the editor.\n\n\n\n<p>On the whole, I love what the theme is doing with block patterns. This type of exploration is exactly what the WordPress community needs right now.</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, 09 Sep 2020 21:10: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"WPTavern: Jetpack Launches Email Marketing Tools with Creative Mail Integration, WooCommerce-Triggered Store Emails Coming Soon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104350\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:297:\"https://wptavern.com/jetpack-launches-email-marketing-tools-with-creative-mail-integration-woocommerce-triggered-store-emails-coming-soon?utm_source=rss&utm_medium=rss&utm_campaign=jetpack-launches-email-marketing-tools-with-creative-mail-integration-woocommerce-triggered-store-emails-coming-soon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6173:\"<p>Jetpack is firing up a new suite of email marketing tools in partnership with Endurance International Group&rsquo;s Constant Contact brand. Last week <a href=\"https://wptavern.com/jetpack-8-9-adds-donations-block-newsletter-form-and-social-previews\">version 8.9</a> of the plugin introduced a new newsletter signup form inside its Form block, based on an integration with the <a href=\"https://wordpress.org/plugins/creative-mail-by-constant-contact/\">Creative Mail</a> plugin that Constant Contact recently launched as a solution tailored specifically to WordPress and WooCommerce. </p>\n\n\n\n<img />\n\n\n\n<p>The release post highlighted the ability to add WordPress posts and WooCommerce products into email marketing campaigns, but today the Jetpack team <a href=\"https://jetpack.com/2020/09/08/introducing-creative-mail-for-jetpack/\">elaborated</a> on where they are taking the integration. The features Creative Mail has on deck for future releases are heavily geared towards e-commerce stores. The initial launch includes the ability for store owners to sync their contacts to their email lists in order to market to them directly. Curt Raffi, Senior VP of Product Innovation at EIG, said WooCommerce-triggered store emails are on the way.</p>\n\n\n\n<p>&ldquo;Soon, we&rsquo;ll add automated customer lifecycle marketing journeys that are geared toward more advanced marketers and eCommerce seller,&rdquo; Raffi said. The planned features include the following: </p>\n\n\n\n<ul><li>Create triggered, multi-step customer lifecycle marketing journeys</li><li>Send WooCommerce abandoned cart emails</li><li>Send post-purchase follow-up emails</li><li>Send emails about related products</li></ul>\n\n\n\n<p>Email marketing is a critical piece of the puzzle for online store owners looking to connect to customers, as they adapt to the pandemic with reduced foot traffic for brick and mortar locations. Stats from Campaign Monitor show that email send volumes <a href=\"https://www.campaignmonitor.com/blog/email-marketing/2020/05/best-times-to-send-email-during-2020-pandemic/\">increased by 31%</a> for a random selection of their customers with mid-sized email lists during the 30-day period after March 17 versus the 30 days prior to that. Despite a sizeable increase in send volumes, average open rates for these decreased only slightly, from 31% to 30%, while click-through rates remained the same at 4%. </p>\n\n\n\n<p>Even with all the perfunctory messages acknowledging &ldquo;these uncertain times,&rdquo; email is still an important channel for reaching customers. As social networks are becoming increasingly hostile and unfavorable environments for advertising, email stands as one of the few remaining direct lines where content won&rsquo;t get instantly buried by potential customers doomscrolling their news feeds.</p>\n\n\n\n<p>Automattic CEO Matt Mullenweg commented on Twitter last month about the value of having a follower&rsquo;s email address vs a connection on a social network. &ldquo;So many of these people with newsletters should really be blogging,&rdquo; Mullenweg said.</p>\n\n\n\n<p>&ldquo;I do think that a follower you have an email address of and a direct relationship with is worth 1,000x a follower on a social network. Maybe it&rsquo;s just about making things more website-first than email-first, especially for younger audiences that don&rsquo;t use email.&rdquo;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Jetpack needs to make it much easier to blog and newsletter at the same time :)</p>&mdash; Stephane Boisvert (@stephBoisvert) <a href=\"https://twitter.com/stephBoisvert/status/1295794679754174464?ref_src=twsrc%5Etfw\">August 18, 2020</a></blockquote>\n</div>\n\n\n\n<p>One response to his tweet caught my attention &ndash; a suggestion that Jetpack make it more convenient to manage a website-first solution for email marketing. It looks like this idea was already in the works with Creative Mail and the Constant Contact partnership.</p>\n\n\n\n<p>Although Constant Contact already had an <a href=\"https://wordpress.org/plugins/constant-contact-forms/\">official plugin</a> for WordPress, it only has 40,000 installs. Compare that with MailChimp, which is far and away the <a href=\"https://www.datanyze.com/market-share/email-marketing--13/mailchimp-market-share\">market leader</a> when it comes to email marking providers. Mailchimp has many third-party plugins for WordPress, which collectively have more than a million users, including an official <a href=\"https://wordpress.org/plugins/mailchimp-for-woocommerce/\">Mailchimp for WooCommerce</a> plugin, with 800k+ active installs. Constant Contact stands to have a better chance penetrating the WordPress market by partnering with a highly successful plugin like Jetpack.</p>\n\n\n\n<p>Email marketing is not an easy plugin niche to break into, which is evident by the slow growth of newcomers like <a href=\"https://wordpress.org/plugins/newsletter-glue/\">Newsletter Glue</a>. The plugin is marketed as a <a href=\"https://mattreport.com/building-a-substack-alternative-with-wordpress/\">Substack alternative</a>, with its &ldquo;Send as newsletter&rdquo; feature inside the WordPress editor. It connects to different emails services, provides easy-to-share past issues, and creates a search engine-friendly newsletter archive. Despite all the promotion and buzz on social networks, the plugin only has ~30 active installs after one month in the official directory.</p>\n\n\n\n<p>With its deep integration with Jetpack and WooCommerce, Creative Mail has the chance to quickly become a contender among established WordPress email marketing plugins like <a href=\"https://wordpress.org/plugins/mailchimp-for-wp/\">MC4WP: Mailchimp for WordPress</a> (1 million+ installs), <a href=\"https://wordpress.org/plugins/mailpoet/\">MailPoet</a> (100k), <a href=\"https://wordpress.org/plugins/email-subscribers/\">Email Subscribers</a> (100k), and <a href=\"https://wordpress.org/plugins/newsletter/\">Newsletter</a> (300k). Creative Mail has a broader scope of features that it will be supporting, but it may be able to find success on the basis of Jetpack&rsquo;s ubiquity.</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, 09 Sep 2020 05:20:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:66:\"WPTavern: More Power in the Hands of WordPress Support Forum Users\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104352\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:177:\"https://wptavern.com/more-power-in-the-hands-of-wordpress-support-forum-users?utm_source=rss&utm_medium=rss&utm_campaign=more-power-in-the-hands-of-wordpress-support-forum-users\";s: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:6013:\"<p class=\"has-drop-cap\"><em>What level of control should users have over their WordPress support forum topics?</em> That is the question at the heart of a <a href=\"https://make.wordpress.org/support/2020/09/talking-point-allowing-self-archival-of-topics/\">recent discussion opened</a> by Mika Epstein on the Make Support blog. The goal is to grant more power to users, particularly when they post private or privileged information to the public forums.</p>\n\n\n\n<p>The proposal is twofold. One idea is to give users total control over deleting or &ldquo;archiving&rdquo; topics they create. This would remove it from public view at least. The second part of the equation would extend the amount of time users have to edit their topics.</p>\n\n\n\n<p>Currently, users can edit topics for one hour after posting. For the most part, this is reasonable. However, there are some cases where users inadvertently post sensitive data and need to remove it later. After their hour is up, the only solution for editing is to contact a forum moderator, increasing the burden on the WordPress support team. The easiest solution is to increase the length of time to edit.</p>\n\n\n\n<p>The big downside to editing topics is that they can be changed so much that replies are out of context. This can make discussions, particularly, lengthier ones with more replies, hard to follow. However, given the nature of the WordPress forums being for support instead of long-form discussion, increasing the time-to-edit should not hurt. It should help users fix mistakes and lighten the load on forum moderators. There are proposals for increasing the limit between three to seven days.</p>\n\n\n\n<p>In general, I am supportive of increasing the time-to-edit for forum topics. There is some room for abuse of the system, but such abuse will not likely outweigh the benefits. However, the ability to delete a topic does not sit well with me.</p>\n\n\n\n<p>I see the problem. WordPress&rsquo;s user base has changed over the past decade. The average user from 10 years ago was tech-savvy enough to not drop private info &mdash; or info they are not legally allowed to share &mdash; into public forums. The game has changed. Users are no longer webmasters, running every aspect of their sites. They are using one-click installs to launch software they have no technical knowledge of. They do not know the difference between a debug log and server info. This is not a bad thing &mdash; the more WordPress users the more we inch toward that democratize-publishing goal. However, the makeup of WordPress&rsquo;s users has shifted drastically to a point where many may not realize they are posting information they shouldn&rsquo;t.</p>\n\n\n\n<p>The burden ultimately falls on forum moderators. They do all the cleanup, and it is likely overwhelming at times to keep up. It is a decision that should probably fall into their hands.</p>\n\n\n\n<p>One of the catalysts for this discussion was a forum topic from last week. &ldquo;Someone had posted information that isn&rsquo;t exactly &lsquo;private&rsquo; but could land them in legal trouble for sharing,&rdquo; wrote Epstein. &ldquo;They did so by posting a debug log that had information that probably should not be public.&rdquo;</p>\n\n\n\n<p>The WordPress support system has had a long-standing, in-house rule of not deleting posts except under extreme circumstances. However, the proposal would allow users to delete their own topics at any time.</p>\n\n\n\n<p>I dislike the idea of removing support forum topics. The best form of support is to already have a question answered. This gives others the ability to search and find the answer to their own questions. It allows moderators to link to existing answers for repeat questions. Allowing users to remove topics means that others could miss out on free knowledge.</p>\n\n\n\n<p>I ran a plugin and theme support forum for over a decade. It racked up hundreds of thousands of posts. I personally answered every question or made sure that each was answered by someone else. Over the years, the forums became a wealth of knowledge because, except in those extreme circumstances, no topic was ever deleted. Granted, my support burden was far lighter than that of the WordPress support moderators. However, past forum topics were an important tool in the arsenal.</p>\n\n\n\n<p>Moreso than my time running support, I have relied on past support forum topics for my edification throughout the years. Rarely has there been a time I have needed an answer that I could not find through a basic support search. No need to hassle others with my already-answered questions.</p>\n\n\n\n<p>I dislike the idea of deleting knowledge.</p>\n\n\n\n<p>Of course, we must weigh this against privacy. I doubt many users would take advantage of the ability to delete their topics. In those rare cases when they do, I imagine they will have a good reason for doing so, such as hiding information they no longer want to share publicly. Still, the idea does not sit well with me. I want a balance of retaining knowledge while removing personal data.</p>\n\n\n\n<p>I do have respect for privacy. There are steps WordPress.org could take. Users should absolutely be able to remove their own accounts from WordPress.org. Currently, they can remove any personal data from their profile, which is essentially the same thing. The one problem with this is if their username, which cannot be changed, identifies the person (e.g., I use <code>justintadlock</code> for many online accounts).</p>\n\n\n\n<p>I would still take this the extra step and allow users to completely delete their accounts. This would be a clean sweep, ensuring they did not accidentally miss something when clearing out their profile. After doing so, their former topics in the forums should simply be assigned to an anonymous account. It doesn&rsquo;t matter who created a particular topic, only that the content still exists.</p>\n\n\n\n<p>What steps do you think WordPress.org should take to provide end-users more agency over their support topics?</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, 08 Sep 2020 21:24:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:94:\"WPTavern: iThemes Enters the WordPress Membership Plugin Market, Acquires Restrict Content Pro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104095\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:231:\"https://wptavern.com/ithemes-enters-the-wordpress-membership-plugin-market-acquires-restrict-content-pro?utm_source=rss&utm_medium=rss&utm_campaign=ithemes-enters-the-wordpress-membership-plugin-market-acquires-restrict-content-pro\";s: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:6902:\"<p class=\"has-drop-cap\">Last Tuesday, iThemes announced it had <a href=\"https://ithemes.com/restrict-content-pro-is-joining-ithemes-family/\">acquired the Restrict Content Pro plugin</a> from Sandhills Development. iThemes is part of the Liquid Web family of brands.  Pippin Williamson, Managing Director at Sandhills, said the company had no <a href=\"https://sandhillsdev.com/2020/09/a-long-bright-future-for-restrict-content-pro-with-ithemes-and-liquid-web/\">intention of selling the plugin</a> last October when talks of the acquisition began. However, moving forward has created some opportunities for his company and narrowed its focus to its existing products.</p>\n\n\n\n<p><a href=\"https://restrictcontentpro.com/\">Restrict Content Pro</a> will remain an independent product with its own website. However, iThemes will include it as part of its Plugin Suite and Toolkit product bundles from the iThemes website. The Plugin Suite bundle runs at $249 per year, which is the same as the regular Restrict Content Pro price. However, the bundle includes other products such as the company&rsquo;s popular BackupBuddy plugin. The Toolkit bundle runs between $700 and $997 per year. It includes the Plugin Suite, a themes package, training, and more.</p>\n\n\n\n<p>This structuring of product sites falls directly within the company&rsquo;s long-term plans. &ldquo;Earlier this year we actually started down a number of avenues experimenting with moving some of our products off ithemes.com and over to their own sites,&rdquo; said AJ Morris, the Product Innovation and Marketing Manager at iThemes. &ldquo;When COVID became a pandemic, we paused a lot of those projects to provide relief and help to the WordPress community. Now that things have calmed down for us a bit, we&rsquo;re going to continue on that path.&rdquo;</p>\n\n\n\n<p>Outside of the change of ownership, end-users should not see much change with the plugin or the site. Users should expect some admin-side changes in the future as the new development team refreshes the plugin.</p>\n\n\n\n<h2>The Membership Plugin Space</h2>\n\n\n\n<p class=\"has-drop-cap\">Membership plugins represent a slice of the overall WordPress market that still has no true dominant player. There are several solutions out there, but it is still an emerging area that any company can dive into and see returns on with a solid product. It is a niche that will undoubtedly continue growing along with WordPress and has plenty of untrodden ground just waiting for the right people to take their first steps across. There will always be a need for more fine-tuned control over users and permissions than what WordPress offers out of the box. </p>\n\n\n\n<p>&ldquo;We are always in the market looking at other plugins that make sense for our business,&rdquo; said Morris of why they made the acquisition. &ldquo;Our audience is primarily freelance developers that are building a wide range of sites for clients. Over the years, we&rsquo;ve focused on a number of non-utility products (like iThemes Exchange) and we learned a lot during that time. We&rsquo;ve also learned a lot over the years of running our own membership site. For us looking at a membership plugin played with into the iThemes strategy and really the Liquid Web strategy as a whole.&rdquo;</p>\n\n\n\n<p>I spent nine years developing and maintaining a membership-related plugin but sold it in 2019. If there is one lesson I learned during that time, it&rsquo;s that no two sites have the exact same membership needs. There is always room for individual companies to build a product that meets specific user needs in the membership space.</p>\n\n\n\n<p>&ldquo;What I feel like is everyone is currently trying to create the best Swiss Army knife,&rdquo; said Morris. &ldquo;I don&rsquo;t think that anyone sets out saying I want to be good at all things, but when you&rsquo;re developing a plugin that has so much possibilities for the market it serves, you have to feel out where you want to play and claim stake to that area. You become the best you can in that area and work at making sure you succeed there. Then you can start to properly branch out to other segments of the space that are within close proximity to where your core is.&rdquo;</p>\n\n\n\n<p>iThemes is stepping into the game at an ideal time. Restrict Content Pro is currently a $500,000+ per year product, according to Williamson. In the right hands and with continued growth, it could become the go-to solution for memberships in the WordPress ecosystem. iThemes has a solid history in the plugin space. This is a good opportunity to see where they take the project.</p>\n\n\n\n<h2>The Future of Restrict Content Pro</h2>\n\n\n\n<p class=\"has-drop-cap\">Morris said that Sandhills Dev already had a solid short to mid-term plan for the plugin. These plans are providing iThemes with a head-start on features and ideas, some of which are already in progress. The team&rsquo;s plan is to continue down this path, which matches some of the areas the company wanted to address.</p>\n\n\n\n<p>&ldquo;After that, we&rsquo;ve got some ideas, but we also want to get to know the community around Restrict Content Pro,&rdquo; said Morris. &ldquo;[Matt Danner] has mentioned in several places that the RCP community is more developer-centric while the iThemes community is historically not. Right now we&rsquo;re in listening mode. We&rsquo;re starting conversations all over the web with RCP customers to get a sense of what they are looking at and apply those learnings with where we want to take RCP in the membership space. Right now, I think it&rsquo;s a bit premature to talk about specific features we&rsquo;re including or what direction we&rsquo;re fully going.&rdquo;</p>\n\n\n\n<p>The one area that is currently lacking is the free <a href=\"https://wordpress.org/plugins/restrict-content/\">Restrict Content plugin</a>. Its user base is still relatively small (10,000 active installs). Its average 3.7 star-rating from end-users does not spell confidence, but it could be brought up with some active work.</p>\n\n\n\n<p>Restrict Content Pro has long had the benefit of being associated with Williamson and Sandhills Development&rsquo;s other products like Easy Digital Downloads and AffiliateWP. All of these projects fit well together &mdash; often a user of one plugin needs at least one of the others. The pro plugin has likely not relied on the traffic from WordPress.org for success. However, it would not hurt to bring those numbers up. While the install count from the free version does not always directly correlate to success with commercial versions, it is usually a good indicator. Putting some resources behind beefing up the free plugin could translate to better returns in the long term.</p>\n\n\n\n<p>Morris said that iThemes will be sharing news about the free Restrict Content plugin soon. However, he is remaining tight-lipped about what those plans are for now.</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, 07 Sep 2020 21:35:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:55:\"WP Mobile Apps: Where are the rest of the post options?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://apps.wordpress.com/?p=4148\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://apps.wordpress.com/2020/09/06/where-are-the-rest-of-the-post-options/\";s: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:442:\"<p>When you are making a new post or editing the existing one, click on the &#8220;Options&#8221; button in the top right that looks like this:</p>\n<p><img /></p>\n<p>That will open the menu shown below:</p>\n<p><img /></p>\n<p>Click on &#8220;Post Settings&#8221; to see the settings for your post. Inside the &#8220;Post Settings&#8221;, you can set tags and categories, add a featured image, set a publish date,  and more.</p>\n<p><img /></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, 06 Sep 2020 16:41:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"logosom\";s: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:41:\"WP Mobile Apps: How do I make a new 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://apps.wordpress.com/?p=4145\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://apps.wordpress.com/2020/09/06/how-do-i-make-a-new-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:453:\"<p>To make a new page, tap the <img /> icon and select your site, select “Pages” in the Android Dashboard, then tap the <img /> icon in the bottom-right corner. You can edit any page by selecting it from the “Pages” screen.If you are looking for your drafts or your scheduled pages, check the menu across the top of the page and select the &#8220;Drafts&#8221; or &#8220;Scheduled&#8221; tab to access the list of the pages.</p>\n<p><img /></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, 06 Sep 2020 15:53: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:7:\"logosom\";s: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:41:\"WP Mobile Apps: How do I make a new Post?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://apps.wordpress.com/?p=4136\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://apps.wordpress.com/2020/09/06/how-do-i-make-a-new-post/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:565:\"<p>To make a new post, tap the <img /> icon and select your site, select “Blog Posts” in the Android Dashboard, then tap the <img />icon in the bottom-right corner. You can edit any post by selecting it from the “Blog Posts” screen.  If you are looking for your drafts or your scheduled posts, check the menu across the top of the page and select the &#8220;Drafts&#8221; or &#8220;Scheduled&#8221; tab to access the list of the posts.</p>\n<p><img src=\"https://apps.files.wordpress.com/2019/10/screen-shot-2019-10-09-at-15.10.06.png?w=640&h=1021\" /></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, 06 Sep 2020 15:47: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:7:\"logosom\";s: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:97:\"WPTavern: WordPress Support Team Seeks to Curb Support Requests for Commercial Plugins and Themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104255\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:239:\"https://wptavern.com/wordpress-support-team-seeks-to-curb-support-requests-for-commercial-plugins-and-themes?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-support-team-seeks-to-curb-support-requests-for-commercial-plugins-and-themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7049:\"<img />\n\n\n\n<p>WordPress&rsquo; Support Team contributors are <a href=\"https://make.wordpress.org/support/2020/09/talking-point-handling-support-for-commercial-users-on-the-wordpress-forums/\">discussing</a> how they can curb support requests for commercial products on the official WordPress.org forums. Users sometimes seek help for commercial product upgrades on the forums of the free version, not knowing that the moderators&rsquo; official policy is to refer them to the extension&rsquo;s commercial support channel. In other instances, it is not immediately clear whether the issue is with the free version or a paid upgrade that the user has installed. </p>\n\n\n\n<p>&ldquo;This has come up a few times the past weeks, mostly in relation to plugins that have a free base product on&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http://wordpress.org/\">WordPress.org</a>, but sell addons on their own site, and where the line is drawn on who can get supported where,&rdquo; WordPress contributor Marius Jensen said during the team&rsquo;s most recent meeting. &ldquo;Authors are not allowed to support their paid products on&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http://wordpress.org/\">WordPress.org</a>&nbsp;as is, but where do you draw the line, for example, when a base plugin causes issues with a paid addon, should then support be allowed for the base product on&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http://wordpress.org/\">WordPress.org</a>, since that&rsquo;s the root issue, or should it be shipped off to the author&rsquo;s own site, since it affects a paying user?&rdquo;</p>\n\n\n\n<p>This type of issue is common among products where WordPress.org is the main distribution channel for a popular free theme or plugin. The support relationship between the free and commercial products often intersects in an ambiguous way.</p>\n\n\n\n<p>&ldquo;The goal is to ensure that paying customers and free users get the best support they can, from the ones that can give it,&rdquo; Jensen said. Volunteers do not have access to the commercial products, nor is it their job to support them. This is the crux of the matter.</p>\n\n\n\n<p>&ldquo;It&rsquo;s an unacceptable misuse of volunteers time to support a product someone else has been paid to support,&rdquo; Jensen said.</p>\n\n\n\n<p>Contributors discussed how they can handle different scenarios where it&rsquo;s unclear where the root of the problem is, in order to move the burden away from the support moderators, allowing the extension&rsquo;s author to discern if the problem is with the free version or commercial add-on. Volunteers should not have to familiarize themselves with the minute distinctions between the features that are offered for free or as an upgrade.</p>\n\n\n\n<p>On the other side of these support scenarios, where it isn&rsquo;t clear where the problem originates, plugin and theme authors can be inconvenienced when support topics are hastily closed.</p>\n\n\n\n<p>&ldquo;It&rsquo;s just that the closing of topics seems counter productive for those (users and devs alike) that get it wrong,&rdquo; plugin developer Arnan de Gans said. &ldquo;Since&nbsp;plugin/theme makers do not have any control over these forums we can&rsquo;t do a thing after topics get closed. Which works against the user experience by creating confusion.&rdquo; He suggested the team consider a grace period where the developer has a day or two to respond.</p>\n\n\n\n<p>Ben Meredith, head of support for a freemium&nbsp;plugin, chimed in on the discussion, urging the support team to consider how closing issues can sometimes create a bad user experience:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p> An issue related to premium products is raised, and summarily closed by forum mods for being about a premium product. This creates a &ldquo;googleable&rdquo; record of the error message/problem that then attracts other visitors. Once the issue has been closed, we get copy-cat issues &ldquo;I am having the same problem (link to closed post)&rdquo; We get those replies in both followup forum posts and internal tickets. To the layperson who has no idea the distinction between &ldquo;WordPress&nbsp;core&nbsp;volunteer&rdquo; and &ldquo;Company I just paid money to,&rdquo; this creates a bad experience all around.</p><p>Premium users are treated like second-class citizens on the forums. They don&rsquo;t know the guidelines, and reached out for help. This may be their first interaction with the WordPress community, and sometimes a well-meaning forum moderator can come across as wrist-slapping the exact people we want to give white-glove service to (they just paid us!).</p></blockquote>\n\n\n\n<p>Michelle Frechette, Head of Customer Success at GiveWP, also shared this sentiment regarding the user experience. </p>\n\n\n\n<p>&ldquo;Something I&rsquo;m not seeing addressed much here is how alienating it can feel to be corrected by the mods (or even the&nbsp;plugin&nbsp;authors) to be directed from the forums back to the paid support page,&rdquo; she said. </p>\n\n\n\n<p>Ben Meredith said that despite sticky posts telling users not to post questions about commercial products, notes in the readme file, website notices, and canned replies, users will inevitably end up posting in the forums anyway. Steering them away to commercial support channels should be done in a way that does not make seeking help on WordPress.org an unwelcoming experience.</p>\n\n\n\n<p>&ldquo;I want for the forums to feel as welcoming as a&nbsp;WordCamp,&rdquo; Meredith said.</p>\n\n\n\n<p>&ldquo;The current enforcement of the &lsquo;premium plugins can&rsquo;t get support here&rsquo; is not in line with that overarching goal: users using and enjoying WordPress. Currently, premium users (who are potential community members and community leaders!) are getting a first impression of the community that is &lsquo;You&rsquo;re doing it wrong!&rsquo;</p>\n\n\n\n<p>&ldquo;I&rsquo;d rather their first impression be &lsquo;Happy to help! heads up, for questions like this in the future, we need you to go here.\'&rdquo;</p>\n\n\n\n<p>In trying to ease the burden placed on volunteer support forum moderators, it&rsquo;s important to consider how any new policy might also negatively impact developers hosting their plugins and themes on WordPress.org, and what kind of vibe the response gives to users in search of help. There are more suggestions for solutions in the comments on the post, and the discussion is open until&nbsp;<a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20200913T0000\">Saturday, September 12, 2020, 07:00 PM CDT</a>. The Support Team is seeking to get a wider range of viewpoints from plugin and theme authors before making a final decision on new guidelines for addressing requests for support on commercial products. Make sure to <a href=\"https://make.wordpress.org/support/2020/09/talking-point-handling-support-for-commercial-users-on-the-wordpress-forums/\">jump in on the comments</a> within the next week if you have something to add to the discussion.</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, 05 Sep 2020 02:03:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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: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:80:\"WPTavern: Gutenberg 8.9 Brings Block-Based Widgets Out of the Experimental Stage\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104238\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:205:\"https://wptavern.com/gutenberg-8-9-brings-block-based-widgets-out-of-the-experimental-stage?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-8-9-brings-block-based-widgets-out-of-the-experimental-stage\";s: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:6765:\"<p class=\"has-drop-cap\">On Wednesday, September 2, <a href=\"https://make.wordpress.org/core/2020/09/03/whats-new-in-gutenberg-2-september/\">Gutenberg 8.9 launched</a> with a set of new features, enhancements, and several bug fixes. The development team took the block-based widgets system out of its experimental stage, making it the default experience for all plugin users.</p>\n\n\n\n<p>Block-based widgets have taken months upon months of work. The team has surpassed some of my expectations by essentially sticking a square peg into a square hole, granting the power of blocks to the sidebars/widgets system. On the whole, the system works. However, the team still has a lot of work to mold this feature into the shape it needs to be in for the upcoming WordPress 5.6 release in December. It is important that the community at large test, provide feedback, and contribute where possible.</p>\n\n\n\n<p>Gutenberg plugin users who have not yet enabled block-based widgets via the experiments screen in past versions will be in for a surprise. The new system will have some of the familiarity of the block editor. However, it is a much different experience than traditional widgets.</p>\n\n\n\n<p>The big questions we must answer is whether the feature is currently usable and whether it can be ready for WordPress 5.6.</p>\n\n\n\n<h2>New Widgets Screen</h2>\n\n\n\n<img />Block-based widgets screen.\n\n\n\n<p class=\"has-drop-cap\">Gutenberg completely replaces the old Appearance &gt; Widgets screen in the WordPress admin. The plugin no longer has an option for end-users to disable it, which was expected. The goal is to begin getting users accustomed to building their sidebars with blocks rather than traditional widgets.</p>\n\n\n\n<p>For the most part, the new widgets screen handles block-based widgets without issue from a usability perspective. Adding blocks is little different from working with the post-editing screen. It should feel relatively natural for users who are accustomed to the block editor. If anything, the experience seems scaled down in comparison.</p>\n\n\n\n<p>Unlike widgets in the past, blocks cannot be collapsed (the sidebars themselves can be). As a long-time WordPress user, this feels uncomfortable. However, it is the sort of uncomfortableness that will simply take some adjustment time.</p>\n\n\n\n<p>Core legacy widgets worked well. However, I could not get legacy widgets to work from several third-party plugins. Sometimes, they disappeared from the editor. Then, they would later appear, seemingly at random. Eventually, during testing, I completely broke the page to the point where it did not display anything. Fortunately, I was able to fix it by clearing out a few widget-related rows from the database.</p>\n\n\n\n<p>As a developer, I want to simply wipe the slate clean and leave the old widgets system in the dust of history. However, doing so may very well alienate many end-users. For this feature to be successful, we need to carry them along and allow them to easily transition from their current tools to the new system.</p>\n\n\n\n<h2>Widget Blocks in the Customizer</h2>\n\n\n\n<img />Widget blocks section in the customizer.\n\n\n\n<p class=\"has-drop-cap\">While the primary widget blocks screen was generally solid, that was not the case with widget blocks in the customizer. At best, it was sub-par.</p>\n\n\n\n<p>We may finally be at that point where I agree with all those earlier complaints of the customizer control panel being too narrow. The most obvious issue was that the block toolbar was too wide for the control panel, hiding pieces of it off-screen. For some blocks, there are buttons that users cannot access.</p>\n\n\n\n<p>That is not the end of the issues. Block options are unavailable, so users cannot even add something as basic as an image alt attribute. The core legacy widget blocks are not editable. The &ldquo;more options&rdquo; button popup has a transparent background, making the text unreadable and, for all intents and purposes, not worth attempting a use.</p>\n\n\n\n<p>I understand that WordPress is still far from launching widget blocks in the customizer, but the feature was practically unusable. It is still very much in an experimental state and probably should have remained optional for another plugin update or two or three. I cannot recommend using this within any sort of production environment. Stick with the widgets screen in the admin.</p>\n\n\n\n<h2>Widgets/Blocks Styling Issues for Theme Authors</h2>\n\n\n\n<img />No structured grouping of &ldquo;widget&rdquo; HTML.\n\n\n\n<p class=\"has-drop-cap\">One of the largest changes that theme authors need to be aware of is that blocks in sidebars do not have the typical widget HTML wrappers. This could present some issues with styling widgets in the traditional fashion. For example, themes usually register a widget wrapper element and a wrapper for the widget title. This allows theme authors to build consistent styles for each widget. With blocks, this becomes much tougher because the theme author loses that control &mdash; this control is passed to the end-user.</p>\n\n\n\n<p>The great part of this system is that users can do some really interesting things and have the flexibility to style their sidebars in any way they want. The bad part is that if a theme author has any sort of intricate styles, such as a boxed widget design, there is no easy way for the end-user to simply drop <em>widgets</em> into place and have them all use that boxed design. There is no standard class name for the theme author to target with CSS, which is what is required for consistently-styled widgets.</p>\n\n\n\n<p>This is not necessarily a good or bad thing in and of itself. It is simply different.</p>\n\n\n\n<p>With that said, I would have much preferred the Gutenberg development team created a new and separate system from the old sidebars/widgets system. Leave that in place, then build and promote &ldquo;block areas&rdquo; as a new system for theme authors to take advantage of. In the long run, it would allow theme authors to make the transition and even potentially support both systems in their themes. Theme authors are down in the trenches, working with their users on a day-to-day basis. They are in a much better position to handle the transition from old to new.</p>\n\n\n\n<p>Theme authors who are not prepared to go <em>all in</em> with block-based widgets in WordPress 5.6 can add the following line of PHP to their theme&rsquo;s setup code to disable the widgets block editor:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>remove_theme_support( \'widgets-block-editor\' );</code></pre>\n\n\n\n<p>Over time, theme authors will want to fully transition to the new system. However, this will provide additional time for them to make any adjustments that may be needed with how widgets are handled.</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, 04 Sep 2020 17:05: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:97:\"WPTavern: Sunlit 3.0 for iOS Released, Featuring New Post Editor and Improved Discovery Interface\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=103996\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:237:\"https://wptavern.com/sunlit-3-0-for-ios-released-featuring-new-post-editor-and-improved-discovery-interface?utm_source=rss&utm_medium=rss&utm_campaign=sunlit-3-0-for-ios-released-featuring-new-post-editor-and-improved-discovery-interface\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3794:\"<p><a href=\"https://sunlit.io/\">Sunlit</a> 3.0 was released this week and is now <a href=\"https://apps.apple.com/us/app/sunlit/id1334727769\">available in the App Store</a>. The free photoblogging app is a companion app to the <a href=\"https://micro.blog/\">Micro.blog</a> indie microblogging platform. Sunlit has some similarities to Instagram minus the deadweight of ads and algorithms. Users can follow each other, comment on posts, and timeline photos are displayed in chronological order.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>&ldquo;The idea is to get more people posting photos to their own blogs, whether that&rsquo;s hosted on Micro.blog,&nbsp;<a rel=\"noreferrer noopener\" href=\"http://wordpress.com/\" target=\"_blank\">WordPress.com</a>, or a self-hosted WordPress,&rdquo; Micro.blog creator Manton Reece said. Publishing to WordPress does not require any extra plugins, because&nbsp;the app uses the built-in XML-RPC support.</p>\n\n\n\n<p>Sunlit uses Micro.blog&rsquo;s infrastructure for the social aspect (replies and mentions). Users must be signed into a Micro.blog account (either paid or free) to view the timeline or reply to posts. In the current version, users are required to go to Micro.blog on the web to register first but Reece said his team is aiming to make this more seamless in the future so users can start using all the features in Sunlit right away.</p>\n\n\n\n<p>&ldquo;Some people use Micro.blog for their blog exclusively, and some people have a mix of a microblog or photoblog on Micro.blog, as well as a full blog on WordPress,&rdquo; Reece said. </p>\n\n\n\n<p>Sunlit also has <a href=\"https://www.manton.org/2020/08/31/countdown-to-sunlit.html\">support for following Tumblr photoblogs</a>. In the app&rsquo;s Discover tab, users can enter a Tumblr subdomain like &ldquo;username.tumblr.com,&rdquo; and then follow the blog even if the user is not on Sunlit. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>&ldquo;Micro.blog is based on blogs and IndieWeb standards so that it can integrate well with the rest of the web, not be walled off like a silo,&rdquo; Reece said. &ldquo;One aspect of this is that you can follow many blogs in Micro.blog even if the author of the blog hasn&rsquo;t registered on Micro.blog yet, similar to how you can subscribe to blogs in a feed reader like NetNewsWire or Feedbin.&rdquo;</p>\n\n\n\n<p>Sunlit 3.0 has been redesigned with a new Discover interface and a faster, more flexible posting screen. Users can publish a quick photo or even a full blog post with text and photos uploaded to the users&rsquo; blog, along with the HTML layout for the post. This version also includes user search and support for mentions when replying to conversations.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Micro.blog is currently supporting the app&rsquo;s development, and Reese said he has no plans to add any commercial upgrades into Sunlit.</p>\n\n\n\n<p>&ldquo;We support Sunlit as part of running Micro.blog,&rdquo; he said. &ldquo;Sunlit makes an existing Micro.blog subscription more useful, so it helps with the overall platform sustainability, even if not everyone using Sunlit is paying for a subscription. We hope that more people will sign up for a paid Micro.blog subscription, but it&rsquo;s not required.&rdquo;</p>\n\n\n\n<p>Sunlit does not have an Android app but the teams would like to support Android in the future. The app is open source and <a href=\"https://github.com/microdotblog/sunlit\">available on GitHub</a> under the MIT License.</p>\n\n\n\n<p>&ldquo;Because Sunlit for iOS is open source, this [Android support] might be something that comes from the community or it might be something we take the lead on. I personally have much more experience with iOS, so we started there.&rdquo;</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:\"Thu, 03 Sep 2020 23:15: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:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\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: WordPress Plugin Authors Should Avoid Confusing Users When Naming Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104091\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:209:\"https://wptavern.com/wordpress-plugin-authors-should-avoid-confusing-users-when-naming-blocks?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-plugin-authors-should-avoid-confusing-users-when-naming-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7172:\"<p class=\"has-drop-cap\">On May 4, the StudioPress development team made a small but significant user-facing change to its Atomic Blocks plugin (now <a href=\"https://wptavern.com/atomic-blocks-rebranded-to-genesis-blocks-migration-path-to-new-plugin-coming-soon\">rebranded to Genesis Blocks</a>). It <a href=\"https://github.com/studiopress/atomic-blocks/commit/af4a4aa30b05537bc93baa48d932ab9407c8eb7f\">removed the &ldquo;AB&rdquo; branding</a> from its block titles. This minor update changed block titles such as AB Accordion and AB Button to Accordion and Button, respectively. On the surface, this change probably seemed of little consequence to the developers on the project. However, for at least one user, it created a massive workload.</p>\n\n\n\n<p>Unless users religiously followed the GitHub code commits, they would have missed this update. Stacked with several other code changes for a seemingly unrelated ticket, the team left a message that read, &ldquo;Remove unnecessary &lsquo;AB&rsquo; from block titles.&rdquo;</p>\n\n\n\n<p>The change made it into version 2.8.2 of the plugin, which launched a day later.</p>\n\n\n\n<p>The problem was that there was no message in the change log that noted this. Users had no indication that the blocks from the plugin were being renamed. Typically, this would not be a big deal since the plugin team had merely dropped the &ldquo;AB&rdquo; prefix from the otherwise unchanged titles. However, what happens when one of those blocks&rsquo; titles matches a core block title?</p>\n\n\n\n<p>That was the issue that Marcus Tibesar ran into. The AB Button block suddenly became the Button block. Thinking he was using the core WordPress Button, he made liberal use of it throughout his site. Throw in his decision to drop the plugin after StudioPress rebranded its plugin to Genesis Blocks, it became a bit of a disaster to clean up.</p>\n\n\n\n<p>&ldquo;I have been using the Button block for months now only to discover that I&rsquo;m actually using the Atomic Blocks button block!&rdquo; <a href=\"https://wptavern.com/atomic-blocks-rebranded-to-genesis-blocks-migration-path-to-new-plugin-coming-soon#comment-340105\">wrote Tibesar in a comment</a> on the Atomic Blocks rebranding post.</p>\n\n\n\n<p>Theoretically, he should have needed to update only any lingering blocks from Atomic Blocks that he had knowingly used. But, he was stuck with blocks that he had unknowingly added to his posts and pages through no fault of his own.</p>\n\n\n\n<p>This particular scenario was made worse because WordPress 5.4, released on March 31, introduced a new Buttons (plural) block. The old single Button block was removed from the normal inserter. While not all block-naming issues are so convoluted, it still begs the question: how can plugin authors avoid causing these types of user-experience issues?</p>\n\n\n\n<p>It is easy to throw blame toward StudioPress &mdash; and the team could perhaps use a scolding for not being clear about the change when it happened. However, this brings forth a couple of things the greater WordPress community needs to figure out. The first is whether plugin authors need to use a consistent, prefixed naming scheme for their blocks. The second is what can WordPress do to help mitigate issues.</p>\n\n\n\n<h2>Prefix All the Things</h2>\n\n\n\n<img />Buttons, buttons, and more buttons.\n\n\n\n<p class=\"has-drop-cap\">That is the common saying in the WordPress development world, <em>right</em>? Prefixing and namespacing guidelines generally apply to the actual code, which is where conflicts arise. However, there are times when prefixing public-facing text is warranted.</p>\n\n\n\n<p>And those times are when plugins utilize a shared space.</p>\n\n\n\n<p>The block editor is one such shared space. With more and more block plugins landing in the directory, it is time that plugin authors consider how block-naming schemes affect end-users. The issue is certainly not limited to Atomic/Genesis Blocks. This has been an ongoing trend with several block library plugins. Some do better than others, but it&rsquo;s a toss-up each time a user installs such a plugin.</p>\n\n\n\n<p>The easiest route is for plugin authors to simply prefix all custom blocks with their company branding (e.g., AB Button). On the other hand, not every block shares a title with one of the core blocks. For example, a block titled Product Carousel may not need to distinguish itself further from other blocks. It is unlikely that end-users are running multiple eCommerce plugins with blocks that share the same title.</p>\n\n\n\n<p>&ldquo;All, repeat all, should have a prefix,&rdquo; said Tibesar.  &ldquo;The prefixes eliminate any confusion as to whether we users are selecting a core block or a third-party block. The most popular plugins appear at the top of the list, and it&rsquo;s confusing from whence they came when prefixes are absent.&rdquo;</p>\n\n\n\n<p>At the very least, third-party blocks should have a prefix if their titles match one of the core blocks. End-users should not see two different Cover blocks in the block inserter, for example. Instead, they should see the core Cover and a second, uniquely-titled block. Prefixing is an easy way to do that. But, I could live with anything that does not cause user confusion.</p>\n\n\n\n<h2>Locating Instances of Block Usage</h2>\n\n\n\n<img />Manage Blocks screen.\n\n\n\n<p class=\"has-drop-cap\">In late 2019, the Gutenberg team released the <a href=\"https://wptavern.com/version-1-prototype-of-the-wordpress-admin-block-directory-announced\">first prototype</a> of a potential block management area for the WordPress admin. The Manage Blocks screen from the prototype showcased an area that would allow users to manage every block on their site. One of the more important bits of information on this screen was an &ldquo;Instances&rdquo; count, which displayed the number of times a block was in use. It further linked to a screen with every post that had a particular block.</p>\n\n\n\n<p>One of the reasons this feature is important is that it would allow end-users to locate posts that they may want to clean up. Using the Atomic/Genesis Button block as an example, Tibesar could track down all those old uses and make any changes he wanted.</p>\n\n\n\n<p>He said he would absolutely welcome this feature in WordPress.  &ldquo;New users are tempted to load up on zillions of block plugins all to be forgotten later.  Also, maintainers would use this tool when cleaning up broken sites. Just being able to see an overview of&nbsp;<em>what</em>&nbsp;blocks were used&nbsp;<em>where</em>, will allow publishers to dial back the number of block plugins installed on their sites, especially when new plugins and technologies emerge.&rdquo;</p>\n\n\n\n<p>Because this feature is not in core yet, he had to turn to the <a href=\"https://wptavern.com/find-my-blocks-plugin-shows-all-blocks-in-use-on-a-wordpress-site\">Find My Blocks</a> plugin, which helped him identify 22 posts and pages where he had unknowingly used the Button block from Atomic/Genesis Blocks. In the long term, this is something that needs to be handled directly in WordPress. It is unlikely to be the last time a user needs to clean house and get rid of old blocks.</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, 03 Sep 2020 19:41:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:82:\"WPTavern: WordPress 5.5.1 Released with Backfill for Deprecated JavaScript Globals\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:209:\"https://wptavern.com/wordpress-5-5-1-released-with-backfill-for-deprecated-javascript-globals?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-5-5-1-released-with-backfill-for-deprecated-javascript-globals\";s: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:4766:\"<p><a href=\"https://wordpress.org/news/2020/09/wordpress-5-5-1-maintenance-release/\">WordPress 5.5.1</a> was released yesterday with <a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.5.1&group=status&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\" target=\"_blank\">34 bug fixes, 4 enhancements</a>, and&nbsp;<a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/gutenberg/pull/24828\" target=\"_blank\">5 bug fixes</a>&nbsp;for the&nbsp;block&nbsp;editor. </p>\n\n\n\n<p>Version 5.5 <a href=\"https://make.wordpress.org/core/2020/08/05/more-support-for-javascript-i18n-in-wordpress-5-5/\">removed 19 legacy&nbsp;JavaScript&nbsp;localization objects</a>, in favor of using the new functions and utilities found in the i18n package&nbsp;introduced in WordPress 5.0. One of the most notable changes in this maintenance release is the inclusion of <a href=\"https://make.wordpress.org/core/2020/09/01/deprecated-javascript-globals/\">a backfill for these now deprecated JavaScript globals</a>, which were causing errors with many popular plugins and themes. </p>\n\n\n\n<p>&ldquo;If we only count plugins or themes with more than 100k installs or more, some of these already have an incredible impact, which is why we decided to&nbsp;patch&nbsp;this as fast possible.&rdquo; Joost de Valk said in an update compiling a list of <a href=\"https://docs.google.com/spreadsheets/d/1Vho7hJR4DMRyns38xcUMvVUj8SBov_J8_X4a7zwpmzo/edit?usp=sharing\">affected extensions</a>, with the the help of Omar Reiss. </p>\n\n\n\n<p>Themes impacted include Astra (1 million+ installs), Storefront (200k+), Hestia (100k+), and dozens more. A small selection of the popular plugins that were impacted include Advanced Custom Fields (1 million+), SiteOrigins Widgets Bundle (1 million+), AMP for WP, (100k+),  WooCommerce Services (1 million+), Ocean Extra (600k+), and Rank Math SEO (400k+). </p>\n\n\n\n<p>Theme and plugin developers still need to update their code to use&nbsp;<code>wp.i18n</code> but in the meantime the legacy code will not block JavaScript execution. De Valk said the new plan is to remove this fallback code in two major versions, so developers need to have their code updated by the time WordPress 5.7 rolls around in 2021.&nbsp;</p>\n\n\n\n<p>&ldquo;It sounds like a question that also ought to be addressed is how such wide-spread breakage could happen, and how it can be prevented in future,&rdquo; David Anderson commented on the announcement regarding the backfill. &ldquo;What part of the release process ought to have flagged up that this was about to happen, how did that part fail, and how can future similar failures be prevented.&rdquo; Jake Spurlock suggested a retrospective on WordPress 5.5 might be a good idea.</p>\n\n\n\n<p>Three weeks after WordPress 5.5 was released, the <a href=\"https://wordpress.org/plugins/enable-jquery-migrate-helper/\">Enable jQuery Migrate Helper</a> has more than 100,000 active installs. The plugin is available as a stopgap for users who experience problems with jQuery after updating to WP 5.5. Although several bumps along the road are expected for users during WordPress&rsquo; process of updating to use the latest version of jQuery, the official support forums were inundated with&nbsp;<a href=\"https://wordpress.org/search/5.5?in=support_forums\">reports of broken sites</a> after 5.5 was released. Many users found out about the plugin after hours of troubleshooting and hunting for a fix. This is another issue that would be helpful to address in a 5.5 retrospective.</p>\n\n\n\n<p>This maintenance release also <a href=\"https://make.wordpress.org/core/2020/08/27/wordpress-environment-types/\">removes the ability to alter the list of environment types</a> in the new&nbsp;<code>wp_get_environment_type()</code> function. Contributors decided that introducing new types wasn&rsquo;t the intention of the feature and that it makes it so that theme and plugin developers cannot rely on a set, predictable list of types. They are now limited to production, staging, development, and local, with definitions for each available in the <a href=\"https://make.wordpress.org/core/2020/08/27/wordpress-environment-types/\">announcement</a>.</p>\n\n\n\n<p>&ldquo;By limiting the set of environment types in this way, WordPress&nbsp;core, plugins, and themes can change their behavior depending on this setting,&rdquo; Joost de Valk said.</p>\n\n\n\n<p>WordPress 5.5.1 also fixes XML sitemaps paginating incorrectly, adds the site environment to debug information, and improves a number of other features that shipped with defects. The <a href=\"https://wordpress.org/support/wordpress-version/version-5-5-1/\">full list of changes</a> is available on the release page.</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, 02 Sep 2020 18:45: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: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:80:\"WPTavern: Jetpack 8.9 Adds Donations Block, Newsletter Form, and Social Previews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104088\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:201:\"https://wptavern.com/jetpack-8-9-adds-donations-block-newsletter-form-and-social-previews?utm_source=rss&utm_medium=rss&utm_campaign=jetpack-8-9-adds-donations-block-newsletter-form-and-social-previews\";s: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:4689:\"<p class=\"has-drop-cap\">Jeremey Herve, a Jetpack developer at Automattic, <a href=\"https://jetpack.com/2020/09/01/jetpack-grow-subscribers-collect-donations/\">announced the release of Jetpack 8.9</a> earlier today. The update brings several major features to the plugin&rsquo;s users. Jetpack now sports a new social preview option in the block editor, a newsletter signup form type, and a block for handling donations.</p>\n\n\n\n<p>Version 8.9 also adds support for the <a href=\"https://wordpress.org/plugins/amp/\">AMP plugin</a>. Herve noted that Google and Automattic have worked together over the past six months to make this integration happen. He also announced that the team would release an in-depth post on the <a href=\"https://jetpack.com/blog/\">Jetpack blog</a> on how end-users can use the tools available.</p>\n\n\n\n<p>Overall, the update seems to be a solid release. I have not run into any issues with the features I make use of thus far.</p>\n\n\n\n<h2>Social Network Preview for Posts</h2>\n\n\n\n<img />Social Previews popup modal.\n\n\n\n<p class=\"has-drop-cap\">The latest version of the plugin adds a new Social Previews tab under the Jetpack sidebar panel in the block editor. It lists a few social icons and a preview button. Clicking the button pops up a modal window that allows users to preview what their post will look like in various places.</p>\n\n\n\n<p>Currently, only Google Search, Facebook, and Twitter previews are integrated. However, the announcement post noted that LinkedIn previews are in the works.</p>\n\n\n\n<p>Social Previews is not a particularly groundbreaking feature. However, it is a nice value-add for Jetpack users and almost a given in today&rsquo;s climate that is led by social networking sites. The feature is similar to what some SEO plugins, such as <a href=\"https://yoast.com/wordpress/plugins/seo/social-previews/\">Yoast SEO Premium</a>, offer.</p>\n\n\n\n<h2>Newsletter Sign-up Form</h2>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img />Select Newsletter Sign-up Form</li><li class=\"blocks-gallery-item\"><img />Form Appears with Necessary Fields</li></ul>\n\n\n\n<p class=\"has-drop-cap\">Jetpack 8.9 introduces a Newsletter Sign-up form type via its Form block. When creating a new form, users will see the new option. It works as you might expect, adding a name and email field along with a message that the visitor is granting permission to send emails.</p>\n\n\n\n<p>It might not be immediately apparent for some users is that they will need to install and activate the third-party <a href=\"https://wordpress.org/plugins/creative-mail-by-constant-contact/\">Creative Mail</a> plugin for newsletters to work. Jetpack&rsquo;s Newsletter Sign-up merely handles the form. The newsletter aspect requires an account through the <a href=\"https://www.creativemail.com/plans/\">Creativ.eMail website</a>. The free plan allows up to 5,000 emails per month, but you will need to upgrade to a paid tier after that, which will cost at least $4.95 each month.</p>\n\n\n\n<p>If this sounds a bit convoluted, it&rsquo;s because it is. Without reading the docs or opening the Newsletter Integration tab in the block options, some users may be wondering how this feature works.</p>\n\n\n\n<p>The integration itself works fluidly. Users can install and activate the plugin directly from the block editor. However, they will need to run through the setup and signup steps to begin using email campaigns, such as a newsletter.</p>\n\n\n\n<h2>Donations Block</h2>\n\n\n\n<img />Donations block and options.\n\n\n\n<p class=\"has-drop-cap\">Requiring yet another third-party service is Jetpack&rsquo;s new Donations block. Users will need to be on a <a href=\"https://jetpack.com/pricing/\">paid Jetpack plan</a> to use the block, which allows them to integrate their Stripe account for collecting payments.</p>\n\n\n\n<p>The Donations block is a simple affair. With a paid account in place, it is pretty much a plug-and-play system. The block options should be straightforward for the average end-user.</p>\n\n\n\n<p>At this point, the Donations block and system may be too limited for some campaigns. This feature seems to more squarely target users who are looking to accept basic donations without all the features that a more mature donation plugin would provide. For anything beyond accepting a few small donations each year, I would lean toward the <a href=\"https://wordpress.org/plugins/give/\">GiveWP plugin</a>. Its team is hyper-focused on making a great donation experience that scales to larger campaigns.</p>\n\n\n\n<p>For users who are already using Jetpack and want to start small, it wouldn&rsquo;t hurt to give this block a spin. It is always possible to move up to a dedicated donation plugin down the road.</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, 01 Sep 2020 21:06:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"HeroPress: Consistency Gets You Where You’re Going\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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=3263\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"https://heropress.com/essays/consistency-gets-you-where-youre-going/#utm_source=rss&utm_medium=rss&utm_campaign=consistency-gets-you-where-youre-going\";s: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:6947:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2020/09/imran_sayed.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Imran Sayed\" /><p>The Tech Industry has given many gifts in my life. It has been an exciting journey so far. So today I decide to pen down my story as a self-taught Software Engineer and share it with the world.</p>\n<p>The story of my journey to WordPress really begins about two years ago.</p>\n<p>At the time, I was working a comfortable, well-paying job as a Team Lead at Tech Mahindra, one of the largest tech consultancy MNC’s in India. Through the 10 years that I worked at Tech M, I wore different hats &#8212; client representative, mentor, certified trainer &#8212; and collected several performance awards including mobile phones, televisions, a digital camera, microwave oven, a PlayStation and best of all, all-expense paid trip to <a href=\"https://codeytek.com/portfolio/trip-to-london/\">London</a> <img src=\"https://s.w.org/images/core/emoji/13.0.0/72x72/1f60e.png\" alt=\"😎\" class=\"wp-smiley\" /></p>\n<p>I thought that programming will give me an ability to express my creative skills through code. The idea of how my work and my knowledge can benefit others is thrilling and something that I love.</p>\n<p>And the hero of my story is my very own brother, Sayed Taqui. Sayed is an experienced WordPress Developer and a core contributor, who gave me insights into this different world I had no idea about.</p>\n<a href=\"https://s20094.pcdn.co/wp-content/uploads/2020/09/image2.jpg\"><img /></a>Sayed Taqui and Imran Sayed\n<h2>A new direction</h2>\n<p>This did not happen overnight. This was a big risk to change track and move from my job to this new world of WordPress and it actually took me two years to make up my mind.</p>\n<p>I started with saving money so I could quit my job and learn new skills. I started with HTML, CSS, JavaScript, PHP and then moved on to WordPress. I also learned to use the tools like Webpack, Babel &amp; Grunt.</p>\n<p>My brother Sayed was always around to help me and guided me with some great inputs:</p>\n<ul>\n<li>learn the basics instead of specific frameworks (vanilla JS before jQuery)</li>\n<li>build games to get good at JS. I built my <a href=\"https://github.com/imranhsayed/shooting-game\">first game</a> in JavaScript, and in 2 weeks it was on <a href=\"https://play.google.com/store/apps/details?id=com.imranhsayed.birdshootinggame&hl=en\">PlayStore</a>.</li>\n<li>Hack away at the WordPress Core as a way to understand it deeply. He also suggested building a CMS in PHP to mimic WordPress, with CRUD functions, posts, pages and taxonomies, inspired by the WP Core.</li>\n</ul>\n<p><b>It all pays off!</b><br />\nAfter 7 months of rigorous self-training, I applied for a job in a startup called <a href=\"https://myrl.tech/\">Myrl Tech</a>. Myrl Tech was like a hardcore wrestling ground for me (देसी अखाड़ा), where I learnt to build and deploy applications from scratch.</p>\n<p>After years’ worth of experience writing code, learning &amp; applying new technology, giving &amp; receiving training and even being involved with hiring, I got the opportunity to apply to <a href=\"https://rtcamp.com/\">rtCamp</a>, where I currently work.</p>\n<p><a href=\"https://s20094.pcdn.co/wp-content/uploads/2020/09/image4.jpg\"><img /></a></p>\n<p>rtCamp is a dream job for me. While the perks are great, what I identify most with is their importance on ethics, a friendly culture, and open-source community.</p>\n<h2>Giving back</h2>\n<p><a href=\"https://s20094.pcdn.co/wp-content/uploads/2020/09/image3.jpg\"><img /></a></p>\n<p>During my learning journey, I realized a lot of topics can only be understood by digging into the WP Core. And while many learning resources are available online and on WordPress.org, there are not enough tutorials or blogs available for beginners.</p>\n<p>So I made a promise to myself that no matter how busy I get in future I will never forget my origin as a beginner and do what I can to help others. Knowledge is power and I feel it&#8217;s my responsibility to share what I know.</p>\n<p>So I’ve started a <a href=\"https://www.youtube.com/ImranSayedDev\">YouTube</a> channel, written tons of blog posts and put together several tutorials through my own open source learning platform. I am proud to have been a speaker at over 6 WordCamps across India. I am also a co-organizer of the local WP meetup group, and have organized 8 meetups last year.</p>\n<p>I have also spoken at several international events &#8212; <a href=\"https://www.crowdcast.io/e/22feb20WPstream/2\">Matt’s Popup Livestream</a> on <a href=\"https://www.slideshare.net/ImranSayed12/fastest-way-of-creating-gutenberg-blocks-with-minimal-javascript-knowledge-popup-livestream-22nd-feb-2020\">Gutenberg</a>, <a href=\"https://wpsessions.com/sessions/wordsesh-apac-2020/\">Wordsesh</a> on <a href=\"https://www.slideshare.net/ImranSayed12/why-progressive-apps-for-wordpress-wordsesh-2020\">PWA</a>, <a href=\"https://javascriptforwp.com/conference/#schedule\">JavaScript for WP Conference</a> on <a href=\"https://www.slideshare.net/ImranSayed12/harness-the-power-of-acf-for-gatsby-and-wordpress\">Gatsby</a>, <a href=\"https://twitter.com/imranhsayed/status/1243498037604827138\">WordPress VIP Webinar</a> and many more.</p>\n<p>I feel that there are many developers who have amazing knowledge but need a little push since they have never spoken in public. So while all of the above have been high points of my past couple of years, I also enjoy motivating <a href=\"https://www.meetup.com/Pune-WordPress-Knowledge-Exchange/events/270630113/\">new speakers</a> to share what they know.</p>\n<p><a href=\"https://s20094.pcdn.co/wp-content/uploads/2020/09/image1.jpg\"><img /></a></p>\n<h2>Consistency is what got me here</h2>\n<p>Switching career paths has been very fulfilling. Having a supportive brother from the technical field was a blessing, and the skills I gained from the previous role like effective communication, public speaking etc, really helped. However, I’ve had to be patient, consistent and put in the work to make it happen. The advice I’d give to anyone pondering a similar switch is to focus on being consistent.</p>\n<p>I also feel that the best way to learn is to teach. Small positive steps ( teaching, helping others etc ) that we take today can make a big difference in a long run, not just in our life, but also the ones that directly or indirectly get influenced by our work.</p>\n<p>I encourage you to contribute to open-source, not just code but any way possible. Many of us have the potential to do better than what we are doing already. What’s important is we start and be consistent.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/consistency-gets-you-where-youre-going/\">Consistency Gets You Where You&#8217;re Going</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:\"Tue, 01 Sep 2020 20:30:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Imran Sayed\";s: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:55:\"WordPress.org blog: WordPress 5.5.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8979\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2020/09/wordpress-5-5-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8938:\"<p>WordPress 5.5.1 is now available!</p>\n\n\n\n<p>This maintenance release features&nbsp;<a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.5.1&group=status&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\" target=\"_blank\">34 bug fixes, 5 enhancements</a>, and&nbsp;<a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/gutenberg/pull/24828\" target=\"_blank\">5 bug fixes</a>&nbsp;for the&nbsp;block&nbsp;editor. These bugs affect WordPress version 5.5, so you’ll want to upgrade.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/wordpress-5.5.1.zip\">download WordPress 5.5.1 directly</a>, or visit the<strong>&nbsp;Dashboard → Updates</strong> screen&nbsp;and click&nbsp;<strong>Update Now</strong>. If your sites support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<p>WordPress 5.5.1 is a short-cycle maintenance release. The next major release will be <a href=\"https://make.wordpress.org/core/5-6/\">version 5.6</a>.</p>\n\n\n\n<p>To see a full list of changes, you can browse the&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.5.1&group=component&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&order=priority\">list on Trac</a>, read the <a href=\"https://make.wordpress.org/core/2020/08/27/wordpress-5-5-1-rc1/\">5.5.1 RC1</a> and <a href=\"https://make.wordpress.org/core/2020/08/31/wordpress-5-5-1-rc2/\">5.5.1 RC2</a> posts, or visit the <a href=\"https://wordpress.org/support/wordpress-version/version-5-5-1/\">5.5.1 documentation page</a>.</p>\n\n\n\n<h2>Thanks and props!</h2>\n\n\n\n<p>The 5.5.1 release was led by <a href=\"https://profiles.wordpress.org/audrasjb/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>audrasjb</a>, <a href=\"https://profiles.wordpress.org/azhiyadev/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>azhiyadev</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>davidbaumwald</a>, <a href=\"https://profiles.wordpress.org/desrosj/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>desrosj</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>johnbillion</a>, <a href=\"https://profiles.wordpress.org/planningwrite/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>planningwrite</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>sergeybiryukov</a> and <a href=\"https://profiles.wordpress.org/whyisjake/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>whyisjake</a>.</p>\n\n\n\n<p>Thank you to everyone who helped make WordPress 5.5.1 happen:</p>\n\n\n\n<a href=\"https://profiles.wordpress.org/wpamitkumar/\">Amit Dudhat</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/rarst/\">Andrey &#8220;Rarst&#8221; Savchenko</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/akissz/\">Angel Hess</a>, <a href=\"https://profiles.wordpress.org/avixansa/\">avixansa</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/brianhogg/\">Brian Hogg</a>, <a href=\"https://profiles.wordpress.org/chunkysteveo/\">chunkysteveo</a>, <a href=\"https://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dd32/\">dd32</a>, <a href=\"https://profiles.wordpress.org/demetris/\">demetris</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dushakov/\">dushakov</a>, <a href=\"https://profiles.wordpress.org/elrae/\">Earle Davies</a>, <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique Sánchez</a>, <a href=\"https://profiles.wordpress.org/fjarrett/\">Frankie Jarrett</a>, <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">fullofcaffeine</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/gchtr/\">gchtr</a>, <a href=\"https://profiles.wordpress.org/azhiyadev/\">Hauwa</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/howdy_mcgee/\">Howdy_McGee</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/johannadevos/\">Johanna de Vos</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/jonathanstegall/\">Jonathan Stegall</a>, <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/akabarikalpesh/\">Kalpesh Akabari</a>, <a href=\"https://profiles.wordpress.org/khag7/\">Kevin Hagerty</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/kbjohnson90/\">Kyle B. Johnson</a>, <a href=\"https://profiles.wordpress.org/landau/\">landau</a>, <a href=\"https://profiles.wordpress.org/laxman-prajapati/\">Laxman Prajapati</a>, <a href=\"https://profiles.wordpress.org/gamerz/\">Lester Chan</a>, <a href=\"https://profiles.wordpress.org/mailnew2ster/\">mailnew2ster</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mapk/\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/gothickgothickorguk/\">Matt Gibson</a>, <a href=\"https://profiles.wordpress.org/tw2113/\">Michael Beckwith</a>, <a href=\"https://profiles.wordpress.org/mikeyarce/\">Mikey Arce</a>, <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/nabilmoqbel/\">Nabil Moqbel</a>, <a href=\"https://profiles.wordpress.org/krstarica/\">net</a>, <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a>, <a href=\"https://profiles.wordpress.org/nosolosw/\">O André</a>, <a href=\"https://profiles.wordpress.org/omarreiss/\">Omar Reiss</a>, <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/paddy/\">Paddy</a>, <a href=\"https://profiles.wordpress.org/casiepa/\">Pascal Casier</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/rajeshsingh520/\">rajeshsingh520</a>, <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/rebasaurus/\">rebasaurus</a>, <a href=\"https://profiles.wordpress.org/riaanlom/\">riaanlom</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/kreppar/\">Rodrigo Arias</a>, <a href=\"https://profiles.wordpress.org/rtagliento/\">rtagliento</a>, <a href=\"https://profiles.wordpress.org/salvoaranzulla/\">salvoaranzulla</a>, <a href=\"https://profiles.wordpress.org/sanzeeb3/\">Sanjeev Aryal</a>, <a href=\"https://profiles.wordpress.org/sarahricker/\">sarahricker</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/sterndata/\">Steven Stern (sterndata)</a>, <a href=\"https://profiles.wordpress.org/webzunft/\">Thomas M</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/twentyzerotwo/\">TwentyZeroTwo</a>, <a href=\"https://profiles.wordpress.org/planningwrite/\">Winstina</a>, <a href=\"https://profiles.wordpress.org/wittich/\">wittich</a>, and <a href=\"https://profiles.wordpress.org/yoavf/\">Yoav Farhi</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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Sep 2020 19:13:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Jb Audras\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:81:\"Post Status: iThemes has acquired Restrict Content Pro from Sandhills Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=79593\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://poststatus.com/ithemes-has-acquired-restrict-content-pro/\";s: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:3361:\"<p><a href=\"https://restrictcontentpro.com/\">Restrict Content Pro</a> has been <a href=\"https://sandhillsdev.com/?p=621\">acquired</a> by <a href=\"https://ithemes.com/\">iThemes</a>. Originally built by Pippin Williamson in 2012, RCP was early to the membership space and kept its promise of simplicity and stability throughout its tenure to date.</p>\n\n\n\n<p>A couple of years ago, the <a href=\"https://sandhillsdev.com/\">Sandhills Development</a> team put new energy into RCP, and <a href=\"https://sandhillsdev.com/2020/01/2019-year-in-review/\">in 2019</a> the product made nearly $500,000 in revenue. 2020 is set to outpace those numbers. While the sale price is not disclosed, it is a seven-figure deal, likely somewhere between two and four times annual revenue. No members of the Sandhills team are moving over to iThemes and <a href=\"https://www.liquidweb.com/\">Liquid Web</a> (the iThemes parent company), but there is a multi-month transition plan in place.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>In our interview, we talked a lot about the process of the deal, the transition expectations, the past and future of the product, and the emotions surrounding the sale — particularly for Pippin.</p>\n\n\n\n<p>Strategically, selling RCP enables Sandhills to better focus on their other products and free up several team members\' energy. RCP was profitable and fun for them to work on, but they knew it was the right fit with iThemes and were excited to be able to better share the workload on Easy Digital Downloads, AffiliateWP, and their other products. Pippin compared it to hiring multiple full time team members, by simply transitioning what they are working on.</p>\n\n\n\n<p>Additionally, the sale enabled them to put some cash in the bank, a comforting thing for a relatively small company in an extraordinarily uncertain time. Sandhills is very much an employee-first company, and this safety net lets them approach the future with confidence.</p>\n\n\n\n<p>For iThemes, Matt tells me that the acquisition excites them in part because it gets them on the front-facing part of websites once again. For years now they have focused on the utility side through backups, security, etc. Now they can offer more than peace of mind to their customers by helping them make money.</p>\n\n\n\n<p>Restrict Content Pro makes a lot of strategic sense for both Liquid Web and iThemes. Sandhills has always had a great audience, but it is most popular among developers and tinkerers — people ready to get their hands dirty a bit. iThemes opens up a much more user-centric audience, and it expands the base of potential customers through cross-marketing. Liquid Web has put a lot of energy into optimizing for eCommerce, and RCP offers a much more niche eCommerce product for their eCommerce audience that is not selling physical goods.</p>\n\n\n\n<p>All around, this deal just makes sense. Thanks to recent energy reviving the product, website, and RCP community, Pippin and his team were able to receive a compelling offer for Restrict Content Pro. Thanks to a well-established marketing plan, and a well-established roadmap for furthering the product\'s success, iThemes should be able to nicely capitalize on the opportunity.</p>\n\n\n\n<p>I\'m glad to see a win-win and the opportunity for two companies I admire to take a new step in their respective journeys.</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, 01 Sep 2020 17:06: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:15:\"Brian Krogsgard\";s: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:55:\"WordPress.org blog: The Month in WordPress: August 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8983\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2020/09/the-month-in-wordpress-august-2020/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9603:\"<p>August was special for WordPress lovers, as one of the most anticipated releases, WordPress 5.5, was launched. The month also saw several updates from various contributor teams, including the soft-launch of the Learn WordPress project and updates to Gutenberg. Read on to find out about the latest updates from the WordPress world.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.5 Launch</h2>\n\n\n\n<p>The team launched <a href=\"https://wordpress.org/news/2020/08/eckstine/\">WordPress 5.5</a> on August 11. The major release comes with a host of features like automatic updates for plugins and themes, enabling updates over uploaded ZIP files, a block directory, XML sitemaps, block patterns, inline image editing, and lazy-loading images, to name a few. WordPress 5.5 is now available in 50 languages too! You can update to the latest version directly from your WordPress dashboard or <a href=\"https://wordpress.org/download/\">download</a> it directly from WordPress.org. Subsequent to the 5.5 release, the <a href=\"https://make.wordpress.org/core/2020/08/27/wordpress-5-5-1-rc1/\">5.5.1 release candidate</a> came out on August 28, which will be followed by its official launch of the minor release on September 1.</p>\n\n\n\n<p>A record 805 people contributed to WordPress 5.5, hailing from 58 different countries. <a href=\"https://profiles.wordpress.org/audrasjb/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>audrasjb</a> has <a href=\"https://jeanbaptisteaudras.com/en/2020/08/wordpress-5-5-core-stats-contributions-by-country-company/\">compiled many more stats like that</a> and they’re well worth a read!</p>\n\n\n\n<p>Want to get involved in building WordPress Core? Follow<a href=\"https://make.wordpress.org/core/\"> the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Gutenberg 8.7 and 8.8</h2>\n\n\n\n<p>The core team launched Gutenberg <a href=\"https://make.wordpress.org/core/2020/08/05/whats-new-in-gutenberg-august-5/\">8.7</a> and <a href=\"https://make.wordpress.org/core/2020/08/19/whats-new-in-gutenberg-august-19/\">8.8</a>. Version 8.7 saw many improvements to the Post Block suite, along with other changes like adding a block example to the Buttons block, consistently autosaving edits, and updating the group block description. Version 8.8 offers updates to Global Styles, the Post Block suite, and Template management. The release significantly improves the back-compatibility of the new Widget Screen, and also includes other important accessibility and mobile improvements to user interfaces like the Toolbar, navigation menus, and Popovers. For full details on the latest versions of these Gutenberg releases, visit these posts about <a href=\"https://make.wordpress.org/core/2020/08/05/whats-new-in-gutenberg-august-5/\">8.7</a> and <a href=\"https://make.wordpress.org/core/2020/08/19/whats-new-in-gutenberg-august-19/\">8.8</a>.</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the #core-editor channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Check out the brand new Learn WordPress platform!</h2>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a> is a brand new cross-team initiative led by the <a href=\"https://make.wordpress.org/community/\">WordPress Community team</a>, with support from the <a href=\"https://make.wordpress.org/training/\">training team</a>, the <a href=\"https://make.wordpress.org/tv/\">TV team</a>, and the <a href=\"https://make.wordpress.org/meta/\">meta team</a>. This platform is a learning repository on <a href=\"https://learn.wordpress.org/\">learn.wordpress.org</a>, where WordPress learning content will be made available. Video workshops published on the site will be followed up by supplementary discussion groups based on workshop content. The first of these discussion groups have been scheduled, and you can join an upcoming discussion <a href=\"https://www.meetup.com/learn-wordpress-discussions/events/\">on the dedicated meetup group</a>. The community team invites members to contribute to the project. You can apply to <a href=\"https://wordcampcentral.survey.fm/learn-wordpress-workshop-application\">present a workshop</a>, <a href=\"https://wordcampcentral.survey.fm/learn-wordpress-reviewer-application\">assist with reviewing</a> submitted workshops, and <a href=\"https://docs.google.com/spreadsheets/d/1A6BYIZAtqk3alBFtJBg-7Q7Y7NBLRnoRFbRTGho2rfI/edit\">add ideas for workshops</a> that you would like to see on the site. You can also apply<a href=\"https://wordcampcentral.survey.fm/learn-wordpress-discussion-group-leader-application\"> to be a discussion group leader</a> to organize discussions directly through the <a href=\"https://learn.wordpress.org\">learn.wordpress.org</a> platform. We are also creating a dedicated Learn WordPress working group and have <a href=\"https://make.wordpress.org/community/2020/08/24/learn-wordpress-working-group-call-for-volunteers/\">posted a call for volunteers</a>. Meetup organizers can use <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> content for their meetup events (without applying as a discussion group leader). Simply ask your meetup group to watch one of the workshops in the weeks leading up to your scheduled event, and then host a discussion group for that content as your event.</p>\n\n\n\n<p>Want to get involved with the Community team? <a href=\"https://make.wordpress.org/community/\">Follow the Community blog</a>, or join them in the #community-events channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>. To organize a local WordPress community event, <a href=\"https://make.wordpress.org/community/handbook/virtual-events/welcome/applying-for-a-virtual-event/\">visit the handbook page</a>. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>As <a href=\"https://make.wordpress.org/core/2020/03/11/all-women-release-squad/\">proposed previously</a>, WordPress 5.6 will have an all-women release squad. The team has <a href=\"https://make.wordpress.org/core/2020/08/13/wordpress-5-6-release-planning/\">started work on the 5.6 release planning</a>.</li><li>The community team has decided to <a href=\"https://make.wordpress.org/community/2020/08/04/announcement-flagship-events-in-2021/\">cancel in-person flagship WordPress events</a> in 2021. While new applications for flagship events in 2021 will not be accepted, organizers of existing flagship events (such as WordCamp US, Europe, and Asia) will have the option to move their event online. </li><li>The core team is working on <a href=\"https://core.trac.wordpress.org/ticket/37110\">updating the jQuery version</a> that comes with WordPress. As the first step, the <a href=\"https://make.wordpress.org/core/2020/06/29/updating-jquery-version-shipped-with-wordpress/\">team removed the jQuery Migrate 1.4.1 script </a>from WordPress 5.5. Those who wish to use jQuery migrate for maintaining plugin compatibility can install the <a href=\"https://wordpress.org/plugins/enable-jquery-migrate-helper/\">Enable jQuery Migrate Helper plugin</a>, which has currently reached the 100k installs mark. </li><li>The WordPress documentation team is continuing its discussion on modifying the external linking policy. The conversation is taking place on a <a href=\"https://docs.google.com/document/d/1i0ipOTmKPShSIMoFuEXnI3gkOOUrPJb9t4HMf30JWC0/edit#heading=h.l0cppyl5zvhs\">shared Google doc</a>. Feel free to add comments if you have any thoughts on the topic. </li><li>WordPress will <a href=\"https://core.trac.wordpress.org/ticket/51043#comment:7\">not drop support for PHP 5.6</a>, as initially decided, in order to maintain better version compatibility. The team has additionally come up with a <a href=\"https://make.wordpress.org/core/2020/08/24/proposal-dropping-support-for-old-php-versions-via-a-fixed-schedule/\">proposal to drop support for old PHP versions via a fixed schedule</a>.</li><li>The maiden edition of <a href=\"https://doaction.org/event/india-2020\">do_action India online</a> was held from August 15 to 23. The event, which was held online with collaboration tools, had 94 participants who built fully functional websites for five NGOs from across the country. You can read more about 2020 do_action events <a href=\"https://wordpressfoundation.org/2020/charity-hackathons-august-2020-report/\">on the WordPress Foundation blog</a>.</li><li>The Accessibility team has <a href=\"https://make.wordpress.org/accessibility/2020/08/25/accessibility-teams-goals-for-wordpress-5-6-and-beyond/\">published their goals for WordPress 5.6 and beyond</a> and has started working on them.</li><li><a href=\"https://minneapolis.wordcamp.org/2020/\">WordCamp Minneapolis/St. Paul</a> was held successfully on August 21. The event, which sold over 1400 tickets, had 18 speakers and 12 sponsors.</li><li>The Polyglots team has completed the translation <a href=\"https://make.wordpress.org/polyglots/2020/08/19/polyglots-handbook-reorganization-update/\">handbook structure organization</a>. The handbook now has clear guides for translators, PTEs/GTEs, global mentors, and Plugin/Theme authors.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Sep 2020 09:32: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:14:\"Hari Shanker R\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:93:\"WPTavern: WordSesh EMEA 2020 Kicks Off September 2, Featuring Short Talks and Micro-Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104024\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:229:\"https://wptavern.com/wordsesh-emea-2020-kicks-off-september-2-featuring-short-talks-and-micro-tutorials?utm_source=rss&utm_medium=rss&utm_campaign=wordsesh-emea-2020-kicks-off-september-2-featuring-short-talks-and-micro-tutorials\";s: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:4862:\"<p>The second edition of <a href=\"https://wordsesh.com/\">WordSesh EMEA</a> (Europe, Middle East, and Africa) is happening in less than 48 hours on September 2. The virtual event&rsquo;s schedule is tailored to attendees living in the Eastern hemisphere. In its first year running, WordSesh EMEA attracted a solid turnout of close to 1,000 attendees and was the proving ground for future regional WordSesh events. With WordCamp Europe <a href=\"https://wptavern.com/wordcamp-europe-goes-virtual-for-2021-in-person-conference-to-resume-2022\">cancelling in-person events until 2022</a>, WordSesh EMEA is another way to highlight voices in the European WordPress community with a global audience.</p>\n\n\n\n<p>&ldquo;There were definitely enough people at the inaugural WordSesh EMEA event that it was clear I needed to do it again, and expand into an APAC event,&rdquo; organizer Brian Richards said. </p>\n\n\n\n<p>Richards had WordSesh APAC (Asia/Pacific) on the schedule for the end of March, right when the pandemic was breaking out. WordCamp Asia had just been cancelled the month before, as he was preparing to announce speakers for the WordSesh.</p>\n\n\n\n<p>&ldquo;I worked with the WCAsia organizers to invite as many speakers to speak as I could,&rdquo; Richards said. &ldquo;I ended up helping run a Feb 22 pop-up livestream event to host several of them and invited the remainder to join me on a second full day of sessions at WordSesh.&rdquo;</p>\n\n\n\n<p>Six months later, many WordCampers have had their fill of online events after months of mandated lockdowns and voluntary quarantining. Any new virtual event announced is immediately in competition with outdoor activities and hobbies that attendees could be engaging in away from the computer. Nevertheless, Richards has seen a threefold increase in signups over the previous year.</p>\n\n\n\n<p>&ldquo;There are 3,200 folks registered currently, and we&rsquo;re on track to have 3,500 by the time things kick off on Sept 2nd,&rdquo; he said.</p>\n\n\n\n<p>&ldquo;I&rsquo;ve been extremely mindful of virtual event fatigue for this one. This time around, the event is designed to fit inside an 8-hour span, inclusive of breaks, and no single session is longer than 20 minutes (plus Q&amp;A).&rdquo;</p>\n\n\n\n<p>Whereas the previous WordSesh events were somewhat novel in that they gave attendees 24 hours of free live streaming WordPress presentations, pandemic era virtual events are evolving to eat up less of attendees&rsquo; free time. Organizers are now opting for scheduling fewer speakers for more manageable sections of time, or requiring them to give more condensed versions of their presentations.</p>\n\n\n\n<p>&ldquo;I worked with the speakers to compress their talks into 20 minutes instead of the historical 40 minutes of years past,&rdquo; Richards said. &ldquo;I&rsquo;ve been developing a theory that case studies and micro-tutorials are the most optimal format for a conference talk, though, and I&rsquo;m going to test that idea more thoroughly in future events.&rdquo;</p>\n\n\n\n<p>The schedule features 13 sessions on topics ranging from plugin development to client management to marketing with multisite networks. Whether you are a PHP developer learning how to navigate the world of blocks or an event planner seeking resources for the pandemic pivot, there&rsquo;s a session for everyone.</p>\n\n\n\n<p>The talks will be a mix of live and pre-recorded, all broadcast live at their set times with speakers joining for Q&amp;A after each session.</p>\n\n\n\n<p>&ldquo;Most will be pre-recorded to eliminate any technical risks during the event (e.g. internet outage, power outage, and all the many various life emergencies),&rdquo; Richards said. &ldquo;This also offers a nice bonus of the speaker being able to interact with the chat&nbsp;<em>during</em>&nbsp;their talk.&rdquo; </p>\n\n\n\n<p>WordSesh EMEA will introduce a temporary job board, reminiscent of the kind one might find on a whiteboard in the hallway at a traditional WordCamp.</p>\n\n\n\n<p>&ldquo;Attendees can share whether they are hiring or looking for work in an entirely free-form format,&rdquo; Richards said. &ldquo;The entire board will be accessible to attendees throughout the live event only. After the event has ended I will capture the final state of the board and share that with everyone who actually attended so they can have a semi-permanent record. I think this is the first time there has ever been anything that only exists for live attendees and nobody else.&rdquo;</p>\n\n\n\n<p>Richards will also be delivering virtual swag to attendees&rsquo; inboxes again this year, with substantial discounts to various WordPress shops, hosts, and service providers. If you haven&rsquo;t signed up yet, you are not too late. <a href=\"https://wordsesh.com/register/\">Registration</a> is still open until the last minute, and tickets are free. </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, 01 Sep 2020 04:00: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: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:94:\"WPTavern: One Year After Beta, Elmastudio’s Aino Blocks Plugin Lands in the Plugin Directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=104014\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:225:\"https://wptavern.com/one-year-after-beta-elmastudios-aino-blocks-plugin-lands-in-the-plugin-directory?utm_source=rss&utm_medium=rss&utm_campaign=one-year-after-beta-elmastudios-aino-blocks-plugin-lands-in-the-plugin-directory\";s: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:6853:\"<p class=\"has-drop-cap\">One year ago today, Elmastudio <a href=\"https://www.elmastudio.de/en/beta-release-test-our-aino-free-theme-and-aino-block-collection/\">launched a beta version</a> of its <a href=\"https://wordpress.org/themes/aino/\">Aino</a> WordPress theme and <a href=\"https://wordpress.org/plugins/aino-blocks/\">Aino Blocks</a> plugin. While the team pushed the theme live in the theme directory earlier this year, it wasn&rsquo;t until a couple of weeks ago that they officially released their blocks plugin.</p>\n\n\n\n<p>Elmastudio&rsquo;s beta launch was one of the first pieces of news I noted when I began writing for the Tavern &mdash; I was already lining up stories a couple of weeks before I <em>officially</em> started. But, the story fell down the list over time. After seeing Aino Blocks land in the plugin directory two weeks ago, I thought it would be interesting to check out what the plugin looked like today.</p>\n\n\n\n<p>Aside from a few minor styling issues, the Aino theme is a solid offering for users who are looking for a block-ready theme that provides an open canvas. I am generally a fan of Elmastudio&rsquo;s work with themes. However, most of the blocks from the Aino Blocks plugin are not particularly impressive. At best, they are par for the course for these types of block library plugins. I tend to install them to see if I can find a gem of an idea or two, some missing element that would solve one of the various problems I have. No such luck this time.</p>\n\n\n\n<h2>The Plugin&rsquo;s Blocks</h2>\n\n\n\n<p class=\"has-drop-cap\">The one block that caught my eye the most was the Grid block. I am still hopeful that core WordPress adopts some sort of <a href=\"https://wptavern.com/should-the-block-editor-have-a-grid-system\">grid layout block</a> or system. Therefore, I test every such block I come across.</p>\n\n\n\n<p>The Grid block in the Aino Blocks plugin works well enough for people who have a background in CSS code. The terminology for the block options may be hard to understand for average users. On the whole, it does not feel intuitive enough for me to recommend it over better options.</p>\n\n\n\n<img />Using the Grid block.\n\n\n\n<p><a href=\"https://wptavern.com/diving-into-automattics-block-experiments\">Layout Grid</a> by Automattic still holds the title for best grid block plugin thus far. Yes, its options can be confusing too, but it does provide dragging capabilities that will autofill those settings for less tech-savvy users. <a href=\"https://wptavern.com/build-versatile-layouts-with-the-generateblocks-wordpress-plugin\">GenerateBlocks</a> also has a powerful Grid block that is far easier to use.</p>\n\n\n\n<p>The most complex block and the one that seemingly pushes some boundaries is the Hero block. It is essentially a block that combines content, buttons, and media in a specific layout. The problem is that there may not be a need for the block in every case. It is far better suited as a block pattern, and because the plugin already introduces a custom pattern, there is little reason not to move along the same route with the Hero block.</p>\n\n\n\n<p>Within a couple of minutes, I was able to recreate the default Hero block output with core WordPress blocks. The only exception to this was the use of the Badge block included with the Aino Blocks plugin.</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img />Aino Hero Block</li><li class=\"blocks-gallery-item\"><img />Core Media &amp; Text Block</li></ul>\n\n\n\n<p>To recreate the Hero block, an end-user merely needs to add a Media &amp; Text block. In the content/text panel for the block, they can add the Badge, Heading, Paragraph, and Buttons blocks. After adding an image in the media section, they would have recreated the Hero block. Because of the multiple inner blocks involved in this, it can be a bit complicated for some users. That&rsquo;s where patterns come into play. By using a pattern, the plugin would have:</p>\n\n\n\n<ul><li>Used less JavaScript.</li><li>Used less CSS.</li><li>Mostly used core blocks.</li></ul>\n\n\n\n<p>Users may be stuck with an unnecessary block in this case. And, if this is their first foray into the world of blocks, they are unlikely to learn that there was a better way.</p>\n\n\n\n<p>The one thing the Hero block brings to the table is its custom grid settings. It provides end-users with control over the placement of content and media columns. That is the only thing it has going for it as an individual block, but such a feature might be better as custom block options, such as those provided through <a href=\"https://wptavern.com/control-block-design-via-the-editorplus-wordpress-plugin\">EditorPlus</a>.</p>\n\n\n\n<p>Aino Blocks does include a single block pattern. It is called Hero Aino. It is a customized version of the Hero block in pattern form and showcases what users can accomplish with a few adjustments of the block options.</p>\n\n\n\n<img />Aino Hero block pattern.\n\n\n\n<p>This pattern is the one area where the plugin shines.  It will be interesting to see if the developers continue with more patterns in the future.</p>\n\n\n\n<p>The plugin also adds Badge, Card, Author, Testimonial, Buttons, and Arrow Button blocks. The Badge block allows users to add a small bit of text with an inline background. The Arrow Button is essentially a link with an arrow icon next to it. Everything else feels like it has been done before by a plethora of other block collection plugins.</p>\n\n\n\n<h2>Final Verdict</h2>\n\n\n\n<p class=\"has-drop-cap\">I question whether most of these types of block library plugins are necessary at this point. Few of them feel like they are pushing any limits, raising the bar beyond what has already been done. My fear is that we will continue to see more and more of these collections packaged from every plugin and theme shop to the point where everyone is simply building the same blocks in-house.</p>\n\n\n\n<p>This is why the block directory needs to be integrated into core. Instead of downloading an entire collection of blocks for something like a plain ol&rsquo; testimonial block, end-users can simply download a single testimonial block.</p>\n\n\n\n<p>Perhaps I am being a bit harsh on Aino Blocks. Maybe it appeared in the plugin directory too late. Bigger plugins have already carved the path that Aino is trekking. I want to see more than <em>yet another block collection by yet another theme/plugin company</em>. I want to be dazzled.</p>\n\n\n\n<p>For the most part, the plugin works well. I did not see anything technically wrong with it. I just do not see it appealing to many people outside of Elmastudio&rsquo;s current theme users, not when there are more mature plugins of its type out there.  There is still room to grow.  The company&rsquo;s best bet is to focus on building patterns.  Its first pattern shows some promise.  I am holding out hope for more interesting work to come.</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, 31 Aug 2020 22:09:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WPTavern: WordCamp Austin Opens Call for Musicians\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=103599\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:145:\"https://wptavern.com/wordcamp-austin-opens-call-for-musicians?utm_source=rss&utm_medium=rss&utm_campaign=wordcamp-austin-opens-call-for-musicians\";s: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:4365:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>WordCamp Austin 2020 is putting out a <a href=\"https://austin.wordcamp.org/2020/call-for-musicians/\">call for musicians</a>, alongside its call for speakers. The event&rsquo;s organizers are rising to the challenge of creating a unique experience for attendees, while working within the constraints of a virtual format. Because the city prides itself on being &ldquo;the live music capital of the world,&rdquo; due to its abundance of music venues, the camp&rsquo;s organizers are inserting a little local Austin flavor into the schedule.</p>\n\n\n\n<p>English poet Robert Browning, in his poem <em><a href=\"https://en.wikisource.org/wiki/Balaustion%27s_Adventure/I\">Balaustion&rsquo;s Adventure</a></em>, wrote, <strong>&ldquo;<em>And who hears music, feels his solitude peopled at once.</em>&rdquo; </strong>Music has a way of bringing a human aspect to virtual events where people are sitting alone behind glowing screens, hoping to connect with others during this protracted time of isolation. WordCamp Austin&rsquo;s organizers are aiming to pepper the schedule with a diverse selection of performances for attendees to enjoy. </p>\n\n\n\n<p>Musicians from anywhere in the world are invited to send an audition video (or schedule a live audition) for the opportunity to perform 2-5 songs at WordCamp Austin between sessions. Those who are selected will have the choice of performing live (with technical support from the organizers) or submitting pre-recorded performances. Organizers are also accepting auditions from singers, beat-boxers, rappers, and anyone who plays a non-traditional instrument.</p>\n\n\n\n<p>&ldquo;We want WC ATX to be put on the map so that it will drive more attraction when we can get back together in person,&rdquo; co-organizer Ben Moore said. &ldquo;Like all other major events, 2020 will be the catalyst for more virtual events. Virtual, in-person, and a hybrid mix of the two will emerge after all of this.&rdquo;</p>\n\n\n\n<p>WordCamp Austin organizers are planning to use <a href=\"https://hubs.mozilla.com/\">Hubs Virtual Rooms</a> by Mozilla to create a unique environment for attendees. </p>\n\n\n\n<p>&ldquo;I think it will be a lot of fun and allow everyone who is burnt out on Zoom to get something different,&rdquo; co-organizer Cousett Hoover said. &ldquo;We have a lot of dedicated folks but venues in Austin are super expensive which makes it hard to coordinate a WordCamp. This allows us to get more support and with a star group of organizers we can come back even better next year.&rdquo;</p>\n\n\n\n<p>WordCamp Austin&rsquo;s use of Hubs Virtual Rooms will be an interesting experiment to follow, as most other virtual WordPress events have opted for Zoom.</p>\n\n\n\n<p>&ldquo;One of the more exciting parts of Hubs is the spacial audio feature,&rdquo; Moore said. &ldquo;We hope this can create a more interactive experience for people as opposed to everyone having to hear everything being said. People will be able to &lsquo;walk&rsquo; around, gather in groups, and have smaller conversations without the need for a moderator to designate breakout rooms. We hope to imitate an &lsquo;in-person&rsquo; environment but remain virtual.&rdquo;</p>\n\n\n\n<p>WordCamp Austin has been running since 2012, with a few gaps in between when they were not able to make it happen. Most other city-based WordCamps are on hold right now, but Hoover said she sees an opportunity in the present circumstances for newer community members to attend virtually.</p>\n\n\n\n<p>&ldquo;I think it is a beautiful opportunity for so many who might otherwise not know about WordCamps or not have one close by to be able to attend,&rdquo; Hoover said. &ldquo;Personally, I work with a lot of Mompreneurs who use WordPress daily for their livelihoods just like many other WordPressers but so many do not know about the incredible community that WordPress has and these events are an opportunity to save on travel and time and still be able to participate a bit.&rdquo;</p>\n\n\n\n<p>Organizers are planning two tracks, with 8-10 sessions separated by musical interludes. Applications for WordCamp Austin&rsquo;s musicians are <a href=\"https://austin.wordcamp.org/2020/call-for-musicians/\">due by September 4</a>. The deadline to submit auditions is September 11 and performers will be notified of acceptance by September 15.</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, 29 Aug 2020 21:39:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:88:\"WPTavern: Stepping Into a Market With Major Players, Mario Peshev Acquires WP-CRM System\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=103830\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:219:\"https://wptavern.com/stepping-into-a-market-with-major-players-mario-peshev-acquires-wp-crm-system?utm_source=rss&utm_medium=rss&utm_campaign=stepping-into-a-market-with-major-players-mario-peshev-acquires-wp-crm-system\";s: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:5799:\"<p class=\"has-drop-cap\">Mario Peshev, the CEO of WordPress agency DevriX, <a href=\"https://www.prweb.com/releases/renowned_wordpress_core_contributor_mario_peshev_acquires_wp_crm_system_to_drive_business_development_on_worlds_largest_web_platform/prweb17328749.htm\">officially announced</a> he had acquired the <a href=\"https://wordpress.org/plugins/wp-crm-system/\">WP-CRM System</a> plugin this week. Formally, his company Premium WP Support is taking the reins for the project. Scott DeLuzio, the creator and previous owner of the plugin, <a href=\"https://scottdeluzio.com/wp-crm-system-acquired-by-mario-peshev/\">published the news</a> on his blog last month.</p>\n\n\n\n<p>DeLuzio originally built the plugin in 2015 after dissatisfaction with the solutions available on the market and having no control over the data, which was hosted on third-party services. He made the plugin available through his brand Amplify Plugins. Since then, his company has shifted focus to add-ons for eCommerce plugins in the WordPress space.  Therefore, he decided to sell his CRM project.</p>\n\n\n\n<p>Peshev began his career as an engineer with enterprise-grade development. He said he was already familiar with CRMs after having worked with them long before he switched to WordPress development. It shaped the focus of DevriX toward small and medium-sized enterprises (SME) and growing businesses using WordPress as an application framework.</p>\n\n\n\n<p>&ldquo;Over the past few years, we&rsquo;ve built a number of integral solutions in-house for our brands &mdash; including our business process management system or our time tracking software,&rdquo; he said. &ldquo;When I stumbled upon a tweet by Scott DeLuzio disclosing the sale of a couple of plugins, I got hooked almost immediately.&rdquo;</p>\n\n\n\n<p>Peshev described WP-CRM System as being closely aligned with his company&rsquo;s goal, which is to support WordPress-driven businesses given clear metrics for maximum ROI.</p>\n\n\n\n<p>&ldquo;It&rsquo;s powerful, integrates seamlessly with most form plugins (intercepting leads through Contact Form 7 or Gravity Forms), comes with Slack callbacks when leads come in, provides multiple views for different use cases, and gets the job done through a single, yet powerful dashboard,&rdquo; he said. &ldquo;Working with an existing customer base is also a great opportunity to refine the rest of our product offerings and work closely with businesses eager to evolve without having to migrate away from WordPress.&rdquo;</p>\n\n\n\n<h2>The Future of WP-CRM System</h2>\n\n\n\n<p class=\"has-drop-cap\">For the short term, Peshev said his quality assurance team is doing extensive testing for performance opportunities. It is also testing to see how the plugin can integrate with other popular business plugins. However, the main goal is to push out some usability improvements.</p>\n\n\n\n<p>&ldquo;In the long term, we will be expanding into several verticals &mdash; adding industry-specific features that better serve groups of businesses, such as accounting firms, creative studios, and event management companies,&rdquo; he said. &ldquo;The product is customer-led and we rely a lot on existing customers to improve usability even further.&rdquo;</p>\n\n\n\n<p>The CRM market is becoming more competitive. Peshev said the contract on this acquisition was already signed by the time Automattic publicly announced its <a href=\"https://wptavern.com/automattic-acquires-zero-bs-crm-considers-rebranding-it-as-jetpack-crm\">acquisition of Zero BS CRM</a> (now <a href=\"https://wptavern.com/zero-bs-crm-rebrands-and-relaunches-as-jetpack-crm\">Jetpack CRM</a>) last year. However, he feels like there is plenty of room for growth for both plugins in the space.</p>\n\n\n\n<p>&ldquo;Larger businesses have to scale with certain constraints in mind &mdash; both from a managerial standpoint, and when it comes to responsibility,&rdquo; he said. &ldquo;This is how startups emerge and quickly acquire certain industries or niche markets. Automattic is known to spread across other business segments, such as the hosting or eCommerce ecosystems. I certainly don&rsquo;t believe it sets the right tone, but I&rsquo;m also not concerned about yet another CRM solution entering the space. In this case, it&rsquo;s a mutual effort toward strengthening the position of WordPress in the SME space, bringing more opportunities to matured businesses, and preventing businesses from &lsquo;outgrowing&rsquo; WordPress as a business platform.&rdquo;</p>\n\n\n\n<p>The major player in the CRM market is HubSpot, but it pushes users to an app that is hosted off-site, which is the opposite approach of both WP-CRM System and Jetpack CRM.</p>\n\n\n\n<p>Peshev said his company used to be a HubSpot agency partner between 2017 and 2019. However, they terminated the partnership because HubSpot&rsquo;s focus was on building an opinionated business ecosystem that was cluttered and incompatible with other solutions. The goal seemed to be to push users toward other CMS-type software that they owned.</p>\n\n\n\n<p>&ldquo;WP-CRM System feels native to the WordPress user,&rdquo; said Peshev. &ldquo;With simpler sales cycles, it doesn&rsquo;t feel overwhelming. You don&rsquo;t need to spend forever sifting through options and filling out complex forms. WP-CRM System is designed for growing businesses that used to rely on group chats, emails, and spreadsheets, and can&rsquo;t justify the administrative overhead (or pricing) of the giants in the CRM space. The market is indeed saturated, especially outside of WordPress, and segmentation is the best strategy here: evolving a CRM for a specific segment (WordPress users) and audiences (mostly service businesses) in our case, and developing separate extensions for verticals that reach out more frequently.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Aug 2020 18:23:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:52:\"WPTavern: MotoPress Acquires Gutenix WordPress Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=103914\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:149:\"https://wptavern.com/motopress-acquires-gutenix-wordpress-theme?utm_source=rss&utm_medium=rss&utm_campaign=motopress-acquires-gutenix-wordpress-theme\";s: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:2654:\"<p>MotoPress, a theme and plugin shop in operation since 2013, has <a href=\"https://motopress.com/blog/motopress-acquires-gutenix-wordpress-multipurpose-theme/\">acquired the Gutenix WordPress theme</a> and its commercial <a href=\"https://zeguten.zemez.io/\">ZeGuten</a> blocks plugin for Gutenberg. The free theme currently has more than 700 active installs after nine months on <a href=\"https://wordpress.org/themes/gutenix/\">WordPress.org</a>.</p>\n\n\n\n<p>MotoPress already has a number of successful niche WordPress themes and plugins but Gutenix fills the gap for a multipurpose theme. It was developed to work well with popular page builder plugins, and includes dedicated starter template libraries for Elementor, Brizy, and the block editor. The theme&rsquo;s commercial upgrades bundle the GutenixPro premium plugin, 30+ starter sites, and the ZeGuten plugin.</p>\n\n\n\n<img />\n\n\n\n<p>MotoPress is more well-known for its <a rel=\"noreferrer noopener\" href=\"https://motopress.com/products/hotel-booking/\" target=\"_blank\">Hotel Booking plugin</a> and its associated add-ons. The company also develops a block collection plugin called&nbsp;<a rel=\"noreferrer noopener\" href=\"https://wordpress.org/plugins/getwid/\" target=\"_blank\">Getwid Gutenberg blocks</a>, which has more than 10,000 active installs and is growing in popularity. Getwid is unique in that the collection is aimed at developers. The plugin comes with a free style kit that includes theme support snippets and CSS classes to accelerate the development process of building custom themes. Its accompanying <a href=\"https://wordpress.org/themes/getwid-base/\">Getwid Base Theme</a> has more than 2,000 active installs.</p>\n\n\n\n<p>Even though MotoPress is already developing its own block collection and base theme, the company saw value in acquiring a more multipurpose theme aimed at users of popular page builders.</p>\n\n\n\n<p>&rdquo;Such a multipurpose theme is something we always wanted to create &ndash; but have never had the time resource to invest in such a multidimensional and complex thing,&rdquo; MotoPress CEO Alexander Matienko said.</p>\n\n\n\n<p>&ldquo;After a fruitful exchange of experiences and visions with the Gutenix creators,I realized one thing. Not only are our companies aligned in our Gutenberg-driven passion, but we both have realistic views on the current WordPress market demands, where Elementor and other builders have been great value for people.&rdquo;</p>\n\n\n\n<p>Gutenix is MotoPress&rsquo; first acquisition and the company plans to keep it as a separate product that is independent of <a href=\"https://motopress.com/membership/\">MotoPress Club</a> membership.</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, 28 Aug 2020 04:34:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:75:\"WPTavern: Elementor 3.0 Allows Users to Create a Personalized Design System\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=103574\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:195:\"https://wptavern.com/elementor-3-0-allows-users-to-create-a-personalized-design-system?utm_source=rss&utm_medium=rss&utm_campaign=elementor-3-0-allows-users-to-create-a-personalized-design-system\";s: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:5838:\"<p class=\"has-drop-cap\">Elementor version 3.0 was <a href=\"https://elementor.com/blog/elementor-3-new-professional-features/\">launched on Tuesday</a>. This release is the first major update to the plugin in over two years and is one of the largest upgrades in its history. The new version focuses on a design system, a new theme builder, and performance improvements. The driving motivation behind this release was to create global design tools, which is a shift from the plugin&rsquo;s roots as a mere page builder.</p>\n\n\n\n<p>One of my biggest complaints about <em>builder</em> plugins is that they have often approached design on the individual page level first. However, web design is not about how you can fancy up a page. It is about taking a holistic approach to the overall design of the site. When building single pages, users of such plugins far too often create more work for themselves, much of it better handled on a global scale. One of the cornerstones of development is to not repeat work you have already done. Builder plugins can too easily push those who use them toward such bad habits.</p>\n\n\n\n<p>Design should handle the foundational, global features first. Then, drill down to the atomic level when necessary. Builder plugins have almost exclusively gotten this backward in the past.</p>\n\n\n\n<p>Elementor 3.0 seeks to solve this problem by introducing its design system and a new theme builder. The latter is part of its pro offering. The design system is essentially a global style creator and is available in both the free and pro versions. This is a welcome addition to the plugin and should create a solution for those foundational elements that the plugin has been missing.</p>\n\n\n\n<p>&ldquo;Creating a site with a design system in mind (i.e. style guide, colors, and typography) is how professionals approach building websites,&rdquo; said Ariel Klikstein, the co-founder and CTO of Elementor. &ldquo;For many creators, this is an integral part of building the site as it helps them, their teams, and their clients to align and communicate around a consistent vision.&rdquo;</p>\n\n\n\n<p>The Elementor team is coming to terms with the principles that have long guided web designers. The goal is to apply these principles to a user interface, breaking outside the confines of code.</p>\n\n\n\n<p>&ldquo;Design system capabilities are among the pillars of building professional websites, as they give the ability to view and control the site elements from a centralized hub and apply sitewide changes to overall colors, typography, and layout,&rdquo; said Klikstein.</p>\n\n\n\n<h2>Elementor&rsquo;s Design System</h2>\n\n\n\n<img />Editing global colors with Elementor&rsquo;s design system.\n\n\n\n<p class=\"has-drop-cap\">Elementor is pitching its new design system as revolutionary. However, such design systems have long existed in the WordPress ecosystem. Theme developers have created similar systems for well over a decade, and they have since capitalized on WordPress&rsquo;s built-in customizer to do it in real time.</p>\n\n\n\n<p>The question is whether this new system ups the ante, creating a new baseline in which others must compete.</p>\n\n\n\n<p>That will be for users to decide. However, it does offer a plethora of options under its Site Settings menu. It allows end-users to customize colors, typography, and several other elements across the site. Current plugin users will have tools in their hands to do some more amazing things with Elementor, and they will be able to do them in a much more streamlined manner. Ultimately, it should save time and make it possible to update the site over the long term without re-editing old work.</p>\n\n\n\n<p>It is not particularly revolutionary, but it is something that should be standard for any sort of visual design system.</p>\n\n\n\n<p>&ldquo;While it&rsquo;s true that applying global styles was always possible using custom CSS code and themes, in Elementor V3.0 we made these options truly global,&rdquo; said Klikstein. &ldquo;Today they are independent of a theme, plugin, or widget as part of the element-based web design paradigm. The design system features are integrated into the editor workflow, without the need to use a single line of code. This will let the user implement global colors and fonts across any site element &mdash; be it a button, heading, or background. Then, if the user decides to change the color or a font style, he or she can change it once and apply it wherever it was previously placed in the global setting.&rdquo;</p>\n\n\n\n<p><em>To not mislead readers, note that most themes that have implemented such systems have also not required custom CSS or other code.</em></p>\n\n\n\n<p>Perhaps the bigger question is whether this new design system will be better than the upcoming <a href=\"https://make.wordpress.org/design/handbook/focuses/global-styles/\">global styles</a> feature in Gutenberg and core WordPress. The aims of the two are similar, but WordPress will undoubtedly launch its feature with a much more limited set of options. WordPress will also need buy-in from theme authors.</p>\n\n\n\n<p>Klikstein did not directly respond to the question of how WordPress&rsquo;s global styles feature impacted any decision that went into Elementor&rsquo;s design system feature. However, when cutting through the marketing cruft, he did say, &ldquo;It&rsquo;s great to see that Gutenberg/WordPress is also moving in this direction because we believe this is the best way to create consistent and maintainable websites.&rdquo;  He also said this feature was on the roadmap since the plugin&rsquo;s earlier theme builder concept.</p>\n\n\n\n<p>Gutenberg may not be much of a consideration for Elementor&rsquo;s development team. They are clearly carving their own path to success and outpacing others in the race to building websites through a visual interface.</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, 27 Aug 2020 20:35: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:93:\"WPTavern: Atomic Blocks Rebranded to Genesis Blocks, Migration Path to New Plugin Coming Soon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=103809\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:229:\"https://wptavern.com/atomic-blocks-rebranded-to-genesis-blocks-migration-path-to-new-plugin-coming-soon?utm_source=rss&utm_medium=rss&utm_campaign=atomic-blocks-rebranded-to-genesis-blocks-migration-path-to-new-plugin-coming-soon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4941:\"<p>StudioPress, which was acquired by WP Engine in 2018, is <a href=\"https://studiopress.blog/announcing-genesis-blocks/\">rebranding</a> its popular <a href=\"https://wordpress.org/plugins/atomic-blocks/\">Atomic Blocks</a> plugin to <a href=\"https://wordpress.org/plugins/genesis-blocks/\">Genesis Blocks</a>. WP Engine also acquired Atomic Blocks in 2018, growing the plugin&rsquo;s user base from 3,000 active installs to more than 60,000 over the past two years. The purpose of rebranding is to more tightly align the block collection with the Genesis brand.</p>\n\n\n\n<p>&ldquo;We decided to elevate the Genesis brand to be the parent brand for all of our block and theme products moving forward,&rdquo; WP Engine VP of web strategy David Vogelpohl said. &ldquo;While we could have changed the title of the Atomic Blocks plugin, we wanted the slug to represent the Genesis brand so we decided to create a new plugin to achieve that outcome.&rdquo;</p>\n\n\n\n<p>Unfortunately, in order to get the preferred slug for the plugin, WP Engine has to create a new plugin, instead of renaming the existing one. The company is creating a migration tool to move the plugin&rsquo;s 60k users over to  Genesis Blocks.  &nbsp;</p>\n\n\n\n<p>&ldquo;Based on initial prototypes, the migration path will be automated for most users of the plugin,&rdquo; Vogelpohl said. &ldquo;We believe that migration technology will be available at the end of our next two-week sprint (starting next week), but we aren&rsquo;t able to commit to a date until more work has been completed.&rdquo;</p>\n\n\n\n<p>The new Genesis Blocks plugin will now be explicitly developed in support of StudioPress themes and the <a rel=\"noreferrer noopener\" href=\"https://studiopress.com/genesis-pro?__hstc=141311597.cfcc56073bf7750c2817e395dcab7eff.1598463759872.1598463759872.1598463759872.1&__hssc=141311597.1.1598463759872&__hsfp=1755708871\" target=\"_blank\">Genesis Pro package</a>. This doesn&rsquo;t mean the blocks cannot be used with other themes. Rather, it&rsquo;s more clear to users that the collection is designed to look best with WP Engine&rsquo;s products.</p>\n\n\n\n<p>Genesis Blocks contains the same 22 free blocks found in its predecessor but can be upgraded via a Genesis Pro subscription to add more blocks, full page layouts, and pre-built sections. The subscription also includes access to advanced block-level user permissions as well as support for the Genesis Framework and its commercial child themes.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<a href=\"https://cloudup.com/ci12kCBu6zy\"><img src=\"https://cldup.com/0-CWURP7ZY.gif\" alt=\"Pro\" width=\"1198\" height=\"794\" /></a>\n</div>\n\n\n\n<p>Moving forward, all new features will be added to the new Genesis Blocks plugin, while support for Atomic Blocks gets scaled back to security releases and updates necessary for compatibility with WordPress.</p>\n\n\n\n<p>&ldquo;<a href=\"https://twitter.com/wpdavidv\"></a>In time, it will be deprecated, but only after enough users have migrated over,&rdquo; Vogelpohl said. &ldquo;We don&rsquo;t have a date for that yet and any future decisions will be based on the percentage of people who have migrated and the effects of that decision on the users who have not migrated at that time. It&rsquo;s important for us to make decisions that are respectful of the users of any of our products and the sites they manage. We will clearly communicate future plans and dates for deprecation, but for now, users of Atomic Blocks will have plenty of time to migrate. We will continue to update Atomic Blocks for security releases and functionality relative to updates in WordPress until the plugin is officially wound down.&rdquo;</p>\n\n\n\n<p>When WP Engine acquired StudioPress and the Genesis Framework, the company said it planned to integrate it tightly into the the WP Engine Digital Experience Platform so it performs better there than anywhere else. It&rsquo;s an interesting trend among WordPress hosting companies, similar to <a href=\"https://wptavern.com/godaddy-acquires-themebeans-coblocks-block-gallery-and-block-unit-tests\">GoDaddy&rsquo;s acquisition of CoBlocks and Themebeans</a>, where the company is gradually refining its product acquisitions to provide its own flavor or &ldquo;experience&rdquo; of WordPress.</p>\n\n\n\n<p>WP Engine also plans to rebrand the <a href=\"https://wordpress.org/plugins/block-lab/\">Block Lab</a> plugin as Genesis Custom Blocks. The plugin will also have a similar migration path for its 8,000 active installs. WP Engine&rsquo;s goal with the rebranding effort is to make page building with the block editor more streamlined, as well as an extension of its current product lines.</p>\n\n\n\n<p>&ldquo;Genesis Blocks will play a big role in how we deliver value under Full Site Editing in the future, so this is the first step in helping the Genesis community and anyone in WordPress build better sites faster with the block editor,&rdquo; Vogelpohl said.</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, 27 Aug 2020 00:41:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}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:\"Sun, 27 Sep 2020 16:37:44 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Sun, 27 Sep 2020 16:15:10 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";s:16:\"content-encoding\";s:2:\"br\";}}s:5:\"build\";s:14:\"20200502153337\";}','no'),(53662,'_site_transient_timeout_php_check_8706d9e16ec2aa6542c624d1e3c9facd','1601829209','no'),(53663,'_site_transient_php_check_8706d9e16ec2aa6542c624d1e3c9facd','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:0;}','no'),(53614,'_transient_timeout_jetpack_woocommerce_analytics_cart_checkout_info_cache','1601260651','no'),(53615,'_transient_jetpack_woocommerce_analytics_cart_checkout_info_cache','a:4:{s:29:\"cart_page_contains_cart_block\";i:0;s:33:\"cart_page_contains_cart_shortcode\";i:0;s:37:\"checkout_page_contains_checkout_block\";i:0;s:41:\"checkout_page_contains_checkout_shortcode\";i:0;}','no'),(53682,'_transient_timeout_jetpack_a8c_data','1601311050','no'),(53683,'_transient_jetpack_a8c_data','a:4:{s:4:\"a12s\";i:1272;s:9:\"countries\";i:76;s:9:\"languages\";i:95;s:16:\"featured_plugins\";a:4:{i:0;s:11:\"woocommerce\";i:1;s:14:\"wp-super-cache\";i:2;s:14:\"wp-job-manager\";i:3;s:15:\"co-authors-plus\";}}','no'),(53726,'_transient_timeout_jetpack_rewind_state','1601226465','no'),(53727,'_transient_jetpack_rewind_state','O:8:\"stdClass\":4:{s:6:\"reason\";s:18:\"host_not_supported\";s:5:\"state\";s:11:\"unavailable\";s:12:\"last_updated\";s:29:\"2020-09-27T16:37:45.112+00:00\";s:9:\"has_cloud\";b:0;}','no'),(53684,'_transient_timeout_jpp_li_8d15310a1dcf1aadefd22550b0d5257c','1601224710','no'),(53685,'_transient_jpp_li_8d15310a1dcf1aadefd22550b0d5257c','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\";s:4:\"4714\";s:6:\"expire\";i:1601224710;}','no'),(53694,'_transient_timeout_feed_mod_0d102f2a1f4d6bc90eb8c6ffe18e56ed','1601267852','no'),(53695,'_transient_feed_mod_0d102f2a1f4d6bc90eb8c6ffe18e56ed','1601224652','no'),(53696,'_transient_timeout_wc_low_stock_count','1603816652','no'),(53697,'_transient_wc_low_stock_count','0','no'),(53698,'_transient_timeout_wc_outofstock_count','1603816652','no'),(53699,'_transient_wc_outofstock_count','0','no'),(53736,'_transient_timeout_jetpack_sync_constants_await','1601228440','no'),(53737,'_transient_jetpack_sync_constants_await','1601224840.4742','no'),(53653,'_transient_timeout__woocommerce_helper_subscriptions','1601225308','no'),(53654,'_transient__woocommerce_helper_subscriptions','a:0:{}','no'),(53742,'_transient_timeout_jetpack_sync_callables_await','1601225005','no'),(53743,'_transient_jetpack_sync_callables_await','1601224945.4212','no'),(53686,'_transient_timeout_jpp_headers_updated_recently','1601311050','no'),(53687,'_transient_jpp_headers_updated_recently','1','no'),(53688,'_site_transient_timeout_browser_ce4e9e986b0fbc713624d54b83c36283','1601829451','no'),(53689,'_site_transient_browser_ce4e9e986b0fbc713624d54b83c36283','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"85.0.4183.121\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(53690,'_transient_timeout_tribe_aggregator_services_list','1601311051','no'),(53691,'_transient_tribe_aggregator_services_list','a:1:{s:6:\"origin\";a:1:{i:0;O:8:\"stdClass\":2:{s:2:\"id\";s:3:\"csv\";s:4:\"name\";s:8:\"CSV File\";}}}','no'),(53692,'_transient_timeout_feed_0d102f2a1f4d6bc90eb8c6ffe18e56ed','1601267852','no'),(53693,'_transient_feed_0d102f2a1f4d6bc90eb8c6ffe18e56ed','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"The Events Calendar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://theeventscalendar.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"WordPress event plugins for awesome people\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Sep 2020 20:21: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: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:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Introducing The Events Calendar and Purplepass Integration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://theeventscalendar.com/blog/introducing-the-events-calendar-and-purplepass-integration/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 23 Sep 2020 20:21: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:4:\"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:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"What\'s New\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://theeventscalendar.com/?p=2189224\";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:651:\"<p>Big news for users of The Events Calendar: We’re launching a new partnership with Purplepass that takes your ticketing capabilities to the next level. This integration comes with lots of opportunities for calendar owners, with features like assigned seating and ticket delivery by mail. Curious to learn more? Read on to see if you could&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/blog/introducing-the-events-calendar-and-purplepass-integration/\">Introducing The Events Calendar and Purplepass Integration</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:18:\"Modern Tribe, Inc.\";s: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:4648:\"<p><span style=\"font-weight: 400;\">Big news for users of The Events Calendar: We’re launching </span><a href=\"https://theeventscalendar.com/purplepass/\"><span style=\"font-weight: 400;\">a new partnership with Purplepass</span></a><span style=\"font-weight: 400;\"> that takes your ticketing capabilities to the next level. This integration comes with lots of opportunities for calendar owners, with features like assigned seating and ticket delivery by mail.</span></p>\n<p><span style=\"font-weight: 400;\">Curious to learn more? Read on to see if you could use the extra horsepower provided by Purplepass.</span></p>\n<h2>How does this integration work?</h2>\n<p><a href=\"https://theeventscalendar.com/purplepass/\"><span style=\"font-weight: 400;\">Purplepass easily syncs with The Events Calendar</span></a><span style=\"font-weight: 400;\"> on WordPress, which means you can continue managing your events right from your WordPress dashboard. No need to create the same event in two places!</span></p>\n<p><span style=\"font-weight: 400;\">When you create your events through The Events Calendar, they’ll also be automatically listed on the Purplepass website, which increases your audience and sales potential.</span></p>\n<h2>What’s the difference between Event Tickets and Purplepass?</h2>\n<p><a href=\"https://theeventscalendar.com/products/wordpress-event-tickets/\"><span style=\"font-weight: 400;\">Event Tickets and Event Tickets Plus</span></a><span style=\"font-weight: 400;\"> are ticketing and registration plugins for WordPress created by the team at The Events Calendar. Event Tickets is a free ticketing plugin; Event Tickets Plus is a premium subscription that comes with extra features like custom registration fields and a QR code ticket scanner.</span></p>\n<p><span style=\"font-weight: 400;\">Purplepass is a third-party ticketing solution. This event management software provides event planners with everything they need in one spot, including ticket packages, seating maps, and reporting. </span></p>\n<p><span style=\"font-weight: 400;\">For many The Events Calendar users, our Event Tickets and Event Tickets Plus plugins meet all their ticketing and registration needs. But if you’re looking for features like assigned seating or ticket delivery by mail, you’ll want to check out The Events Calendar/Purplepass integration.</span></p>\n<h2>What does it cost to use Event Tickets with Purplepass?</h2>\n<p><span style=\"font-weight: 400;\">As always, our core </span><a href=\"https://theeventscalendar.com/products/wordpress-events-calendar/\"><span style=\"font-weight: 400;\">The Events Calenda</span></a><span style=\"font-weight: 400;\">r plugin is free. </span></p>\n<p><span style=\"font-weight: 400;\">If you choose to use the Purplepass integration, Purplepass charges a fee of 2.5% + $0.99 per ticket, with options for mailing printed tickets and/or wristbands for an additional cost. The software does not charge for map building, free events, COMP tickets, signup fees or include contracts.</span></p>\n<h2>How do I get started?</h2>\n<p><span style=\"font-weight: 400;\">It’s easy! You can have The Events Calendar and Purplepass integration up and running in minutes by following these steps:</span></p>\n<ol>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Create your Purplepass account.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Install the </span><a href=\"https://wordpress.org/plugins/purplepass-ticketing/\"><span style=\"font-weight: 400;\">Purplepass plugin for WordPress.</span></a></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Start selling tickets!</span></li>\n</ol>\n<h2>Questions?</h2>\n<p><span style=\"font-weight: 400;\">We have answers! Check out our </span><a href=\"https://theeventscalendar.com/purplepass/\"><span style=\"font-weight: 400;\">Purplepass integration page</span></a><span style=\"font-weight: 400;\"> for a features overview and FAQ, or read the documentation for the </span><a href=\"https://wordpress.org/plugins/purplepass-ticketing/\"><span style=\"font-weight: 400;\">Purplepass ticketing plugin</span></a><span style=\"font-weight: 400;\">. If you have any other questions, our </span><a href=\"https://theeventscalendar.com/contact/\"><span style=\"font-weight: 400;\">support team</span></a><span style=\"font-weight: 400;\"> is happy to help.</span></p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/blog/introducing-the-events-calendar-and-purplepass-integration/\">Introducing The Events Calendar and Purplepass Integration</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Community Tickets 4.7.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://theeventscalendar.com/release-notes/community-tickets/community-tickets-4-7-5/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 18 Sep 2020 22:08: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:17:\"Community Tickets\";s: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:\"release notes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://theeventscalendar.com/?p=2188019\";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:622:\"<p>&#160; Summary Maintenance Release Community Tickets 4.7.5 introduces a couple of minor fixes as well as a tweak that removes some unnecessary HTML from the plugin files. 📥 Installation &#160; This is a minor release with no template updates, so it should be smooth sailing when updating. That said, it’s always a good idea to&#160;backup&#160;your&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/release-notes/community-tickets/community-tickets-4-7-5/\">Community Tickets 4.7.5</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:5:\"Geoff\";s: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:3038:\"\n<p>&nbsp;</p>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\" style=\"flex-basis:33.3%\">\n<h3>Summary</h3>\n\n\n\n<p style=\"font-size:14px\">Maintenance Release</p>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\">\n<p class=\"has-medium-font-size\">Community Tickets 4.7.5 introduces a couple of minor fixes as well as a tweak that removes some unnecessary HTML from the plugin files.</p>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator\"/>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\">\n<h4><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f4e5.png\" alt=\"📥\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> Installation</h4>\n\n\n\n<p>&nbsp;</p>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\">\n<p>This is a minor release with no template updates, so it should be smooth sailing when updating. That said, it’s always a good idea to&nbsp;<a href=\"https://theeventscalendar.com/knowledgebase/k/creating-site-backups/\">backup</a>&nbsp;your site and test changes in a&nbsp;<a href=\"https://theeventscalendar.com/knowledgebase/k/creating-and-using-a-wordpress-staging-site/\">development environment</a>&nbsp;before installing this on your live site, as you would with any other WordPress update.</p>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator\"/>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\">\n<h4><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f41b.png\" alt=\"🐛\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> Fixes</h4>\n\n\n\n<p></p>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\">\n<p class=\"has-medium-font-size\">The following changes were made:</p>\n\n\n\n<ul><li>Remove repetitive attendee list titles on the Attendees and Sales report pages.</li><li>Use a redirect instead of showing an empty list when accessing restricted URLs.</li><li>Removed unused HTML files in the plugin root folder that were there for your reference to our plugin&#8217;s data collection transparency. This information is included within the WordPress Privacy Guide at <code>/wp-admin/privacy-policy-guide.php</code>.</li></ul>\n\n\n\n<p></p>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator\"/>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\" style=\"flex-basis:33.3%\">\n<h4><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f5e3.png\" alt=\"🗣\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> Translations</h4>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\">\n<p class=\"has-medium-font-size\">Seventeen strings were updated in this release.</p>\n\n\n\n<ul><li>0 new strings</li><li>17 updated strings</li><li>0 fuzzied strings</li><li>0 obsoleted strings</li></ul>\n</div>\n</div>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/release-notes/community-tickets/community-tickets-4-7-5/\">Community Tickets 4.7.5</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Community Events 4.8.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://theeventscalendar.com/release-notes/community-events/community-events-4-8-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:\"Fri, 18 Sep 2020 22:00: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:16:\"Community Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:13:\"release notes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://theeventscalendar.com/?p=2188016\";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:618:\"<p>&#160; Summary Maintenance Release Community Events 4.8.1 introduces a couple of minor fixes for the editing process as well as tweaks that improve the integration with our Virtual Events add-on. 📥 Installation &#160; This is a minor release that should be smooth sailing when updating. That said, it’s always a good idea to backup your site and&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/release-notes/community-events/community-events-4-8-1/\">Community Events 4.8.1</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:5:\"Geoff\";s: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:3533:\"\n<p>&nbsp;</p>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\" style=\"flex-basis:33.3%\">\n<h3>Summary</h3>\n\n\n\n<p style=\"font-size:14px\">Maintenance Release</p>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\">\n<p class=\"has-medium-font-size\">Community Events 4.8.1 introduces a couple of minor fixes for the editing process as well as tweaks that improve the integration with our <a href=\"https://theeventscalendar.com/products/wordpress-virtual-events/\">Virtual Events add-on</a>.</p>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator\"/>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\">\n<h4><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f4e5.png\" alt=\"📥\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> Installation</h4>\n\n\n\n<p>&nbsp;</p>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\">\n<p>This is a minor release that should be smooth sailing when updating. That said, it’s always a good idea to <a href=\"https://theeventscalendar.com/knowledgebase/k/creating-site-backups/\">backup</a> your site and test changes in a <a href=\"https://theeventscalendar.com/knowledgebase/k/creating-and-using-a-wordpress-staging-site/\">development environment</a> before installing this on your live site, as you would with any other WordPress update.</p>\n\n\n\n<p>One template was updated in this release, so please check if any custom development has been done on it before updating.</p>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator\"/>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\">\n<h4><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f41b.png\" alt=\"🐛\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> Fixes</h4>\n\n\n\n<p></p>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\">\n<p class=\"has-medium-font-size\">The following fixes are included:</p>\n\n\n\n<ul><li>Show the saved category and tags while editing the event on the front end.</li><li>Ensure that submissions with multiple categories or tags is properly saved.</li><li>Add more spacing between checkboxes for the Virtual Events integration.</li></ul>\n\n\n\n<p></p>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator\"/>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\">\n<h4><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/2699.png\" alt=\"⚙\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> Developers</h4>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\">\n<p class=\"has-medium-font-size\">The following template was updated in this release:</p>\n\n\n\n<p><code>community/modules/taxonomy</code></p>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator\"/>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\" style=\"flex-basis:33.3%\">\n<h4><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f5e3.png\" alt=\"🗣\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> Translations</h4>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\">\n<p class=\"has-medium-font-size\">Three strings were updated in this release.</p>\n\n\n\n<ul><li>0 new strings</li><li>3 updated strings</li><li>0 fuzzied strings</li><li>0 obsoleted strings</li></ul>\n</div>\n</div>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/release-notes/community-events/community-events-4-8-1/\">Community Events 4.8.1</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Event Tickets Plus 5.0.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://theeventscalendar.com/release-notes/event-tickets-plus/event-tickets-plus-5-0-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:\"Fri, 18 Sep 2020 21:51: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:2:{i:0;a:5:{s:4:\"data\";s:18:\"Event Tickets Plus\";s: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:\"release notes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://theeventscalendar.com/?p=2188014\";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:640:\"<p>&#160; Summary Maintenance Release Event Tickets 5.0.1 includes a couple of minor fixes, one of which helps prevent WooCommerce conflicts from happening with some payment gateways. 📥 Installation &#160; This is a minor release that should be smooth sailing when updating. That said, it’s always a good idea to backup your site and test changes in a development&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/release-notes/event-tickets-plus/event-tickets-plus-5-0-1/\">Event Tickets Plus 5.0.1</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:5:\"Geoff\";s: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:2901:\"\n<p>&nbsp;</p>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\" style=\"flex-basis:33.3%\">\n<h3>Summary</h3>\n\n\n\n<p style=\"font-size:14px\">Maintenance Release</p>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\">\n<p class=\"has-medium-font-size\">Event Tickets 5.0.1 includes a couple of minor fixes, one of which helps prevent WooCommerce conflicts from happening with some payment gateways.</p>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator\"/>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\">\n<h4><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f4e5.png\" alt=\"📥\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> Installation</h4>\n\n\n\n<p>&nbsp;</p>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\">\n<p>This is a minor release that should be smooth sailing when updating. That said, it’s always a good idea to <a href=\"https://theeventscalendar.com/knowledgebase/k/creating-site-backups/\">backup</a> your site and test changes in a <a href=\"https://theeventscalendar.com/knowledgebase/k/creating-and-using-a-wordpress-staging-site/\">development environment</a> before installing this on your live site, as you would with any other WordPress update.</p>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator\"/>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\">\n<h4><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f41b.png\" alt=\"🐛\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> Fixes</h4>\n\n\n\n<p></p>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\">\n<p class=\"has-medium-font-size\">The following fixes are included:</p>\n\n\n\n<ul><li>Remove the <code>\'provider\'</code> query parameter from WooCommerce Cart and Checkout links to avoid conflicts with some payment gateways. It still gets added to the Attendee Registration page&#8217;s URL.</li><li>Only display the Attendee Registration notice to sites that have upgraded as well as the Tribe Settings page.</li></ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator\"/>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\" style=\"flex-basis:33.3%\">\n<h4><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f5e3.png\" alt=\"🗣\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> Translations</h4>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\">\n<p class=\"has-medium-font-size\">Six strings were updated in this release.</p>\n\n\n\n<ul><li>0 new strings</li><li>6 updated strings</li><li>0 fuzzied strings</li><li>0 obsoleted strings</li></ul>\n</div>\n</div>\n\n\n\n<p>&nbsp;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/release-notes/event-tickets-plus/event-tickets-plus-5-0-1/\">Event Tickets Plus 5.0.1</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Event Tickets 5.0.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://theeventscalendar.com/release-notes/event-tickets/event-tickets-5-0-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:\"Fri, 18 Sep 2020 21:45: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:2:{i:0;a:5:{s:4:\"data\";s:13:\"Event Tickets\";s: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:\"release notes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://theeventscalendar.com/?p=2187991\";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:649:\"<p>&#160; Summary Maintenance Release Event Tickets 5.0.1 resolves a number of bugs that improve attendee reporting, template overrides, and language translations. 📥 Installation &#160; This is a minor release that should be smooth sailing when updating. That said, it’s always a good idea to backup your site and test changes in a development environment before installing this on your&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/release-notes/event-tickets/event-tickets-5-0-1/\">Event Tickets 5.0.1</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:5:\"Geoff\";s: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:4965:\"\n<p>&nbsp;</p>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\" style=\"flex-basis:33.3%\">\n<h3>Summary</h3>\n\n\n\n<p style=\"font-size:14px\">Maintenance Release</p>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\">\n<p class=\"has-medium-font-size\">Event Tickets 5.0.1 resolves a number of bugs that improve attendee reporting, template overrides, and language translations.</p>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator\"/>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\">\n<h4><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f4e5.png\" alt=\"📥\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> Installation</h4>\n\n\n\n<p>&nbsp;</p>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\">\n<p>This is a minor release that should be smooth sailing when updating. That said, it’s always a good idea to <a href=\"https://theeventscalendar.com/knowledgebase/k/creating-site-backups/\">backup</a> your site and test changes in a <a href=\"https://theeventscalendar.com/knowledgebase/k/creating-and-using-a-wordpress-staging-site/\">development environment</a> before installing this on your live site, as you would with any other WordPress update.</p>\n\n\n\n<p>There are a few updates to template files in this release, so please check any custom development that may have been done in the plugin and consult the <a href=\"https://docs.theeventscalendar.com/product/event-tickets/\">documentation</a> before updating.</p>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator\"/>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\">\n<h4><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f41b.png\" alt=\"🐛\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> Fixes</h4>\n\n\n\n<p></p>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\">\n<p class=\"has-medium-font-size\">The following fixes were made</p>\n\n\n\n<ul><li>Ensure the Attendees List title for the Attendees report is clean and not replicated on the page for the admin area and front-en views.</li><li>Use <code>the_title</code> filter when getting a list of post titles moving tickets.</li><li>Use the correct default date for initial Ticket start sale and end sale dates for Classic Editor.</li><li>Add the RSVP block ID which means it can be linked to directly with an anchor.</li><li>Prevent 301 redirects to the homepage while handling Tribe Commerce checkout process.</li><li>Use the correct file path for modal template overrides.</li><li>Use a more robust way of checking the validity of post IDs to account for a BuddyPress page having a Post ID of <code>0</code>.</li><li>Remove a duplicate <code>button_id</code> from <code>$args</code> in the submit button modal template.</li><li>Ensure the required label for the ARI checkboxes is printed.</li><li>Prevent PHP errors in the <code>tickets/view-link.php</code> template in the automated testing suite.</li></ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator\"/>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\" style=\"flex-basis:33.33%\">\n<h4><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/2699.png\" alt=\"⚙\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> Developers</h4>\n\n\n\n<p></p>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\">\n<p class=\"has-medium-font-size\">A new filter was introduced</p>\n\n\n\n<p><code>tribe_tickets_attendees_show_view_title</code></p>\n\n\n\n<p class=\"has-medium-font-size\">Some templates were updated:</p>\n\n\n\n<ul><li><code>blocks/rsvp/status/going</code></li><li><code>blocks/rsvp/status/not-going</code></li><li><code>blocks/tickets/submit-button-modal</code></li><li><code>registration-js/attendees/fields/checkbox</code></li><li><code>tickets/view-link</code></li><li><code>v2/rsvp</code></li><li><code>v2/rsvp/actions/rsvp/going</code></li><li><code>v2/rsvp/actions/rsvp/not-going</code></li><li><code>v2/rsvp/details/attendance</code></li></ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator\"/>\n\n\n\n<div class=\"wp-block-columns\">\n<div class=\"wp-block-column\" style=\"flex-basis:33.3%\">\n<h4><img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f5e3.png\" alt=\"🗣\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> Translations</h4>\n</div>\n\n\n\n<div class=\"wp-block-column\" style=\"flex-basis:66.66%\">\n<p class=\"has-medium-font-size\">We have added context to some of the strings and labels of the new RSVP block.</p>\n\n\n\n<p>As a result, there&#8217;s more fine-grained control when it comes to translating the block.</p>\n\n\n\n<ul><li>4 new strings</li><li>53 updated strings</li><li>No fuzzied strings</li><li>3 obsoleted strings</li></ul>\n</div>\n</div>\n\n\n\n<p>&nbsp;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/release-notes/event-tickets/event-tickets-5-0-1/\">Event Tickets 5.0.1</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"The Comedy Bureau Brings Comedy to the Masses With The Events Calendar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"https://theeventscalendar.com/blog/customer-examples/the-comedy-bureau-brings-comedy-to-the-masses-with-the-events-calendar/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Sep 2020 17:17:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Customer Spotlight\";s: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:4:\"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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://theeventscalendar.com/?p=2187592\";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:673:\"<p>Jake Kroeger was performing at open mics around Los Angeles when he realized something was missing: There wasn’t any online hub for information about the LA comedy scene. So Jake took it upon himself to create The Comedy Bureau, a comprehensive listing of comedy shows and open mics in the Los Angeles area. Ten years&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/blog/customer-examples/the-comedy-bureau-brings-comedy-to-the-masses-with-the-events-calendar/\">The Comedy Bureau Brings Comedy to the Masses With The Events Calendar</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:\"Lauren\";s: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:11796:\"<p><span style=\"font-weight: 400;\">Jake Kroeger was performing at open mics around Los Angeles when he realized something was missing: There wasn’t any online hub for information about the LA comedy scene. So Jake took it upon himself to create </span><a href=\"https://thecomedybureau.com/\"><span style=\"font-weight: 400;\">The Comedy Bureau</span></a><span style=\"font-weight: 400;\">, a comprehensive listing of comedy shows and open mics in the Los Angeles area.</span></p>\n<p><span style=\"font-weight: 400;\">Ten years later, The Comedy Bureau has become a pillar of the southern California comedy scene. Jake singlehandedly runs the site. He shares comedy news and a podcast in addition to maintaining a busy events calendar of shows and happenings in the community. </span></p>\n<p><span style=\"font-weight: 400;\">To highlight and promote events, Jake relies on The Events Calendar plugins to run a functional, filterable calendar, and to import events from venues and performers around town.</span></p>\n<h2><span style=\"font-weight: 400;\">Moving to The Events Calendar on WordPress</span></h2>\n<p><span style=\"font-weight: 400;\">Before migrating The Comedy Bureau website to WordPress in early 2020, Jake ran The Comedy Bureau on Tumblr.</span></p>\n<p><span style=\"font-weight: 400;\">“I had been scheming to take the site and update it off Tumblr for a long time,” he says. After years on Tumblr, an embedded Google calendar just wasn’t cutting it anymore. He needed something flexible and customizable. </span></p>\n<p><span style=\"font-weight: 400;\">So he hired a developer friend to help move the site to WordPress. They created a calendar using a combination of plugins, including </span><a href=\"https://theeventscalendar.com/products/wordpress-events-calendar/\"><span style=\"font-weight: 400;\">Events Calendar Pro</span></a><span style=\"font-weight: 400;\">, </span><a href=\"https://theeventscalendar.com/products/wordpress-calendar-filter-bar/\"><span style=\"font-weight: 400;\">Filter Bar</span></a><span style=\"font-weight: 400;\">, and </span><a href=\"https://theeventscalendar.com/products/event-aggregator/\"><span style=\"font-weight: 400;\">Events Aggregator</span></a><span style=\"font-weight: 400;\">.</span></p>\n<h2><span style=\"font-weight: 400;\">Making comedy accessible to the masses</span></h2>\n<p><span style=\"font-weight: 400;\">The Comedy Bureau’s calendar is brimming with events across LA and virtual events. From big names like Chelsea Peretti and Hannibal Buress to weekly neighborhood open mics, the calendars (one for </span><a href=\"https://thecomedybureau.com/shows/category/open-mic/\"><span style=\"font-weight: 400;\">open mics</span></a><span style=\"font-weight: 400;\">, one for </span><a href=\"https://thecomedybureau.com/shows/category/comedy-show/\"><span style=\"font-weight: 400;\">shows</span></a><span style=\"font-weight: 400;\">) feature events across a large area. </span></p>\n<p><span style=\"font-weight: 400;\">For Jake, the ability to create a map view using Events Calendar Pro is invaluable for in-person shows. Map view and location filtering make it easy for comedy fans to find nearby shows. For comedians, these features make it easier to find open mics in their own neighborhoods.</span></p>\n<p><div id=\"attachment_2187609\" style=\"width: 1894px\" class=\"wp-caption alignnone\"><img aria-describedby=\"caption-attachment-2187609\" class=\"wp-image-2187609 size-full\" src=\"https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-map-view.jpg\" alt=\"Map view of The Events Calendar\" width=\"1884\" height=\"1208\" srcset=\"https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-map-view.jpg 1884w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-map-view-300x192.jpg 300w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-map-view-665x426.jpg 665w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-map-view-133x85.jpg 133w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-map-view-768x492.jpg 768w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-map-view-1536x985.jpg 1536w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-map-view-430x276.jpg 430w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-map-view-645x414.jpg 645w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-map-view-1068x685.jpg 1068w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-map-view-460x295.jpg 460w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-map-view-1602x1027.jpg 1602w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-map-view-1074x689.jpg 1074w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-map-view-512x328.jpg 512w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-map-view-1611x1033.jpg 1611w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-map-view-1719x1102.jpg 1719w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-map-view-707x453.jpg 707w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-map-view-600x385.jpg 600w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-map-view-500x321.jpg 500w\" sizes=\"(max-width: 1884px) 100vw, 1884px\" /><p id=\"caption-attachment-2187609\" class=\"wp-caption-text\">Map view makes it easy for users to create a comedy itinerary.</p></div></p>\n<p><span style=\"font-weight: 400;\">The Comedy Bureau relies on </span><a href=\"https://theeventscalendar.com/products/wordpress-calendar-filter-bar/\"><span style=\"font-weight: 400;\">Filter Bar</span></a><span style=\"font-weight: 400;\"> to help users narrow down the calendar by type of performance, day of the week, price, or searching a performer’s name. You can filter for free improv events on Tuesday nights, for example, or filter the calendar to show events by venue or city.</span></p>\n<p><span style=\"font-weight: 400;\">“Most people don’t really know where to start in terms of searching for comedy here in LA because there’s so much,” Jake says. “This makes it easier. “</span></p>\n<p><span style=\"font-weight: 400;\">Between calendar filtering and map view, The Comedy Bureau’s users can quickly and easily find what they’re searching for. For Jake, this makes his site an asset to the local comedy scene. Fans benefit, and so do the venues and performers that gain an opportunity to connect with a new and growing audience.</span></p>\n<p><span style=\"font-weight: 400;\">“The calendar has helped a lot of people out,” Jake says. “They really understood they could make it to a bunch of different things in one night by seeing the proximity [on a map].”</span></p>\n<h2><span style=\"font-weight: 400;\">Easily importing events from around the web</span></h2>\n<p><span style=\"font-weight: 400;\">A major reason for The Comedy Bureau’s success is that the calendar features events hand selected by Jake. He scours event listings and uploads a CSV file using </span><a href=\"https://theeventscalendar.com/products/event-aggregator/\"><span style=\"font-weight: 400;\">Event Aggregator</span></a><span style=\"font-weight: 400;\"> to quickly import multiple events into his calendar at once. </span></p>\n<p><span style=\"font-weight: 400;\">But when COVID-19 began spreading in the U.S., Jake needed to adjust his approach to sharing events. These days, more comedy shows are happening on social media or Zoom than at venues. For now, Jake spends most of his time scouring Instagram and Facebook to find events.</span></p>\n<p><span style=\"font-weight: 400;\">For website owners that want to feature events from other organizers and calendars, </span><a href=\"https://theeventscalendar.com/products/event-aggregator/\"><span style=\"font-weight: 400;\">Event Aggregator</span></a><span style=\"font-weight: 400;\"> is a lifesaver. This plugin makes it easy to import events from Google, Eventbrite, Meetup, Facebook, and other sources around the web. With automated imports, you can let your plugin do all the busy work. Use publishing controls to decide whether imported events are published immediately or require approval.</span></p>\n<p><div id=\"attachment_2187608\" style=\"width: 1135px\" class=\"wp-caption alignnone\"><img aria-describedby=\"caption-attachment-2187608\" class=\"wp-image-2187608 size-full\" src=\"https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-event-aggregator.jpg\" alt=\"\" width=\"1125\" height=\"900\" srcset=\"https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-event-aggregator.jpg 1125w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-event-aggregator-300x240.jpg 300w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-event-aggregator-665x532.jpg 665w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-event-aggregator-106x85.jpg 106w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-event-aggregator-768x614.jpg 768w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-event-aggregator-430x344.jpg 430w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-event-aggregator-645x516.jpg 645w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-event-aggregator-1068x854.jpg 1068w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-event-aggregator-460x368.jpg 460w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-event-aggregator-1074x859.jpg 1074w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-event-aggregator-512x410.jpg 512w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-event-aggregator-663x530.jpg 663w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-event-aggregator-600x480.jpg 600w, https://s3.theeventscalendar.com/uploads/2020/09/case-study-comedy-bureau-event-aggregator-500x400.jpg 500w\" sizes=\"(max-width: 1125px) 100vw, 1125px\" /><p id=\"caption-attachment-2187608\" class=\"wp-caption-text\">Import events from Google, CSV files, Facebook, and other sources with Event Aggregator.</p></div></p>\n<h2><span style=\"font-weight: 400;\">Creating a comedy hub with room to grow</span></h2>\n<p><span style=\"font-weight: 400;\">After a decade of running The Comedy Bureau, Jake has earned serious street cred in the comedy community. His efforts have also started to pay off: He receives support from users via Patreon, and he&#8217;s been able to connect with movers and shakers in the industry. He produces gigs and works as a consultant, and before the pandemic, he gave comedy tours around LA through Airbnb.</span></p>\n<p><span style=\"font-weight: 400;\">In the future, Jake hopes to grow The Comedy Bureau beyond his community in Los Angeles. He envisions a version of The Comedy Bureau for New York City, Chicago, and other cities around the country and the world.</span></p>\n<p><span style=\"font-weight: 400;\">“There’s this perceived high barrier of entry with comedy,&#8221; Jake says. “I love giving people access and letting them know there’s plenty of ways to find what you like. It’s actually not that hard to go to it and see it and be part of it.”</span></p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/blog/customer-examples/the-comedy-bureau-brings-comedy-to-the-masses-with-the-events-calendar/\">The Comedy Bureau Brings Comedy to the Masses With The Events Calendar</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"How to Use QR Ticket Check-In on the Event Tickets Plus Mobile App\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://theeventscalendar.com/blog/how-to-use-qr-ticket-check-in-on-the-event-tickets-plus-mobile-app/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 09 Sep 2020 18:38:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:4:\"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:\"\";}i:1;a:5:{s:4:\"data\";s:13:\"Tips & Tricks\";s: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:4:\"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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://theeventscalendar.com/?p=2185488\";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:655:\"<p>There are lots of reasons to love the Event Tickets Plus plugin for WordPress. One of the biggest reasons: It comes with a QR ticket scanning app, which makes event check-in easier than ever.  Forget paper tickets and printed-out attendee lists. With the Event Tickets Plus App, you simply scan each attendee’s ticket at the&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/blog/how-to-use-qr-ticket-check-in-on-the-event-tickets-plus-mobile-app/\">How to Use QR Ticket Check-In on the Event Tickets Plus Mobile App</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:\"Lauren\";s: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:5277:\"<p><span style=\"font-weight: 400;\">There are lots of reasons to love the </span><a href=\"https://theeventscalendar.com/products/wordpress-event-tickets/\"><span style=\"font-weight: 400;\">Event Tickets Plus plugin</span></a><span style=\"font-weight: 400;\"> for WordPress. One of the biggest reasons: It comes with a QR ticket scanning app, which makes event check-in easier than ever. </span></p>\n<p><span style=\"font-weight: 400;\">Forget paper tickets and printed-out attendee lists. With the Event Tickets Plus App, you simply scan each attendee’s ticket at the door. No clunky printouts or complicated procedures.</span></p>\n<p><span style=\"font-weight: 400;\">Today, we’ll walk through how to use the Event Tickets Plus ticket scanning app. To get started, you’ll need to make sure you’ve purchased </span><a href=\"https://theeventscalendar.com/products/wordpress-event-tickets/\"><span style=\"font-weight: 400;\">Event Tickets Plus</span></a><span style=\"font-weight: 400;\">, set it up on your WordPress site, and download the Event Tickets Plus app for </span><a href=\"https://itunes.apple.com/us/app/event-tickets-plus/id1395674797?ls=1&amp;mt=8\"><span style=\"font-weight: 400;\">iOS</span></a><span style=\"font-weight: 400;\"> or </span><a href=\"https://play.google.com/store/apps/details?id=com.theeventscalendar.eventticketsplus\"><span style=\"font-weight: 400;\">Android</span></a><span style=\"font-weight: 400;\">.</span></p>\n<p><span style=\"font-weight: 400;\">Before we dive into the nitty gritty, here are a few good reasons to consider using a QR scanner for your tickets.</span></p>\n<h2><span style=\"font-weight: 400;\">Why use a QR scanner for your event tickets?</span></h2>\n<h3><span style=\"font-weight: 400;\">1. It helps prevent fraud.</span></h3>\n<p><span style=\"font-weight: 400;\">Unfortunately, ticket fraud happens from time to time. With the Event Tickets Plus app, you’ll receive a confirmation each time you scan a ticket. If a code has already been scanned, you’ll see an error message. This prevents attendees from re-using the same ticket.</span></p>\n<h3><span style=\"font-weight: 400;\">2. It speeds up the line.</span></h3>\n<p><span style=\"font-weight: 400;\">Do you host a lot of events with long lines of people waiting to get in, growing increasingly annoyed? Those days will be behind you when you use a quick and efficient QR scanner to speed up the check-in process.</span></p>\n<h3><span style=\"font-weight: 400;\">3. It simplifies your life.</span></h3>\n<p><span style=\"font-weight: 400;\">Scanning a ticket QR code from your phone or tablet couldn’t be easier, and attendees don’t need to worry about remembering to bring their tickets—they can simply pull up their tickets on their device.</span></p>\n<h3><span style=\"font-weight: 400;\">4. It improves your event’s street cred.</span></h3>\n<p><span style=\"font-weight: 400;\">Running your event with a slick, digital check-in process makes a better impression on your guests than collecting crinkled paper tickets. And who doesn’t want to feel a little bit more cool? (&#8230;just us?)</span></p>\n<h2><span style=\"font-weight: 400;\">How to set up the Event Tickets Plus app for mobile ticket check-in</span></h2>\n<p><span style=\"font-weight: 400;\">All it takes is a few quick steps to link the app to your Event Tickets Plus subscription.</span></p>\n<p><span style=\"font-weight: 400;\">Start by heading to your WordPress dashboard. From there, go to Events &gt; Settings &gt; Tickets. Under the QR Codes section, click Generate API Key to get the key you’ll plug into the app.</span></p>\n<p><span style=\"font-weight: 400;\">Once you’ve got your key, head to the app and enter it. You can also share this key with staff and volunteers so they can set up the app on their own devices—no access to your WordPress dashboard required.</span></p>\n<p><span style=\"font-weight: 400;\">And that’s it! You’re ready to start scanning tickets from the Event Tickets Plus app.</span></p>\n<p><b>Reminder: </b><span style=\"font-weight: 400;\">You need to have internet access while using the app. Wifi works best, but your phone’s data should also do the job.</span></p>\n<h2><span style=\"font-weight: 400;\">Get started with mobile ticket scanning for your WordPress site</span></h2>\n<p><span style=\"font-weight: 400;\">Download the Event Tickets Plus app for </span><a href=\"https://apps.apple.com/us/app/event-tickets-plus/id1395674797?ls=1\"><span style=\"font-weight: 400;\">iOS</span></a><span style=\"font-weight: 400;\"> or </span><a href=\"https://play.google.com/store/apps/details?id=com.theeventscalendar.eventticketsplus\"><span style=\"font-weight: 400;\">Android</span></a><span style=\"font-weight: 400;\"> today, and don’t forget to install </span><a href=\"https://theeventscalendar.com/products/wordpress-event-tickets/\"><span style=\"font-weight: 400;\">Event Tickets Plus</span></a><span style=\"font-weight: 400;\"> on your WordPress site. Happy ticketing!</span></p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/blog/how-to-use-qr-ticket-check-in-on-the-event-tickets-plus-mobile-app/\">How to Use QR Ticket Check-In on the Event Tickets Plus Mobile App</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:66:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"How to Improve SEO for Events with Structured Data\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://theeventscalendar.com/blog/tips/how-to-improve-seo-for-events-with-structured-data/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Sep 2020 18:58:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:13:\"Tips & Tricks\";s: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:4:\"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:\"\";}i:2;a:5:{s:4:\"data\";s:13:\"Online Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:14:\"Virtual Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://theeventscalendar.com/?p=2181707\";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:636:\"<p>What&#8217;s the secret to getting your events to show up in search results? For the most part, it&#8217;s the same SEO principles that apply to your website. There&#8217;s no substitute for good content, using semantic markup in your code, and remembering to do the small things, like adding alt text to non-decorative images. But you&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/blog/tips/how-to-improve-seo-for-events-with-structured-data/\">How to Improve SEO for Events with Structured Data</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:5:\"Geoff\";s: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:21788:\"\r\n<p>What&#8217;s the secret to getting your events to show up in search results? For the most part, it&#8217;s the same SEO principles that apply to your website. There&#8217;s no substitute for good content, using semantic markup in your code, and remembering to do the small things, like adding <code>alt</code> text to non-decorative images.</p>\r\n\r\n\r\n\r\n\r\n\r\n<p>But you can also go beyond traditional SEO best practices to optimize your events to appear in search results. One way to do this is with <strong>structured data</strong>. Below, we&#8217;ll walk through what structured data is, how it works, and how you can use it on your own calendar.</p>\r\n\r\n\r\n\r\n<h2>Structured <em>huh</em>?</h2>\r\n\r\n\r\n\r\n\r\n\r\n<p><a href=\"https://developers.google.com/search/docs/guides/intro-structured-data\">Structured data</a> is metadata that helps search engines interpret the content on your site. In most cases, that refers to the code language, or syntax, that is being used to structure the data. In the case of websites — and, by extension, online calendars — that specifically refers to <strong>schemas</strong>.</p>\r\n\r\n\r\n\r\n<p>Schemas are the code formatting options for structured data. There&#8217;s an entire community over at <a href=\"https://schema.org\">Schema.org</a> that consists of search and tech giants like Google, Microsoft, Yahoo and Yandex. This team manages and maintains schema standards to develop standards and best practices.</p>\r\n<p>I know, I know. That&#8217;s a lot of tech jargon already. At the end of the day, this is all you need to know:</p>\r\n<p>\r\n\r\n</p>\r\n<h2>Structured data provides search engines with additional information about your content.</h2>\r\n<p>\r\n\r\n</p>\r\n<p>That&#8217;s the reason it&#8217;s such a big deal. Search engines like Google even use it to improve search results in the form of <strong>rich snippets</strong>.</p>\r\n<p>\r\n\r\n\r\n\r\n</p>\r\n<p>You&#8217;ve probably interacted with rich snippets, even if you didn&#8217;t realize it. You know how a typical search produces a giant list of results?</p>\r\n<p>\r\n\r\n</p>\r\n<figure class=\"wp-block-image size-full\"><img class=\"wp-image-2181716\" src=\"https://s3.theeventscalendar.com/uploads/2020/08/search-results-wordpress-awesome.png\" alt=\"A standard search results page for why WordPress is awesome.\" srcset=\"https://s3.theeventscalendar.com/uploads/2020/08/search-results-wordpress-awesome.png 2112w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-wordpress-awesome-300x234.png 300w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-wordpress-awesome-665x518.png 665w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-wordpress-awesome-109x85.png 109w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-wordpress-awesome-768x599.png 768w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-wordpress-awesome-1536x1197.png 1536w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-wordpress-awesome-2048x1596.png 2048w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-wordpress-awesome-430x335.png 430w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-wordpress-awesome-645x503.png 645w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-wordpress-awesome-2000x1559.png 2000w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-wordpress-awesome-1068x832.png 1068w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-wordpress-awesome-460x359.png 460w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-wordpress-awesome-1602x1249.png 1602w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-wordpress-awesome-1074x837.png 1074w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-wordpress-awesome-512x399.png 512w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-wordpress-awesome-1611x1256.png 1611w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-wordpress-awesome-1414x1102.png 1414w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-wordpress-awesome-680x530.png 680w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-wordpress-awesome-600x468.png 600w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-wordpress-awesome-500x390.png 500w\" sizes=\"(max-width: 2112px) 100vw, 2112px\" /></figure>\r\n<p>\r\n\r\n</p>\r\n<p>Rich snippets take extra information from schema to provide more interesting results. Look at what we get when searching for a yummy recipe:</p>\r\n<p>\r\n\r\n</p>\r\n<figure class=\"wp-block-image size-full\"><img class=\"wp-image-2181718\" src=\"https://s3.theeventscalendar.com/uploads/2020/08/search-results-guac-recipe.png\" alt=\"Showing search results for spicy guacamole recipes where a row of three recipes from different sites is at the top of the list.\" srcset=\"https://s3.theeventscalendar.com/uploads/2020/08/search-results-guac-recipe.png 2332w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-guac-recipe-300x271.png 300w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-guac-recipe-665x602.png 665w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-guac-recipe-94x85.png 94w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-guac-recipe-768x695.png 768w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-guac-recipe-1536x1390.png 1536w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-guac-recipe-2048x1853.png 2048w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-guac-recipe-430x389.png 430w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-guac-recipe-645x584.png 645w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-guac-recipe-2000x1810.png 2000w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-guac-recipe-1068x966.png 1068w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-guac-recipe-460x416.png 460w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-guac-recipe-1602x1449.png 1602w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-guac-recipe-1074x972.png 1074w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-guac-recipe-512x463.png 512w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-guac-recipe-1611x1458.png 1611w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-guac-recipe-1218x1102.png 1218w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-guac-recipe-586x530.png 586w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-guac-recipe-1827x1653.png 1827w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-guac-recipe-600x543.png 600w, https://s3.theeventscalendar.com/uploads/2020/08/search-results-guac-recipe-500x452.png 500w\" sizes=\"(max-width: 2332px) 100vw, 2332px\" />\r\n<figcaption>Holy guacamole, check out those recipes right at the top! <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f951.png\" alt=\"🥑\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></figcaption>\r\n</figure>\r\n<p>\r\n\r\n</p>\r\n<p>That&#8217;s what we mean when talking about rich snippets. They&#8217;re the little modules that are located toward the top of search results. They&#8217;re more engaging, and when you know how to leverage structured data, they give us opportunities to surface our content in new ways!</p>\r\n<h2>Using structured data on your website calendar</h2>\r\n<p>\r\n\r\n</p>\r\n<p>Plugins can do a lot of the heavy lifting to optimize structured data for events on your WordPress site.</p>\r\n<p>The ideal route is to use a calendar plugin that supports JSON-LD for structured data right out of the gate, like <a href=\"https://theeventscalendar.com/products/wordpress-events-calendar/\">The Events Calendar plugin</a>. (Wondering what the heck JSON-LD is? Check out the additional info and resources at the bottom of this post!)</p>\r\n<p>Not only does The Events Calendar integrate JSON-LD into each event, but it does so automatically. It&#8217;s baked into the product without any configuration, coding, or management required.</p>\r\n<p>Here&#8217;s the JSON-LD that&#8217;s injected into an event <a href=\"https://demo.theeventscalendar.com/event/virtual-event-with-ticket-sales/\">pulled straight off of our demo calendar</a>.</p>\r\n<p>\r\n\r\n</p>\r\n<figure class=\"wp-block-image size-full\"><img class=\"wp-image-2181746\" src=\"https://s3.theeventscalendar.com/uploads/2020/08/tec-json-ld-devtools.png\" alt=\"Showing a browser window with DevTools open where the event is shown on the left and the JSON-LD code is highlighted in orange on the right.\" srcset=\"https://s3.theeventscalendar.com/uploads/2020/08/tec-json-ld-devtools.png 2954w, https://s3.theeventscalendar.com/uploads/2020/08/tec-json-ld-devtools-300x193.png 300w, https://s3.theeventscalendar.com/uploads/2020/08/tec-json-ld-devtools-665x428.png 665w, https://s3.theeventscalendar.com/uploads/2020/08/tec-json-ld-devtools-132x85.png 132w, https://s3.theeventscalendar.com/uploads/2020/08/tec-json-ld-devtools-768x494.png 768w, https://s3.theeventscalendar.com/uploads/2020/08/tec-json-ld-devtools-1536x988.png 1536w, https://s3.theeventscalendar.com/uploads/2020/08/tec-json-ld-devtools-2048x1317.png 2048w, https://s3.theeventscalendar.com/uploads/2020/08/tec-json-ld-devtools-430x277.png 430w, https://s3.theeventscalendar.com/uploads/2020/08/tec-json-ld-devtools-645x415.png 645w, https://s3.theeventscalendar.com/uploads/2020/08/tec-json-ld-devtools-2000x1286.png 2000w, https://s3.theeventscalendar.com/uploads/2020/08/tec-json-ld-devtools-1068x687.png 1068w, https://s3.theeventscalendar.com/uploads/2020/08/tec-json-ld-devtools-460x296.png 460w, https://s3.theeventscalendar.com/uploads/2020/08/tec-json-ld-devtools-1602x1030.png 1602w, https://s3.theeventscalendar.com/uploads/2020/08/tec-json-ld-devtools-1074x691.png 1074w, https://s3.theeventscalendar.com/uploads/2020/08/tec-json-ld-devtools-512x329.png 512w, https://s3.theeventscalendar.com/uploads/2020/08/tec-json-ld-devtools-1611x1036.png 1611w, https://s3.theeventscalendar.com/uploads/2020/08/tec-json-ld-devtools-1713x1102.png 1713w, https://s3.theeventscalendar.com/uploads/2020/08/tec-json-ld-devtools-707x455.png 707w, https://s3.theeventscalendar.com/uploads/2020/08/tec-json-ld-devtools-600x386.png 600w, https://s3.theeventscalendar.com/uploads/2020/08/tec-json-ld-devtools-500x322.png 500w\" sizes=\"(max-width: 2954px) 100vw, 2954px\" />\r\n<figcaption>That&#8217;s right, publish an event then pour a drink as you kick back and let the JSON-LD goodness do its thing.</figcaption>\r\n</figure>\r\n<p>You can also use plugins like <a href=\"https://yoast.com/wordpress/plugins/seo/\">Yoast SEO</a>, <a href=\"https://wordpress.org/plugins/schema/\">Schema</a>, <a href=\"https://wordpress.org/plugins/all-in-one-schemaorg-rich-snippets/\">All in One Schema Rich Snippets</a>, <a href=\"https://wordpress.org/plugins/wp-seo-structured-data-schema/\">WP SEO Structured Data Schema</a>, and <a href=\"https://wordpress.org/plugins/wpsso-schema-json-ld/\">WPSSO Add-on.</a></p>\r\n<p>\r\n\r\n</p>\r\n<p>If you&#8217;re going to use one of those plugins, consider creating a custom post type specifically for events. That way, events stay separated from other types of posts, like your blog. WordPress has a ton of documentation on <a href=\"https://developer.wordpress.org/plugins/post-types/registering-custom-post-types/\">creating custom post types</a>, and <a href=\"https://wordpress.org/plugins/search/custom+post+types/\">there are plugins</a> that can help as well.</p>\r\n<p>\r\n\r\n</p>\r\n<p>\r\n\r\n</p>\r\n<p>\r\n\r\n</p>\r\n<h2>A few gotchas to watch for</h2>\r\n<p>\r\n\r\n</p>\r\n<p>Before you jump straight into the structured data waters, there are some things you&#8217;ll want to consider.</p>\r\n<p>\r\n\r\n</p>\r\n<h3>Is one of your installed plugins already handling structured data?</h3>\r\n<p>\r\n\r\n</p>\r\n<p>First off, you&#8217;ll want to see which plugins are currently installed on your WordPress site. Some of them may already be handling schema for you! It&#8217;s not always obvious, though. For example, <a href=\"https://wordpress.org/plugins/w3-total-cache/\">W3 Total Cache</a> is billed as a plugin that optimizes the performance of a WordPress site, but it is also capable of handling structured data. After all, performance is a metric <a href=\"https://webmasters.googleblog.com/2018/01/using-page-speed-in-mobile-search.html\">used in search results</a>.</p>\r\n<p>\r\n\r\n</p>\r\n<h3>Are there two plugins battling it out?</h3>\r\n<p>\r\n\r\n</p>\r\n<p>This is a common issue. If two plugins are attempting to handle structured data on your site, chances are they&#8217;ll conflict with one another and you&#8217;ll wind up with no structured data at all.</p>\r\n<p>\r\n\r\n</p>\r\n<p>For example, The Events Calendar already accounts for structured data on event posts. But if you have Yoast SEO, that plugin might be trying to do the same. Thankfully, <a href=\"https://theeventscalendar.com/knowledgebase/k/schema-for-the-events-calendar-and-yoast-seo/\">there&#8217;s a solution</a> that ties the two together for optimal performance! <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f4aa.png\" alt=\"💪\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\r\n<p>\r\n\r\n</p>\r\n<h3>How are you handling recurring events?</h3>\r\n<p>\r\n\r\n</p>\r\n<p>A recurring event is an event that repeats. It can be occur daily, weekly, monthly, annually, or whenever. The way these events are created impacts how they are parsed by search engines. The key is making sure that there is a way to distinguish one event in the series from another. If you use The Events Calendar, that&#8217;s already taken care of. The plugin ensures each event page has a unique and <a href=\"https://support.google.com/webmasters/answer/139066\">canonical URL</a>.</p>\r\n<p>\r\n\r\n</p>\r\n<h3>Is this an in-person or virtual event?</h3>\r\n<p>\r\n\r\n</p>\r\n<p>Virtual events are all the rage right now, and for good reason. That said, it&#8217;s important to indicate if your event is virtual because search engines can distinguish between in-person and online events. Check out The Event Calendar&#8217;s <a href=\"https://theeventscalendar.com/products/wordpress-virtual-events/\">Virtual Events add-on</a>, which is not only indicates which events are virtual, but also offers features that are specific to virtual events, like <a href=\"https://theeventscalendar.com/knowledgebase/k/connecting-to-the-zoom-api/\">Zoom integration</a>.</p>\r\n<p>\r\n\r\n</p>\r\n<h3>Has the status of the event changed?</h3>\r\n<p>\r\n\r\n</p>\r\n<p>If so, that can be indicated in JSON-LD. This is useful for search engines <a href=\"https://developers.google.com/search/docs/data-types/event#changing-status\">showing the event status</a> in search results.</p>\r\n<p>\r\n\r\n</p>\r\n<figure class=\"wp-block-image size-large\"><img class=\"wp-image-2181761\" src=\"https://s3.theeventscalendar.com/uploads/2020/08/taylor-swift-concert-status-postponed-665x409.png\" alt=\"\" srcset=\"https://s3.theeventscalendar.com/uploads/2020/08/taylor-swift-concert-status-postponed-665x409.png 665w, https://s3.theeventscalendar.com/uploads/2020/08/taylor-swift-concert-status-postponed-300x184.png 300w, https://s3.theeventscalendar.com/uploads/2020/08/taylor-swift-concert-status-postponed-138x85.png 138w, https://s3.theeventscalendar.com/uploads/2020/08/taylor-swift-concert-status-postponed-768x472.png 768w, https://s3.theeventscalendar.com/uploads/2020/08/taylor-swift-concert-status-postponed-1536x944.png 1536w, https://s3.theeventscalendar.com/uploads/2020/08/taylor-swift-concert-status-postponed-2048x1259.png 2048w, https://s3.theeventscalendar.com/uploads/2020/08/taylor-swift-concert-status-postponed-430x264.png 430w, https://s3.theeventscalendar.com/uploads/2020/08/taylor-swift-concert-status-postponed-645x397.png 645w, https://s3.theeventscalendar.com/uploads/2020/08/taylor-swift-concert-status-postponed-2000x1229.png 2000w, https://s3.theeventscalendar.com/uploads/2020/08/taylor-swift-concert-status-postponed-1068x657.png 1068w, https://s3.theeventscalendar.com/uploads/2020/08/taylor-swift-concert-status-postponed-460x283.png 460w, https://s3.theeventscalendar.com/uploads/2020/08/taylor-swift-concert-status-postponed-1602x985.png 1602w, https://s3.theeventscalendar.com/uploads/2020/08/taylor-swift-concert-status-postponed-1074x660.png 1074w, https://s3.theeventscalendar.com/uploads/2020/08/taylor-swift-concert-status-postponed-512x315.png 512w, https://s3.theeventscalendar.com/uploads/2020/08/taylor-swift-concert-status-postponed-1611x990.png 1611w, https://s3.theeventscalendar.com/uploads/2020/08/taylor-swift-concert-status-postponed-1793x1102.png 1793w, https://s3.theeventscalendar.com/uploads/2020/08/taylor-swift-concert-status-postponed-707x435.png 707w, https://s3.theeventscalendar.com/uploads/2020/08/taylor-swift-concert-status-postponed-600x369.png 600w, https://s3.theeventscalendar.com/uploads/2020/08/taylor-swift-concert-status-postponed-500x307.png 500w\" sizes=\"(max-width: 665px) 100vw, 665px\" />\r\n<figcaption>Guess I&#8217;ll just have to catch you on the next tour, Tay.</figcaption>\r\n</figure>\r\n<p>\r\n\r\n</p>\r\n<p>Again, the Virtual Events add-on for The Events Calendar has this feature covered. Even so, it&#8217;s also a good idea to inform search engines of the change. <a href=\"https://developers.google.com/search/docs/guides/submit-URLs\">Submitting an updated sitemap</a> is a good way to handle this when events are canceled or postponed.</p>\r\n\r\n\r\n\r\n\r\n\r\n<h2>A deeper dive: Schemas 101</h2>\r\n\r\n\r\n\r\n<p>Now that we&#8217;ve covered the nitty gritty of how to use structured data, here&#8217;s additional info about schemas for those who are wondering how it works behind the scenes.</p>\r\n<p>You&#8217;ve probably heard of code languages like HTML, CSS, and JavaScript. Well, schemas are different types of languages that can be used to structure data. There are lots of languages included, but the three most common ones are:</p>\r\n\r\n\r\n\r\n<ul>\r\n<li>JSON-LD</li>\r\n<li>Microdata</li>\r\n<li>RDFa</li>\r\n</ul>\r\n\r\n\r\n\r\n<p>In this post, we didn&#8217;t look at Microdata or RDFa. These two languages are both injected directly into a site&#8217;s HTML. Here&#8217;s just a snippet of what&#8217;s documented on Schema.org:</p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code>&lt;div itemscope itemtype=\"http://schema.org/Product\"&gt;\r\n  &lt;span itemprop=\"name\"&gt;Kenmore White 17\" Microwave&lt;/span&gt;\r\n  &lt;span itemprop=\"priceCurrency\" content=\"USD\"&gt;$&lt;/span\r\n  &lt;span&gt;itemprop=\"price\" content=\"1000.00\"&gt;1,000.00&lt;/span&gt;\r\n  &lt;link itemprop=\"availability\" href=\"http://schema.org/InStock\" /&gt;In stock\r\n&lt;/div&gt;</code></pre>\r\n\r\n\r\n\r\n<p>As you can see, this can make HTML a little bloated and tough to read.</p>\r\n<p>That&#8217;s why decided to focus on <strong>JSON-LD</strong> instead. It&#8217;s often nested inside a <code>&lt;script&gt;</code> tag somewhere on the page in a single block. This way, it doesn&#8217;t interfere with the HTML:</p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code>&lt;script type=\"application/ld+json\"&gt;\r\n{\r\n  \"@context\": \"http://schema.org\",\r\n  \"@type\": \"Product\",\r\n  \"name\": \"Kenmore White 17\\\" Microwave\",\r\n  \"offers\": {\r\n    \"@type\": \"Offer\",\r\n    \"availability\": \"http://schema.org/InStock\",\r\n    \"price\": \"55.00\",\r\n    \"priceCurrency\": \"USD\"\r\n  }\r\n}\r\n&lt;/script&gt;</code></pre>\r\n\r\n\r\n\r\n<p>Much easier to read! And, JSON-LD is actively developed — and preferred — by Google.</p>\r\n\r\n\r\n\r\n\r\n\r\n<h2>How does schema relate to calendars and events?</h2>\r\n\r\n\r\n\r\n<p><a href=\"https://schema.org/Event\">Events are actually a schema property</a>, just like the product and recipe examples we just saw. And there&#8217;s <a href=\"https://developers.google.com/search/docs/data-types/event\">a lot of information</a> we can pack into JSON-LD for search engines to include in their rich snippets. Here&#8217;s just a few:</p>\r\n\r\n\r\n\r\n<ul>\r\n<li><code>about</code>: the event description</li>\r\n<li><code>actor</code>: people associated with the production of the event, if there are actors in the event</li>\r\n<li><code>audience</code>: the intended type of people who would attend the event</li>\r\n<li><code>duration</code>: how long the event will run</li>\r\n<li><code>endDate</code>: the day and time that the event is scheduled to end</li>\r\n<li><code>eventStatus</code>: used to indicate an event that is canceled or rescheduled</li>\r\n<li><code>location</code>: where the event takes place, which can be a place, address, or even a virtual location</li>\r\n<li><code>organizer</code>: the organization or person running the event</li>\r\n<li><code>startDate</code>: the day and time the event is scheduled to start</li>\r\n</ul>\r\n\r\n\r\n\r\n<p>There are even different <em>types</em> of events, like <code>BusinessEvent</code>, <code>ComedyEvent</code>. <code>ExhibitionEvent</code>, <code>Festival</code>, <code>MusicEvent</code>, <code>SocialEvent</code>, <code>SportsEvent</code> and <code>TheaterEvent</code>, among many others.</p>\r\n\r\n\r\n\r\n<p>Check out the <a href=\"https://schema.org/Event\">Event type documentation</a> for a full rundown of properties and types.</p>\r\n\r\n\r\n\r\n\r\n\r\n<h2>Wrapping up</h2>\r\n\r\n\r\n\r\n<p>Hopefully all of this gives you a better idea of what structured data is, how it&#8217;s used by search engines, and how you can use it with your WordPress calendar. While some plugins, like The Events Calendar, can be a one-stop solution for improving event SEO, there are indeed lots of additional plugins that can help.</p>\r\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/blog/tips/how-to-improve-seo-for-events-with-structured-data/\">How to Improve SEO for Events with Structured Data</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Event Tickets 5.0.0.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://theeventscalendar.com/release-notes/event-tickets/event-tickets-5-0-0-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, 31 Aug 2020 19:10: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Event Tickets\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://theeventscalendar.com/?p=2182815\";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:621:\"<p>Hey there! Event Tickets 5.0.0.1 is out and resolves a quick issue when creating Attendee Information which caused the Attendee Registration modal on an event to not show the tickets. You can once again make RSVPs and Tickets with Attendee Information. Additionally, users reported they were unable to delete Attendees from the list.&#160; We&#8217;ve resolved&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/release-notes/event-tickets/event-tickets-5-0-0-1/\">Event Tickets 5.0.0.1</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:8:\"Courtney\";s: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:1198:\"<p>Hey there! Event Tickets 5.0.0.1 is out and resolves a quick issue when creating <a href=\"https://theeventscalendar.com/knowledgebase/k/collecting-attendee-information/\">Attendee Information</a> which caused the Attendee Registration modal on an event to not show the tickets. You can once again make RSVPs and Tickets with Attendee Information.</p>\n<p>Additionally, users reported they were unable to delete Attendees from the list.&nbsp; We&#8217;ve resolved that as well.</p>\n<p>This is a minor release that should be smooth sailing when updating. That said, it’s always a good idea to <a href=\"https://theeventscalendar.com/knowledgebase/k/creating-site-backups/\">backup</a>&nbsp;your site and test changes in a&nbsp;<a href=\"https://theeventscalendar.com/knowledgebase/k/creating-and-using-a-wordpress-staging-site/\">development environment</a>&nbsp;before installing this on your live site, as you would with any other WordPress update.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/release-notes/event-tickets/event-tickets-5-0-0-1/\">Event Tickets 5.0.0.1</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:66:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"How to Return to In-Person Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://theeventscalendar.com/blog/tips/how-to-return-to-in-person-events/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Aug 2020 22:29: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:4:{i:0;a:5:{s:4:\"data\";s:13:\"Tips & Tricks\";s: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:4:\"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:\"\";}i:2;a:5:{s:4:\"data\";s:13:\"Online Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:14:\"Virtual Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://theeventscalendar.com/?p=2181739\";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:582:\"<p>After months of virtual meetings, classes, conferences, and happy hours, many of us are wondering when it will be safe to return to in-person events. The answer? It’s complicated. As much as we’d like to hit Ctrl + Z and return to a pre-COVID world, there still isn’t a clear understanding of what the outlook&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/blog/tips/how-to-return-to-in-person-events/\">How to Return to In-Person Events</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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:\"Lauren\";s: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:11636:\"<p><span style=\"font-weight: 400;\">After months of virtual meetings, classes, conferences, and happy hours, many of us are wondering when it will be safe to return to in-person events.</span></p>\n<p><span style=\"font-weight: 400;\">The answer? It’s complicated.</span></p>\n<p><span style=\"font-weight: 400;\">As much as we’d like to hit Ctrl + Z and return to a pre-COVID world, there still isn’t a clear understanding of what the </span><a href=\"https://www.eventmanagerblog.com/events-coronavirus\"><span style=\"font-weight: 400;\">outlook and recovery timeline</span></a><span style=\"font-weight: 400;\"> will be for events. </span><a href=\"https://www.cdc.gov/coronavirus/2019-ncov/community/large-events/considerations-for-events-gatherings.html\"><span style=\"font-weight: 400;\">The safest way to host an event remains virtual</span></a><span style=\"font-weight: 400;\">. Once you start returning to in-person gatherings—even in small groups—the risk inevitably increases.</span></p>\n<p><span style=\"font-weight: 400;\">But </span><a href=\"https://www.eventmanagerblog.com/post-coronavirus-live-events\"><span style=\"font-weight: 400;\">some event planners</span></a><span style=\"font-weight: 400;\"> are cautiously resuming in-person events and doing as much as possible to reduce the risks. If you’re considering going back to in-person events, or if you’re wondering what to expect when that time comes, here are tips on how to make the transition safely.</span></p>\n<p><img class=\"alignnone wp-image-2181743 size-full\" src=\"https://s3.theeventscalendar.com/uploads/2020/08/safely-returning-to-irl-events-social.jpg\" alt=\"\" width=\"1256\" height=\"870\" srcset=\"https://s3.theeventscalendar.com/uploads/2020/08/safely-returning-to-irl-events-social.jpg 1256w, https://s3.theeventscalendar.com/uploads/2020/08/safely-returning-to-irl-events-social-300x208.jpg 300w, https://s3.theeventscalendar.com/uploads/2020/08/safely-returning-to-irl-events-social-665x461.jpg 665w, https://s3.theeventscalendar.com/uploads/2020/08/safely-returning-to-irl-events-social-123x85.jpg 123w, https://s3.theeventscalendar.com/uploads/2020/08/safely-returning-to-irl-events-social-768x532.jpg 768w, https://s3.theeventscalendar.com/uploads/2020/08/safely-returning-to-irl-events-social-430x298.jpg 430w, https://s3.theeventscalendar.com/uploads/2020/08/safely-returning-to-irl-events-social-645x447.jpg 645w, https://s3.theeventscalendar.com/uploads/2020/08/safely-returning-to-irl-events-social-1068x740.jpg 1068w, https://s3.theeventscalendar.com/uploads/2020/08/safely-returning-to-irl-events-social-460x319.jpg 460w, https://s3.theeventscalendar.com/uploads/2020/08/safely-returning-to-irl-events-social-1074x744.jpg 1074w, https://s3.theeventscalendar.com/uploads/2020/08/safely-returning-to-irl-events-social-512x355.jpg 512w, https://s3.theeventscalendar.com/uploads/2020/08/safely-returning-to-irl-events-social-707x490.jpg 707w, https://s3.theeventscalendar.com/uploads/2020/08/safely-returning-to-irl-events-social-600x416.jpg 600w, https://s3.theeventscalendar.com/uploads/2020/08/safely-returning-to-irl-events-social-500x346.jpg 500w\" sizes=\"(max-width: 1256px) 100vw, 1256px\" /></p>\n<h2><span style=\"font-weight: 400;\">Make masks mandatory.</span></h2>\n<p><span style=\"font-weight: 400;\">Wearing a mask is a lifesaver, not a political statement. </span><a href=\"https://www.ucsf.edu/news/2020/06/417906/still-confused-about-masks-heres-science-behind-how-face-masks-prevent\"><span style=\"font-weight: 400;\">Studies show</span></a><span style=\"font-weight: 400;\"> that masks are effective in preventing the spread of COVID-19, so don’t forget to clearly communicate your event’s mask policy. You’ll also want to get acquainted with state and city ordinances that may require masks in public places. </span></p>\n<p><span style=\"font-weight: 400;\">On the day of your event, it’s a good idea to make masks (and plenty of hand sanitizer) available to attendees who need it or forgot theirs at home.</span></p>\n<h2><span style=\"font-weight: 400;\">Take additional safety measures before and after the event.</span></h2>\n<p><span style=\"font-weight: 400;\">Leading up to the event, it’s important for your staff to practice social distancing and monitor their symptoms. You’ll also want to continue these smart practices during and after your gathering: The CDC recommends </span><a href=\"https://www.cdc.gov/coronavirus/2019-ncov/community/guidance-business-response.html\"><span style=\"font-weight: 400;\">conducting health checks of staff and attendees during events</span></a><span style=\"font-weight: 400;\">. </span></p>\n<p><span style=\"font-weight: 400;\">This will likely require additional training for your staff and some extra equipment, like contactless thermometers to take temperatures as guests arrive.</span></p>\n<h2><span style=\"font-weight: 400;\">Set up the space for social distancing.</span></h2>\n<p><span style=\"font-weight: 400;\">Spacing seats six feet apart is a start, but that’s only the beginning of setting up a socially distant event.</span></p>\n<p><span style=\"font-weight: 400;\">Refer to the </span><a href=\"https://www.cdc.gov/coronavirus/2019-ncov/downloads/community/COVID19-events-gatherings-readiness-and-planning-tool.pdf\"><span style=\"font-weight: 400;\">CDC’s Daily/Weekly Readiness Assessment</span></a><span style=\"font-weight: 400;\"> for events and gatherings. Make sure you’re taking every step possible to create a safe space, which includes:</span></p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Using touchless payments</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Designating where attendees can stand in line with tape or chalk</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Using sneeze guards and partitions</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Avoiding shared materials (like pens), and sanitizing between uses</span></li>\n</ul>\n<h2><span style=\"font-weight: 400;\">Get your vendors on board.</span></h2>\n<p><span style=\"font-weight: 400;\">If your event requires coordination with vendors, talk to each vendor about your safety protocol ahead of time so that everybody comes prepared. Vet potential vendors by asking about their own precautions and protocols. Be sure your vendors are maintaining the same social distancing, symptom monitoring, and mask standards that you expect of your own staff and attendees.</span></p>\n<h2><span style=\"font-weight: 400;\">Mix virtual components with in-person gatherings.</span></h2>\n<p><a href=\"https://www.eventmanagerblog.com/6-scenarios-for-live-events\"><span style=\"font-weight: 400;\">Hybrid events that combine face-to-face and online components</span></a><span style=\"font-weight: 400;\"> are on the rise. These events are a great option when travel restrictions keep your whole group from getting together. </span></p>\n<p><span style=\"font-weight: 400;\">Regardless of where your attendees live, hybrid events are also a respectful option. Even if </span><i><span style=\"font-weight: 400;\">you </span></i><span style=\"font-weight: 400;\">feel ready to return to IRL events, your attendees might not be on board. Plus, you never know who has a compromised immune system or is caring for sick or elderly family members. </span></p>\n<p><span style=\"font-weight: 400;\">By creating opportunities for attendees to participate in-person or online, your event will be more inclusive.</span></p>\n<p><a href=\"https://theeventscalendar.com/products/wordpress-virtual-events/?utm_source=tec&amp;utm_medium=onsitebanner&amp;utm_term=imagead&amp;utm_campaign=ve-launch-1&amp;utm_content=ve&amp;utm_cta=makemoneypost-banner&amp;cid=tec_onsitebanner_imagead_ve-launch-1_makemoneypost-banner_ve\"><img class=\"alignnone size-full wp-image-2164675\" src=\"https://s3.theeventscalendar.com/uploads/2020/03/virtual-events-product-ad-tec-banner-1200x450-1.png\" alt=\"\" width=\"1800\" height=\"675\" srcset=\"https://s3.theeventscalendar.com/uploads/2020/03/virtual-events-product-ad-tec-banner-1200x450-1.png 1800w, https://s3.theeventscalendar.com/uploads/2020/03/virtual-events-product-ad-tec-banner-1200x450-1-300x113.png 300w, https://s3.theeventscalendar.com/uploads/2020/03/virtual-events-product-ad-tec-banner-1200x450-1-665x249.png 665w, https://s3.theeventscalendar.com/uploads/2020/03/virtual-events-product-ad-tec-banner-1200x450-1-140x53.png 140w, https://s3.theeventscalendar.com/uploads/2020/03/virtual-events-product-ad-tec-banner-1200x450-1-768x288.png 768w, https://s3.theeventscalendar.com/uploads/2020/03/virtual-events-product-ad-tec-banner-1200x450-1-1536x576.png 1536w, https://s3.theeventscalendar.com/uploads/2020/03/virtual-events-product-ad-tec-banner-1200x450-1-430x161.png 430w, https://s3.theeventscalendar.com/uploads/2020/03/virtual-events-product-ad-tec-banner-1200x450-1-645x242.png 645w, https://s3.theeventscalendar.com/uploads/2020/03/virtual-events-product-ad-tec-banner-1200x450-1-1068x401.png 1068w, https://s3.theeventscalendar.com/uploads/2020/03/virtual-events-product-ad-tec-banner-1200x450-1-460x173.png 460w, https://s3.theeventscalendar.com/uploads/2020/03/virtual-events-product-ad-tec-banner-1200x450-1-1602x601.png 1602w, https://s3.theeventscalendar.com/uploads/2020/03/virtual-events-product-ad-tec-banner-1200x450-1-1074x403.png 1074w, https://s3.theeventscalendar.com/uploads/2020/03/virtual-events-product-ad-tec-banner-1200x450-1-512x192.png 512w, https://s3.theeventscalendar.com/uploads/2020/03/virtual-events-product-ad-tec-banner-1200x450-1-1611x604.png 1611w, https://s3.theeventscalendar.com/uploads/2020/03/virtual-events-product-ad-tec-banner-1200x450-1-707x265.png 707w, https://s3.theeventscalendar.com/uploads/2020/03/virtual-events-product-ad-tec-banner-1200x450-1-600x225.png 600w, https://s3.theeventscalendar.com/uploads/2020/03/virtual-events-product-ad-tec-banner-1200x450-1-500x188.png 500w\" sizes=\"(max-width: 1800px) 100vw, 1800px\" /></a></p>\n<h2><span style=\"font-weight: 400;\">Be prepared to go back to virtual.</span></h2>\n<p><span style=\"font-weight: 400;\">For now, we are still living through a pandemic. As coronavirus cases surge in many parts of the world, there’s always a chance you’ll need to move your in-person event online at the last minute.</span></p>\n<p><span style=\"font-weight: 400;\">Even if cases aren’t on the rise near you, you may decide that a virtual event is the best option for your organization. With fewer logistics to consider and little to no risk of infection, online events remain the safest way to convene for the foreseeable future.</span></p>\n<p><em><span style=\"font-weight: 400;\">Looking for more virtual event resources? Check out our <a href=\"https://theeventscalendar.com/products/wordpress-virtual-events/?utm_source=tec&amp;utm_medium=onsitebanner&amp;utm_term=contentlink&amp;utm_campaign=ve-launch-1&amp;utm_content=ve&amp;utm_cta=makemoneypost-text&amp;cid=tec_onsitebanner_contentlink_ve-launch-1_makemoneypost-text_ve\">Virtual Events add-on</a> for The Events Calendar. We also have a library full of </span><a href=\"https://theeventscalendar.com/virtual-event-resources/\"><span style=\"font-weight: 400;\">extensions, articles, and guides</span></a><span style=\"font-weight: 400;\"> to help make your life easier as an event planner in the virtual age.</span></em></p>\n<p>The post <a rel=\"nofollow\" href=\"https://theeventscalendar.com/blog/tips/how-to-return-to-in-person-events/\">How to Return to In-Person Events</a> appeared first on <a rel=\"nofollow\" href=\"https://theeventscalendar.com\">The Events Calendar</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: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:35:\"https://theeventscalendar.com/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:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:6:{s:4:\"date\";s:29:\"Sun, 27 Sep 2020 16:37:31 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:6:\"server\";s:5:\"nginx\";s:13:\"last-modified\";s:29:\"Fri, 25 Sep 2020 19:23:24 GMT\";s:4:\"etag\";s:34:\"\"022ce1a6779d64795cdc117915ba9334\"\";s:4:\"link\";s:66:\"<https://theeventscalendar.com/wp-json/>; rel=\"https://api.w.org/\"\";}}s:5:\"build\";s:14:\"20200502153337\";}','no'),(53647,'_transient_timeout_jetpack_plugin_api_action_links_refresh','1601310806','no'),(53648,'_transient_jetpack_plugin_api_action_links_refresh','1601224406','no'),(52550,'_transient_tribe_feature_detection','a:1:{s:22:\"supports_async_process\";b:0;}','no'),(53642,'_transient_timeout_jetpack_https_test','1601310804','no'),(53643,'_transient_jetpack_https_test','1','no'),(50946,'_transient_timeout_jetpack_https_test_message','1601310804','no'),(50947,'_transient_jetpack_https_test_message','','no'),(53731,'_transient_timeout_jetpack_sync_last_checked_queue_state_sync','1601225020','no'),(53732,'_transient_jetpack_sync_last_checked_queue_state_sync','a:2:{i:0;i:0;i:1;i:0;}','no'),(53705,'_transient_timeout_wc_report_sales_by_date','1601311054','no'),(53706,'_transient_wc_report_sales_by_date','a:8:{s:32:\"e0f86056ea234187a9cf8ddbce96295e\";a:0:{}s:32:\"63b3087be76f67b1808cee28fb64e8ca\";a:0:{}s:32:\"91eba8a71ad2a36930a45a77e4c034f4\";a:0:{}s:32:\"79a9946a1977567df9215a8e91b3ffc2\";N;s:32:\"88717ddbae4d1e2c333e1d0e87d25a82\";a:0:{}s:32:\"15cd04924bfe7b3773a8df03692932fd\";a:0:{}s:32:\"504b2487d847bad5191fb359e3f9d32c\";a:0:{}s:32:\"9c355f0f09aa23a1756f4734ceb3151b\";a:0:{}}','no'),(53707,'_transient_timeout_wc_admin_report','1601311054','no'),(53708,'_transient_wc_admin_report','a:1:{s:32:\"fd3aa81de4c52d075be9db82f78cf936\";a:0:{}}','no'),(7678,'_transient_product_query-transient-version','1601224653','yes'),(168,'widget_hotel-luxury-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(162,'current_theme','Hotel Luxury','yes'),(163,'theme_mods_rosa-lite','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1588348002;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:6:\"text-2\";i:1;s:6:\"text-3\";}s:12:\"sidebar-main\";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'),(164,'theme_switched','','yes'),(165,'pixtypes_themes_settings','a:1:{s:19:\"rosa_pixtypes_theme\";a:1:{s:9:\"metaboxes\";a:2:{s:17:\"rosa_page_general\";a:8:{s:2:\"id\";s:17:\"rosa_page_general\";s:5:\"title\";s:7:\"General\";s:5:\"pages\";a:1:{i:0;s:4:\"page\";}s:7:\"context\";s:6:\"normal\";s:8:\"priority\";s:4:\"high\";s:7:\"show_on\";a:2:{s:3:\"key\";s:13:\"page-template\";s:5:\"value\";a:2:{i:0;s:0:\"\";i:1;s:7:\"default\";}}s:10:\"show_names\";b:1;s:6:\"fields\";a:1:{i:0;a:4:{s:4:\"name\";s:25:\"Make Menu Bar Transparent\";s:4:\"desc\";s:63:\"This will remove the background from the menu and logo top bar.\";s:2:\"id\";s:33:\"_rosa_header_transparent_menu_bar\";s:4:\"type\";s:8:\"checkbox\";}}}s:27:\"rosa_page_header_area_cover\";a:8:{s:2:\"id\";s:27:\"rosa_page_header_area_cover\";s:5:\"title\";s:20:\"Featured Header Area\";s:5:\"pages\";a:1:{i:0;s:4:\"page\";}s:7:\"context\";s:6:\"normal\";s:8:\"priority\";s:4:\"high\";s:7:\"show_on\";a:2:{s:3:\"key\";s:13:\"page-template\";s:5:\"value\";a:2:{i:0;s:0:\"\";i:1;s:7:\"default\";}}s:10:\"show_names\";b:1;s:6:\"fields\";a:2:{i:0;a:3:{s:4:\"name\";s:8:\"Subtitle\";s:2:\"id\";s:25:\"_rosa_page_cover_subtitle\";s:4:\"type\";s:4:\"text\";}i:1;a:4:{s:4:\"name\";s:5:\"Title\";s:4:\"desc\";s:97:\"If left empty we will use the page title. Tip: put a space if you don&#039;t want any cover text.\";s:2:\"id\";s:22:\"_rosa_page_cover_title\";s:4:\"type\";s:4:\"text\";}}}}}}','yes'),(175,'theme_mods_blogbee','a:8:{i:0;b:0;s:34:\"pixassist_install_notice_dismissed\";b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:13:\"theme_options\";a:5:{s:31:\"disable_featured_slider_section\";b:1;s:23:\"disable_popular_section\";b:0;s:20:\"archive_header_image\";s:78:\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-scaled.jpg\";s:19:\"search_header_image\";s:78:\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-scaled.jpg\";s:16:\"404_header_image\";s:78:\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-scaled.jpg\";}s:12:\"header_image\";s:88:\"https://374curry.com/wp-content/uploads/2020/05/cropped-IMG_20200321_174621-scaled-2.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:15;s:3:\"url\";s:88:\"https://374curry.com/wp-content/uploads/2020/05/cropped-IMG_20200321_174621-scaled-2.jpg\";s:13:\"thumbnail_url\";s:88:\"https://374curry.com/wp-content/uploads/2020/05/cropped-IMG_20200321_174621-scaled-2.jpg\";s:6:\"height\";i:1081;s:5:\"width\";i:1920;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1588348832;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:6:\"text-2\";i:1;s:6:\"text-3\";}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:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}}}}','yes'),(182,'nav_menu_options','a:1:{s:8:\"auto_add\";a:1:{i:0;i:3;}}','yes'),(184,'_transient_blogbee_categories','1','yes'),(191,'theme_mods_minamaze-emagazine','a:7:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:11:\"header_menu\";i:3;}s:18:\"custom_css_post_id\";i:-1;s:12:\"header_image\";s:88:\"https://374curry.com/wp-content/uploads/2020/05/cropped-IMG_20200321_174621-scaled-4.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:46;s:3:\"url\";s:88:\"https://374curry.com/wp-content/uploads/2020/05/cropped-IMG_20200321_174621-scaled-4.jpg\";s:13:\"thumbnail_url\";s:88:\"https://374curry.com/wp-content/uploads/2020/05/cropped-IMG_20200321_174621-scaled-4.jpg\";s:6:\"height\";i:200;s:5:\"width\";i:1600;}s:16:\"background_color\";s:6:\"dd9933\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1588353116;s:4:\"data\";a:8:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:6:\"text-2\";i:1;s:6:\"text-3\";}s:9:\"sidebar-1\";a:3:{i:0;s:15:\"media_gallery-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}s:9:\"footer-w1\";a:0:{}s:9:\"footer-w2\";a:0:{}s:9:\"footer-w3\";a:0:{}s:9:\"footer-w4\";a:0:{}s:9:\"footer-w5\";a:0:{}s:9:\"footer-w6\";a:0:{}}}}','yes'),(254,'_transient_thinkup_transient_categories','1','yes'),(53630,'_transient_timeout_boldgrid_backup_system_zip_test','1601309859','no'),(53631,'_transient_boldgrid_backup_system_zip_test','1','no'),(53657,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1601224945;s:7:\"checked\";a:8:{s:7:\"blogbee\";s:3:\"1.5\";s:12:\"hotel-luxury\";s:3:\"1.2\";s:18:\"minamaze-emagazine\";s:5:\"1.0.2\";s:8:\"minamaze\";s:5:\"1.7.7\";s:9:\"rosa-lite\";s:5:\"1.0.6\";s:14:\"twentynineteen\";s:3:\"1.6\";s:15:\"twentyseventeen\";s:3:\"2.3\";s:12:\"twentytwenty\";s:3:\"1.4\";}s:8:\"response\";a:3:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.1.7.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentyseventeen\";a:6:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"2.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.2.4.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.5.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:12:\"translations\";a:0:{}}','no'),(38338,'_site_transient_boldgrid_plugins_filtered','a:2:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:13:{s:4:\"Name\";s:12:\"Total Upkeep\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:6:\"1.14.2\";s:11:\"Description\";s:159:\"Automated backups, remote backup to Amazon S3 and Google Drive, stop website crashes before they happen and more. Total Upkeep is the backup solution you need.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:5:\"Title\";s:12:\"Total Upkeep\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:13:{s:4:\"Name\";s:20:\"Total Upkeep Premium\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:5:\"1.3.0\";s:11:\"Description\";s:46:\"Premium extension for the Total Upkeep plugin.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:5:\"Title\";s:20:\"Total Upkeep Premium\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}}','no'),(236,'jetpack_available_modules','a:1:{s:5:\"8.7.1\";a:42:{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:9:\"copy-post\";s:3:\"7.0\";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:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s: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:21:\"woocommerce-analytics\";s:3:\"8.4\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(255,'recently_activated','a:2:{s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";i:1588435876;s:23:\"elementor/elementor.php\";i:1588435086;}','yes'),(256,'theme_switch_menu_locations','a:1:{s:11:\"header_menu\";i:3;}','yes'),(257,'theme_switched_via_customizer','','yes'),(258,'customize_stashed_theme_mods','a:0:{}','no'),(269,'category_children','a:0:{}','yes'),(333,'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:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:6:\"custom\";a:0:{}}}','yes'),(334,'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'),(335,'jetpack_log','a:2:{i:0;a:4:{s:4:\"time\";i:1588431378;s:7:\"user_id\";i:1;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"register\";}i:1;a:4:{s:4:\"time\";i:1588431382;s:7:\"user_id\";i:1;s:7:\"blog_id\";b:0;s:4:\"code\";s:8:\"register\";}}','no'),(336,'jetpack_tos_agreed','1','yes'),(337,'jetpack_secrets','a:0:{}','no'),(338,'_transient_jetpack_assumed_site_creation_date','2020-05-01 15:29:58','yes'),(339,'jetpack_private_options','a:2:{s:10:\"blog_token\";s:65:\"@WsZd7G*KHXv*h7YZMs$ZsbMO$26w^lI.RlAgr&yjprXTN8!2(YnWgVaVWAtOT44r\";s:11:\"user_tokens\";a:1:{i:1;s:67:\"J^mgiRa51%rWak@Yc$baI3yp4AGpKgKv.y%6h$*zPx!0goWDZ*ZU64SvGr#4h1OKM.1\";}}','yes'),(341,'jetpack_unique_connection','a:3:{s:9:\"connected\";i:1;s:12:\"disconnected\";i:0;s:7:\"version\";s:5:\"3.6.1\";}','yes'),(342,'jetpack_sync_settings_max_queue_size','1000','yes'),(343,'jetpack_sync_settings_max_queue_lag','900','yes'),(344,'jetpack_sync_full__started','1588431417','no'),(345,'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'),(346,'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'),(347,'jetpack_sync_full_enqueue_status','a:4:{s:9:\"constants\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:9:\"functions\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:7:\"options\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:5:\"users\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}}','no'),(432,'jetpack_testimonial','0','yes'),(351,'jetpack_sync_settings_dequeue_max_bytes','500000','yes'),(352,'jetpack_sync_settings_upload_max_bytes','600000','yes'),(353,'jetpack_sync_settings_upload_max_rows','500','yes'),(354,'jetpack_sync_settings_sync_wait_time','10','yes'),(355,'jetpack_sync_settings_sync_wait_threshold','5','yes'),(356,'jetpack_sync_settings_enqueue_wait_time','10','yes'),(357,'jetpack_sync_settings_queue_max_writes_sec','100','yes'),(358,'jetpack_sync_settings_post_types_blacklist','a:0:{}','yes'),(359,'jetpack_sync_settings_taxonomies_blacklist','a:0:{}','yes'),(360,'jetpack_sync_settings_render_filtered_content','0','yes'),(361,'jetpack_sync_settings_post_meta_whitelist','a:0:{}','yes'),(362,'jetpack_sync_settings_comment_meta_whitelist','a:0:{}','yes'),(363,'jetpack_sync_settings_max_enqueue_full_sync','100','yes'),(364,'jetpack_sync_settings_max_queue_size_full_sync','1000','yes'),(365,'jetpack_sync_settings_sync_via_cron','1','yes'),(366,'jetpack_sync_settings_cron_sync_time_limit','30','yes'),(367,'jetpack_sync_settings_known_importers','a:6:{s:16:\"Blogger_Importer\";s:7:\"blogger\";s:13:\"LJ_API_Import\";s:11:\"livejournal\";s:9:\"MT_Import\";s:2:\"mt\";s:10:\"RSS_Import\";s:3:\"rss\";s:20:\"WC_Tax_Rate_Importer\";s:12:\"woo-tax-rate\";s:9:\"WP_Import\";s:9:\"wordpress\";}','yes'),(368,'jetpack_sync_settings_term_relationships_full_sync_item_size','100','yes'),(369,'jetpack_sync_settings_sync_sender_enabled','1','yes'),(370,'jetpack_sync_settings_full_sync_sender_enabled','1','yes'),(429,'jetpack_next_sync_time_full_sync','1588431439','yes'),(53746,'_transient_timeout_jetpack_jitm_c5b588098c636500bb783420651c6eb','1601225248','no'),(53747,'_transient_jetpack_jitm_c5b588098c636500bb783420651c6eb','a:2:{i:0;O:8:\"stdClass\":11:{s:7:\"content\";O:8:\"stdClass\":5:{s:7:\"message\";s:46:\"Back up your site before making major changes.\";s:4:\"icon\";s:7:\"jetpack\";s:4:\"list\";a:0:{}s:11:\"description\";s:57:\"Ensure you can restore your site if something goes wrong.\";s:7:\"classes\";s:0:\"\";}s:3:\"CTA\";O:8:\"stdClass\":5:{s:7:\"message\";s:11:\"Get backups\";s:4:\"hook\";s:0:\"\";s:9:\"newWindow\";b:1;s:7:\"primary\";b:1;s:4:\"link\";s:0:\"\";}s:8:\"template\";s:7:\"default\";s:3:\"ttl\";i:300;s:2:\"id\";s:14:\"backup-updates\";s:13:\"feature_class\";s:6:\"backup\";s:7:\"expires\";i:3628800;s:13:\"max_dismissal\";i:2;s:15:\"activate_module\";N;s:14:\"is_dismissible\";b:1;s:26:\"is_user_created_by_partner\";N;}s:18:\"last_response_time\";i:1601224948;}','no'),(377,'jetpack_sync_full__queue_finished','1588431417','yes'),(381,'jetpack_active_modules','a:11:{i:0;s:12:\"contact-form\";i:1;s:21:\"enhanced-distribution\";i:2;s:8:\"json-api\";i:3;s:5:\"notes\";i:4;s:7:\"protect\";i:5;s:5:\"stats\";i:6;s:18:\"verification-tools\";i:7;s:21:\"woocommerce-analytics\";i:8;s:6:\"photon\";i:9;s:8:\"carousel\";i:10;s:17:\"widget-visibility\";}','yes'),(390,'jetpack_protect_key','8cac3aa8bf054b2c39a0036ac0d82e6350427928','no'),(462,'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'),(463,'post_by_email_address1','NULL','yes'),(464,'monitor_receive_notifications','1','yes'),(35607,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(440,'jetpack_sync_full__users_sent','1','no'),(441,'jetpack_sync_full__users_sent_total','1','no'),(442,'jetpack_sync_full__finished','1588431442','no'),(426,'jetpack_sync_full__functions_sent_total','-1','no'),(427,'jetpack_sync_full__options_sent','1','no'),(428,'jetpack_sync_full__options_sent_total','-1','no'),(422,'jetpack_sync_full__send_started','1588431429','no'),(423,'jetpack_sync_full__constants_sent','1','no'),(424,'jetpack_sync_full__constants_sent_total','-1','no'),(425,'jetpack_sync_full__functions_sent','1','no'),(418,'jp_sync_lock_full_sync_enqueue','1588435837.31','yes'),(419,'jetpack_next_sync_time_full-sync-enqueue','1601224956','yes'),(420,'jpsq_full_sync_checkout','0:0','no'),(421,'jetpack_callables_sync_checksum','a:34:{s:18:\"wp_max_upload_size\";i:1819132959;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:17:\"main_network_site\";i:123054567;s:8:\"site_url\";i:123054567;s:8:\"home_url\";i:123054567;s:16:\"single_user_site\";i:4261170317;s:7:\"updates\";i:2101719397;s:28:\"has_file_system_write_access\";i:4261170317;s:21:\"is_version_controlled\";i:734881840;s:10:\"taxonomies\";i:1044566413;s:10:\"post_types\";i:3466765327;s:18:\"post_type_features\";i:1149420240;s:10:\"shortcodes\";i:3039623466;s:27:\"rest_api_allowed_post_types\";i:710265342;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:4261170317;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;s:10:\"wp_version\";i:2592268601;s:11:\"get_plugins\";i:1714801156;s:24:\"get_plugins_action_links\";i:346235698;s:14:\"active_modules\";i:802315024;s:16:\"hosting_provider\";i:769900095;s:6:\"locale\";i:110763218;s:13:\"site_icon_url\";i:734881840;s:5:\"roles\";i:205033504;s:8:\"timezone\";i:3808505409;s:24:\"available_jetpack_blocks\";i:2396133912;s:13:\"paused_themes\";i:223132457;s:14:\"paused_plugins\";i:223132457;s:26:\"main_network_site_wpcom_id\";i:1403256333;}','no'),(408,'jetpack_constants_sync_checksum','a:32:{s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:17:\"WP_POST_REVISIONS\";i:4261170317;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:7:\"ABSPATH\";i:4084993072;s:14:\"WP_CONTENT_DIR\";i:2190377911;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:528748234;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:3994858278;s:11:\"PHP_VERSION\";i:1761172046;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:19:\"WP_MAX_MEMORY_LIMIT\";i:2267546353;s:8:\"WP_DEBUG\";i:734881840;s:14:\"WC_PLUGIN_FILE\";i:3200945938;s:10:\"WC_ABSPATH\";i:1633270530;s:18:\"WC_PLUGIN_BASENAME\";i:1149093810;s:10:\"WC_VERSION\";i:3877919206;s:19:\"WOOCOMMERCE_VERSION\";i:3877919206;s:21:\"WC_ROUNDING_PRECISION\";i:498629140;s:25:\"WC_DISCOUNT_ROUNDING_MODE\";i:450215437;s:20:\"WC_TAX_ROUNDING_MODE\";i:2212294583;s:12:\"WC_DELIMITER\";i:2455911554;s:10:\"WC_LOG_DIR\";i:3482413887;s:22:\"WC_SESSION_CACHE_GROUP\";i:4278978988;s:22:\"WC_TEMPLATE_DEBUG_MODE\";i:734881840;}','yes'),(409,'jetpack_sync_https_history_main_network_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(410,'jetpack_sync_https_history_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(411,'jetpack_sync_https_history_home_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(53626,'_transient_timeout_jetpack_is_single_user','1601264385','no'),(53627,'_transient_jetpack_is_single_user','1','no'),(414,'jpsq_sync_checkout','0:0','no'),(417,'jetpack_plugin_api_action_links','a:4:{s:19:\"akismet/akismet.php\";a:1:{s:8:\"Settings\";s:63:\"https://374curry.com/wp-admin/admin.php?page=akismet-key-config\";}s:43:\"the-events-calendar/the-events-calendar.php\";a:2:{s:8:\"Settings\";s:79:\"https://374curry.com/wp-admin/edit.php?page=tribe-common&post_type=tribe_events\";s:8:\"Calendar\";s:28:\"https://374curry.com/events/\";}s:19:\"weforms/weforms.php\";a:2:{s:4:\"Docs\";s:104:\"https://weformspro.com/?utm_source=weforms-action-link&utm_medium=textlink&utm_campaign=plugin-docs-link\";s:8:\"Settings\";s:52:\"https://374curry.com/wp-admin/admin.php?page=weforms\";}s:27:\"woocommerce/woocommerce.php\";a:1:{s:8:\"Settings\";s:56:\"https://374curry.com/wp-admin/admin.php?page=wc-settings\";}}','yes'),(539,'jetpack_next_sync_time_sync','1601224955','yes'),(596,'jetpack_updates_sync_checksum','a:3:{s:14:\"update_plugins\";i:792217318;s:13:\"update_themes\";i:3638847534;s:11:\"update_core\";i:378320640;}','yes'),(636,'boldgrid_backup_in_progress_data','a:3:{s:6:\"status\";s:22:\"Backing up database...\";s:6:\"tables\";a:46:{i:0;s:28:\"wpjg_actionscheduler_actions\";i:1;s:27:\"wpjg_actionscheduler_claims\";i:2;s:27:\"wpjg_actionscheduler_groups\";i:3;s:25:\"wpjg_actionscheduler_logs\";i:4;s:16:\"wpjg_commentmeta\";i:5;s:13:\"wpjg_comments\";i:6;s:10:\"wpjg_links\";i:7;s:12:\"wpjg_options\";i:8;s:13:\"wpjg_postmeta\";i:9;s:10:\"wpjg_posts\";i:10;s:23:\"wpjg_term_relationships\";i:11;s:18:\"wpjg_term_taxonomy\";i:12;s:13:\"wpjg_termmeta\";i:13;s:10:\"wpjg_terms\";i:14;s:13:\"wpjg_usermeta\";i:15;s:10:\"wpjg_users\";i:16;s:26:\"wpjg_wc_admin_note_actions\";i:17;s:19:\"wpjg_wc_admin_notes\";i:18;s:23:\"wpjg_wc_category_lookup\";i:19;s:23:\"wpjg_wc_customer_lookup\";i:20;s:20:\"wpjg_wc_download_log\";i:21;s:27:\"wpjg_wc_order_coupon_lookup\";i:22;s:28:\"wpjg_wc_order_product_lookup\";i:23;s:19:\"wpjg_wc_order_stats\";i:24;s:24:\"wpjg_wc_order_tax_lookup\";i:25;s:27:\"wpjg_wc_product_meta_lookup\";i:26;s:22:\"wpjg_wc_reserved_stock\";i:27;s:24:\"wpjg_wc_tax_rate_classes\";i:28;s:16:\"wpjg_wc_webhooks\";i:29;s:20:\"wpjg_weforms_entries\";i:30;s:22:\"wpjg_weforms_entrymeta\";i:31;s:25:\"wpjg_woocommerce_api_keys\";i:32;s:37:\"wpjg_woocommerce_attribute_taxonomies\";i:33;s:49:\"wpjg_woocommerce_downloadable_product_permissions\";i:34;s:20:\"wpjg_woocommerce_log\";i:35;s:31:\"wpjg_woocommerce_order_itemmeta\";i:36;s:28:\"wpjg_woocommerce_order_items\";i:37;s:34:\"wpjg_woocommerce_payment_tokenmeta\";i:38;s:31:\"wpjg_woocommerce_payment_tokens\";i:39;s:25:\"wpjg_woocommerce_sessions\";i:40;s:40:\"wpjg_woocommerce_shipping_zone_locations\";i:41;s:38:\"wpjg_woocommerce_shipping_zone_methods\";i:42;s:31:\"wpjg_woocommerce_shipping_zones\";i:43;s:35:\"wpjg_woocommerce_tax_rate_locations\";i:44;s:26:\"wpjg_woocommerce_tax_rates\";i:45;s:17:\"wpjg_wpforms_lite\";}s:4:\"step\";i:1;}','yes'),(22963,'bglib_activity','a:1:{s:15:\"boldgrid-backup\";a:1:{s:18:\"any_backup_created\";i:2;}}','yes'),(22961,'boldgrid_backup_last_backup','1596430703','no'),(22962,'boldgrid_backup_latest_backup','a:34:{s:4:\"mode\";s:6:\"backup\";s:6:\"dryrun\";b:0;s:10:\"compressor\";s:7:\"php_zip\";s:8:\"filesize\";i:177954453;s:4:\"save\";b:1;s:10:\"total_size\";i:339708496;s:14:\"folder_include\";s:18:\"WPCORE,/wp-content\";s:14:\"folder_exclude\";s:17:\".git,node_modules\";s:13:\"table_exclude\";a:0:{}s:5:\"title\";N;s:11:\"description\";N;s:7:\"ABSPATH\";s:27:\"/home/chicso5/374curry.com/\";s:9:\"backup_id\";s:8:\"c9456169\";s:7:\"siteurl\";s:20:\"https://374curry.com\";s:9:\"timestamp\";i:1596430543;s:17:\"gateway_interface\";s:7:\"CGI/1.1\";s:9:\"http_host\";s:12:\"374curry.com\";s:13:\"php_sapi_name\";s:8:\"cgi-fcgi\";s:9:\"php_uname\";s:113:\"Linux ecbiz240.inmotionhosting.com 3.10.0-962.3.2.lve1.5.35.el7.x86_64 #1 SMP Tue Apr 14 15:56:28 EDT 2020 x86_64\";s:11:\"php_version\";s:6:\"7.0.33\";s:11:\"server_addr\";s:13:\"144.208.76.61\";s:11:\"server_name\";s:12:\"374curry.com\";s:15:\"server_protocol\";s:8:\"HTTP/2.0\";s:15:\"server_software\";s:6:\"Apache\";s:3:\"uid\";i:3776;s:8:\"username\";s:7:\"chicso5\";s:10:\"encrypt_db\";b:0;s:7:\"trigger\";s:37:\"irinamarchenkova (374curry@gmail.com)\";s:8:\"filepath\";s:87:\"/home/chicso5/boldgrid_backup/boldgrid-backup-374curry.com-c9456169-20200803-045551.zip\";s:11:\"lastmodunix\";i:1596430702;s:8:\"duration\";s:6:\"159.08\";s:11:\"db_duration\";s:4:\"0.33\";s:11:\"db_filename\";s:33:\"chicso5_wp856.20200803-045543.sql\";s:12:\"mail_success\";b:1;}','yes'),(478,'verification_services_codes','0','yes'),(662,'_transient_health-check-site-status-result','{\"good\":\"6\",\"recommended\":\"10\",\"critical\":\"1\"}','yes'),(660,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(53649,'jetpack_nonce_1601224406_BqCuxkRskH','1601224407','no'),(746,'action_scheduler_hybrid_store_demarkation','130','yes'),(747,'schema-ActionScheduler_StoreSchema','3.0.1588434094','yes'),(748,'schema-ActionScheduler_LoggerSchema','2.0.1588434094','yes'),(751,'woocommerce_store_address','','yes'),(752,'woocommerce_store_address_2','','yes'),(753,'woocommerce_store_city','','yes'),(754,'woocommerce_default_country','GB','yes'),(755,'woocommerce_store_postcode','','yes'),(756,'woocommerce_allowed_countries','all','yes'),(757,'woocommerce_all_except_countries','','yes'),(758,'woocommerce_specific_allowed_countries','','yes'),(759,'woocommerce_ship_to_countries','','yes'),(760,'woocommerce_specific_ship_to_countries','','yes'),(761,'woocommerce_default_customer_address','base','yes'),(762,'woocommerce_calc_taxes','no','yes'),(763,'woocommerce_enable_coupons','yes','yes'),(764,'woocommerce_calc_discounts_sequentially','no','no'),(765,'woocommerce_currency','GBP','yes'),(766,'woocommerce_currency_pos','left','yes'),(767,'woocommerce_price_thousand_sep',',','yes'),(768,'woocommerce_price_decimal_sep','.','yes'),(769,'woocommerce_price_num_decimals','2','yes'),(770,'woocommerce_shop_page_id','','yes'),(771,'woocommerce_cart_redirect_after_add','no','yes'),(772,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(773,'woocommerce_placeholder_image','130','yes'),(774,'woocommerce_weight_unit','kg','yes'),(775,'woocommerce_dimension_unit','cm','yes'),(776,'woocommerce_enable_reviews','yes','yes'),(777,'woocommerce_review_rating_verification_label','yes','no'),(778,'woocommerce_review_rating_verification_required','no','no'),(779,'woocommerce_enable_review_rating','yes','yes'),(780,'woocommerce_review_rating_required','yes','no'),(781,'woocommerce_manage_stock','yes','yes'),(782,'woocommerce_hold_stock_minutes','60','no'),(783,'woocommerce_notify_low_stock','yes','no'),(784,'woocommerce_notify_no_stock','yes','no'),(785,'woocommerce_stock_email_recipient','374curry@gmail.com','no'),(786,'woocommerce_notify_low_stock_amount','2','no'),(787,'woocommerce_notify_no_stock_amount','0','yes'),(788,'woocommerce_hide_out_of_stock_items','no','yes'),(789,'woocommerce_stock_format','','yes'),(790,'woocommerce_file_download_method','force','no'),(791,'woocommerce_downloads_require_login','no','no'),(792,'woocommerce_downloads_grant_access_after_payment','yes','no'),(793,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(794,'woocommerce_prices_include_tax','no','yes'),(795,'woocommerce_tax_based_on','shipping','yes'),(796,'woocommerce_shipping_tax_class','inherit','yes'),(797,'woocommerce_tax_round_at_subtotal','no','yes'),(798,'woocommerce_tax_classes','','yes'),(799,'woocommerce_tax_display_shop','excl','yes'),(800,'woocommerce_tax_display_cart','excl','yes'),(801,'woocommerce_price_display_suffix','','yes'),(802,'woocommerce_tax_total_display','itemized','no'),(803,'woocommerce_enable_shipping_calc','yes','no'),(804,'woocommerce_shipping_cost_requires_address','no','yes'),(805,'woocommerce_ship_to_destination','billing','no'),(806,'woocommerce_shipping_debug_mode','no','yes'),(807,'woocommerce_enable_guest_checkout','yes','no'),(808,'woocommerce_enable_checkout_login_reminder','no','no'),(809,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(810,'woocommerce_enable_myaccount_registration','no','no'),(811,'woocommerce_registration_generate_username','yes','no'),(812,'woocommerce_registration_generate_password','yes','no'),(813,'woocommerce_erasure_request_removes_order_data','no','no'),(814,'woocommerce_erasure_request_removes_download_data','no','no'),(815,'woocommerce_allow_bulk_remove_personal_data','no','no'),(816,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes'),(817,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),(818,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(819,'woocommerce_trash_pending_orders','','no'),(820,'woocommerce_trash_failed_orders','','no'),(821,'woocommerce_trash_cancelled_orders','','no'),(822,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(823,'woocommerce_email_from_name','374 Curry Av','no'),(824,'woocommerce_email_from_address','374curry@gmail.com','no'),(825,'woocommerce_email_header_image','','no'),(826,'woocommerce_email_footer_text','{site_title} &mdash; Built with {WooCommerce}','no'),(827,'woocommerce_email_base_color','#96588a','no'),(828,'woocommerce_email_background_color','#f7f7f7','no'),(829,'woocommerce_email_body_background_color','#ffffff','no'),(830,'woocommerce_email_text_color','#3c3c3c','no'),(831,'woocommerce_cart_page_id','','no'),(832,'woocommerce_checkout_page_id','','no'),(833,'woocommerce_myaccount_page_id','','no'),(834,'woocommerce_terms_page_id','','no'),(835,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(836,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(837,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(838,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(839,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(840,'woocommerce_myaccount_orders_endpoint','orders','yes'),(841,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(842,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(843,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(844,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(845,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(846,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(847,'woocommerce_logout_endpoint','customer-logout','yes'),(848,'woocommerce_api_enabled','no','yes'),(849,'woocommerce_allow_tracking','no','no'),(850,'woocommerce_show_marketplace_suggestions','yes','no'),(851,'woocommerce_single_image_width','600','yes'),(852,'woocommerce_thumbnail_image_width','300','yes'),(853,'woocommerce_checkout_highlight_required_fields','yes','yes'),(854,'woocommerce_demo_store','no','no'),(855,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(856,'current_theme_supports_woocommerce','yes','yes'),(857,'woocommerce_queue_flush_rewrite_rules','no','yes'),(872,'product_cat_children','a:0:{}','yes'),(873,'default_product_cat','17','yes'),(53150,'_transient_timeout_jetpack_file_data_8.7.1','1603363228','no'),(53151,'_transient_jetpack_file_data_8.7.1','a:52:{s:32:\"d3576702faeb399eb47ad20f586c3804\";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: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:10:\"Appearance\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"55409a5f8388b8d33e2350ef80de3ea3\";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: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:12:\"plan_classes\";s:0:\"\";}s:32:\"e914e6d31cb61f5a9ef86e1b9573430e\";a:14:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:81:\"Let visitors use a WordPress.com, Twitter, Facebook, or Google account to comment\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"f1b8c61705fb18eb8c8584c9f9cdffd9\";a:14:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:81:\"Add a customizable contact form to any post or page using the Jetpack Form Block.\";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:7:\"Writing\";s:25:\"additional_search_queries\";s:214:\"contact, form, grunion, feedback, submission, contact form, email, feedback, contact form plugin, custom form, custom form plugin, form builder, forms, form maker, survey, contact by jetpack, contact us, forms free\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4fca6eb23a793155d69fdb119a094926\";a:14:{s:4:\"name\";s:9:\"Copy Post\";s:11:\"description\";s:77:\"Enable the option to copy entire posts and pages, including tags and settings\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"7.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:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:15:\"copy, duplicate\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cfdac01e3c3c529f93a8f49edef1f5db\";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: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:2:\"No\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"4b9137ecf507290743735fb1f94535df\";a:14:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:88:\"Adds options for CSS preprocessor use, disabling the theme\'s CSS, or custom image width.\";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:2:\"No\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"95d75b38d76d2ee1b5b537026eadb8ff\";a:14:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"822f9ef1281dace3fb7cc420c77d24e0\";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: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:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"c167275f926ef0eefaec9a679bd88d34\";a:14:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";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:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"58cbd4585a74829a1c88aa9c295f3993\";a:14:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:53:\"Automatically load new content when a visitor scrolls\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"d4a35eabc948caefad71a0d3303b95c8\";a:14:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:51:\"Allow applications to securely access your content.\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"7b0c670bc3f8209dc83abb8610e23a89\";a:14:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:74:\"Use the LaTeX markup language to write mathematical equations and formulas\";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:2:\"No\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"b00e4e6c109ce6f77b5c83fbaaaead4c\";a:14:{s:4:\"name\";s:11:\"Lazy Images\";s:11:\"description\";s:137:\"Speed up your site and create a smoother viewing experience by loading images as visitors scroll down the screen, instead of all at once.\";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:150:\"mobile, theme, fast images, fast image, image, lazy, lazy load, lazyload, images, lazy images, thumbnail, image lazy load, lazy loading, load, loading\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"8e46c72906c928eca634ac2c8b1bc84f\";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: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:12:\"plan_classes\";s:0:\"\";}s:32:\"2df2264a07aff77e0556121e33349dce\";a:14:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:50:\"Write posts or pages in plain-text Markdown syntax\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"0337eacae47d30c946cb9fc4e5ece649\";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: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:12:\"plan_classes\";s:0:\"\";}s:32:\"c54bb0a65b39f1316da8632197a88a4e\";a:14:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:118:\"Jetpack’s downtime monitoring will continuously watch your site, and alert you the moment that downtime is detected.\";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:123:\"monitor, uptime, downtime, monitoring, maintenance, maintenance mode, offline, site is down, site down, down, repair, error\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cc013f4c5480c7bdc1e7edb2f410bf3c\";a:14:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:57:\"Receive instant notifications of site comments and likes.\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"b3b34928b1e549bb52f866accc0450c5\";a:14:{s:4:\"name\";s:9:\"Asset CDN\";s:11:\"description\";s:154:\"Jetpack’s Site Accelerator loads your site faster by optimizing your images and serving your images and static files from our global network of servers.\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"6.6\";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:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:23:\"Recommended, Appearance\";s:25:\"additional_search_queries\";s:160:\"site accelerator, accelerate, static, assets, javascript, css, files, performance, cdn, bandwidth, content delivery network, pagespeed, combine js, optimize css\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"714284944f56d6936a40f3309900bc8e\";a:14:{s:4:\"name\";s:9:\"Image CDN\";s:11:\"description\";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:23:\"Recommended, Appearance\";s:25:\"additional_search_queries\";s:171:\"photon, photo cdn, image cdn, speed, compression, resize, responsive images, responsive, content distribution network, optimize, page speed, image optimize, photon jetpack\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"041704e207c4c59eea93e0499c908bff\";a:14:{s:4:\"name\";s:13:\"Post by email\";s:11:\"description\";s:33:\"Publish posts by sending an email\";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:2:\"No\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"26e6cb3e08a6cfd0811c17e7c633c72c\";a:14:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:151:\"Enabling brute force protection will prevent bots and hackers from attempting to log in to your website with common username and password combinations.\";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:173:\"security, jetpack protect, secure, protection, botnet, brute force, protect, login, bot, password, passwords, strong passwords, strong password, wp-login.php,  protect admin\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"915a504082f797395713fd01e0e2e713\";a:14:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:128:\"Publicize makes it easy to share your site’s posts on several social media networks automatically when you publish a new post.\";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:2:\"No\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:220:\"facebook, jetpack publicize, twitter, tumblr, linkedin, social, tweet, connections, sharing, social media, automated, automated sharing, auto publish, auto tweet and like, auto tweet, facebook auto post, facebook posting\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"9243c1a718566213f4eaf3b44cf14b07\";a:14:{s:4:\"name\";s:13:\"Related posts\";s:11:\"description\";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:10:\"Engagement\";s:25:\"additional_search_queries\";s:360:\"related, jetpack related posts, related posts for wordpress, related posts, popular posts, popular, related content, related post, contextual, context, contextual related posts, related articles, similar posts, easy related posts, related page, simple related posts, free related posts, related thumbnails, similar, engagement, yet another related posts plugin\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"583e4cda5596ee1b28a19cde33f438be\";a:14:{s:4:\"name\";s:6:\"Search\";s:11:\"description\";s:102:\"Help visitors quickly find answers with highly relevant instant search results and powerful filtering.\";s:4:\"sort\";s:2:\"34\";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:110:\"search, elastic, elastic search, elasticsearch, fast search, search results, search performance, google search\";s:12:\"plan_classes\";s:8:\"business\";}s:32:\"15346c1f7f2a5f29d34378774ecfa830\";a:14:{s:4:\"name\";s:9:\"SEO Tools\";s:11:\"description\";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:7:\"Traffic\";s:25:\"additional_search_queries\";s:81:\"search engine optimization, social preview, meta description, custom title format\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"72a0ff4cfae86074a7cdd2dcd432ef11\";a:14:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:120:\"Add 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:2:\"No\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:229:\"share, sharing, sharedaddy, social buttons, buttons, share facebook, share twitter, social media sharing, social media share, social share, icons, email, facebook, twitter, linkedin, pinterest, pocket, social widget, social media\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"bb8c6c190aaec212a7ab6e940165af4d\";a:14:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:177:\"Shortcodes are WordPress-specific markup that let you add media from popular sites. This feature is no longer necessary as the editor now handles media embeds rather gracefully.\";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:2:\"No\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"1abd31fe07ae4fb0f8bb57dc24592219\";a:14:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:47:\"Generates shorter links using the wp.me domain.\";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:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cae5f097f8d658e0b0ae50733d7c6476\";a:14:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:50:\"Make it easy for search engines to find your site.\";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:2:\"No\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:11:\"Recommended\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"e9b8318133b2f95e7906cedb3557a87d\";a:14:{s:4:\"name\";s:14:\"Secure Sign On\";s:11:\"description\";s:63:\"Allow users to log in to this site using WordPress.com accounts\";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:8:\"Security\";s:25:\"additional_search_queries\";s:51:\"sso, single sign on, login, log in, 2fa, two-factor\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"17e66a12031ccf11d8d45ceee0955f05\";a:14:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:44:\"Collect valuable traffic stats and insights.\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"346cf9756e7c1252acecb9a8ca81a21c\";a:14:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:58:\"Let visitors subscribe to new posts and comments via email\";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:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"ca086af79d0d9dccacc934ccff5b4fd7\";a:14:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";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:10:\"Appearance\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"43c24feb7c541c376af93e0251c1a261\";a:14:{s:4:\"name\";s:20:\"Backups and Scanning\";s:11:\"description\";s:100:\"Protect your site with daily or real-time backups and automated virus scanning and threat detection.\";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:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:16:\"Security, Health\";s:25:\"additional_search_queries\";s:386:\"backup, cloud backup, database backup, restore, wordpress backup, backup plugin, wordpress backup plugin, back up, backup wordpress, backwpup, vaultpress, backups, off-site backups, offsite backup, offsite, off-site, antivirus, malware scanner, security, virus, viruses, prevent viruses, scan, anti-virus, antimalware, protection, safe browsing, malware, wp security, wordpress security\";s:12:\"plan_classes\";s:27:\"personal, business, premium\";}s:32:\"b9396d8038fc29140b499098d2294d79\";a:14:{s:4:\"name\";s:17:\"Site verification\";s:11:\"description\";s:58:\"Establish your site\'s authenticity with external services.\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"afe184082e106c1bdfe1ee844f98aef3\";a:14:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:101:\"Save on hosting storage and bandwidth costs by streaming fast, ad-free video from our global network.\";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:118:\"video, videos, videopress, video gallery, video player, videoplayer, mobile video, vimeo, youtube, html5 video, stream\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"44637d43460370af9a1b31ce3ccec0cd\";a:14:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:42:\"Control where widgets appear on your site.\";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:2:\"No\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"694c105a5c3b659acfcddad220048d08\";a:14:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:49:\"Provides additional widgets for use on your site.\";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:2:\"No\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"21b59e7bb3fe0784e7525ad11ad8a8f6\";a:14:{s:4:\"name\";s:21:\"WooCommerce Analytics\";s:11:\"description\";s:53:\"Enhanced analytics for WooCommerce and Jetpack users.\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"8.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:18:\"Other, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:69:\"woocommerce, analytics, stats, statistics, tracking, analytics, views\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"ae15da72c5802d72f320640bad669561\";a:14:{s:4:\"name\";s:3:\"Ads\";s:11:\"description\";s:60:\"Earn income by allowing Jetpack to display high quality ads.\";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:12:\"plan_classes\";s:17:\"premium, business\";}s:32:\"212a162108f1dc20cc6c768d5b47d4f2\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"f1bb571a95c5de1e6adaf9db8567c039\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"cb5d81445061b89d19cb9c7754697a39\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"ea0fbbd64080c81a90a784924603588c\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"5c53fdb3633ba3232f60180116900273\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"40b97d9ce396339d3e8e46b833a045b5\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"0739df64747f2d02c140f23ce6c19cd8\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"348754bc914ee02c72d9af445627784c\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"a7b21cc562ee9ffa357bba19701fe45b\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";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:12:\"plan_classes\";s:0:\"\";}s:32:\"4f84d218792a6efa06ed6feae09c4dd5\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";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:12:\"plan_classes\";s:0:\"\";}}','no'),(903,'elementor_version','2.9.8','yes'),(904,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"6yC3t6sV3oWLlspEUl5cIjPmnxbSLOVF\";}','yes'),(905,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(906,'tribe_events_calendar_options','a:11:{s:14:\"schema-version\";s:5:\"5.1.5\";s:21:\"previous_ecp_versions\";a:3:{i:0;s:1:\"0\";i:1;s:5:\"5.1.0\";i:2;s:5:\"5.1.4\";}s:18:\"latest_ecp_version\";s:5:\"5.1.5\";s:16:\"views_v2_enabled\";b:1;s:12:\"postsPerPage\";i:12;s:16:\"monthEventAmount\";i:3;s:27:\"recurring_events_are_hidden\";s:6:\"hidden\";s:8:\"did_init\";b:1;s:19:\"tribeEventsTemplate\";s:0:\"\";s:16:\"tribeEnableViews\";a:3:{i:0;s:4:\"list\";i:1;s:5:\"month\";i:2;s:3:\"day\";}s:10:\"viewOption\";s:4:\"list\";}','yes'),(907,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(908,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(909,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(910,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(911,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(912,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(913,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(914,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(915,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(916,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(917,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(918,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(919,'widget_mc4wp_form_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(920,'widget_bcn_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(921,'widget_tribe-events-list-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(883,'woocommerce_admin_notices','a:2:{i:0;s:7:\"install\";i:2;s:31:\"wp_php_min_requirements_7.2_5.2\";}','yes'),(935,'woocommerce_meta_box_errors','a:0:{}','yes'),(933,'tribe_last_generate_rewrite_rules','1596430838.0498','yes'),(934,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:1;s:3:\"all\";i:1;s:8:\"approved\";s:1:\"1\";s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(901,'action_scheduler_lock_async-request-runner','1601225005','yes'),(922,'woocommerce_onboarding_opt_in','no','yes'),(928,'woocommerce_admin_install_timestamp','1588957753','yes'),(35616,'woocommerce_admin_version','1.3.1','yes'),(931,'tribe_last_updated_option','1596430838.6063','yes'),(932,'tribe_last_save_post','1596430838.6065','yes'),(943,'woocommerce_onboarding_profile','a:0:{}','yes'),(938,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:42:\"the-events-calendar/common/vendor/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.3.2\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1588434118;s:11:\"plugin_path\";s:43:\"the-events-calendar/the-events-calendar.php\";}}s:7:\"abspath\";s:27:\"/home/chicso5/374curry.com/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:43:\"the-events-calendar/the-events-calendar.php\";s:8:\"sdk_path\";s:42:\"the-events-calendar/common/vendor/freemius\";s:7:\"version\";s:5:\"2.3.2\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1588434118;}}','yes'),(939,'fs_debug_mode','','yes'),(940,'fs_accounts','a:6:{s:21:\"id_slug_type_path_map\";a:1:{i:3069;a:3:{s:4:\"slug\";s:19:\"the-events-calendar\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}}s:11:\"plugin_data\";a:1:{s:19:\"the-events-calendar\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:43:\"the-events-calendar/the-events-calendar.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1588434118;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.3.2\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"5.1.4\";s:14:\"plugin_version\";s:5:\"5.1.5\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:12:\"374curry.com\";s:9:\"server_ip\";s:13:\"144.208.76.61\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1588434121;s:7:\"version\";s:5:\"5.1.0\";}s:15:\"prev_is_premium\";b:0;s:18:\"sticky_optin_added\";b:1;}}s:13:\"file_slug_map\";a:1:{s:43:\"the-events-calendar/the-events-calendar.php\";s:19:\"the-events-calendar\";}s:7:\"plugins\";a:1:{s:19:\"the-events-calendar\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:19:\"The Events Calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:12:\"premium_slug\";s:27:\"the-events-calendar-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"the-events-calendar/the-events-calendar.php\";s:7:\"version\";s:5:\"5.1.5\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_e32061abc28cfedf231f3e5c4e626\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"3069\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}s:9:\"unique_id\";s:32:\"fdcafdd2b47da76026ec827043267a7a\";s:13:\"admin_notices\";a:1:{s:19:\"the-events-calendar\";a:1:{s:15:\"connect_account\";a:8:{s:7:\"message\";s:181:\"We made a few tweaks to the plugin, <b><a href=\"https://374curry.com/wp-admin/edit.php?post_type=tribe_events&page=tribe-common\">Opt in to make \"The Events Calendar\" better!</a></b>\";s:5:\"title\";s:0:\"\";s:4:\"type\";s:10:\"update-nag\";s:6:\"sticky\";b:1;s:2:\"id\";s:15:\"connect_account\";s:10:\"manager_id\";s:19:\"the-events-calendar\";s:6:\"plugin\";s:19:\"The Events Calendar\";s:10:\"wp_user_id\";N;}}}}','yes'),(941,'fs_gdpr','a:2:{s:2:\"u1\";a:1:{s:8:\"required\";b:0;}s:2:\"u0\";a:1:{s:8:\"required\";b:0;}}','yes'),(942,'woocommerce_admin_last_orders_milestone','0','yes'),(52549,'_transient_timeout_tribe_feature_detection','1601257605','no'),(949,'mc4wp_version','4.7.7','yes'),(963,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:2:{s:5:\"block\";a:1:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}}s:10:\"categories\";s:247:\"[\"404 page\",\"about\",\"archive\",\"call to action\",\"clients\",\"contact\",\"faq\",\"features\",\"footer\",\"header\",\"hero\",\"portfolio\",\"pricing\",\"product archive\",\"services\",\"single page\",\"single post\",\"single product\",\"stats\",\"subscribe\",\"team\",\"testimonials\"]\";s:9:\"templates\";a:682:{i:0;a:14:{s:2:\"id\";s:4:\"5525\";s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443532\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"11\";s:11:\"trend_index\";s:1:\"6\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:1;a:14:{s:2:\"id\";s:5:\"10107\";s:5:\"title\";s:34:\"Classic | Promotion | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/balls_small.png\";s:12:\"tmpl_created\";s:10:\"1547851373\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-promotion-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"262\";s:11:\"trend_index\";s:3:\"203\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:2;a:14:{s:2:\"id\";s:4:\"5533\";s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520443534\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"31\";s:11:\"trend_index\";s:2:\"12\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:3;a:14:{s:2:\"id\";s:4:\"5575\";s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443543\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"16\";s:11:\"trend_index\";s:1:\"8\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:4;a:14:{s:2:\"id\";s:4:\"5615\";s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443551\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"33\";s:11:\"trend_index\";s:2:\"20\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:5;a:14:{s:2:\"id\";s:4:\"5624\";s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443553\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"78\";s:11:\"trend_index\";s:2:\"54\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:6;a:14:{s:2:\"id\";s:4:\"5684\";s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443565\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"71\";s:11:\"trend_index\";s:2:\"85\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:7;a:14:{s:2:\"id\";s:5:\"10158\";s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/coco_small.png\";s:12:\"tmpl_created\";s:10:\"1547852227\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"285\";s:11:\"trend_index\";s:3:\"262\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:8;a:14:{s:2:\"id\";s:4:\"5693\";s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"205\";s:11:\"trend_index\";s:3:\"214\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:9;a:14:{s:2:\"id\";s:4:\"5703\";s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443569\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"30\";s:11:\"trend_index\";s:2:\"24\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:10;a:14:{s:2:\"id\";s:4:\"5711\";s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443571\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"197\";s:11:\"trend_index\";s:3:\"180\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:11;a:14:{s:2:\"id\";s:5:\"10190\";s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/engage_small.png\";s:12:\"tmpl_created\";s:10:\"1547885703\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"274\";s:11:\"trend_index\";s:3:\"168\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:12;a:14:{s:2:\"id\";s:4:\"5719\";s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443573\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"126\";s:11:\"trend_index\";s:3:\"127\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:13;a:14:{s:2:\"id\";s:4:\"5729\";s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443575\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"301\";s:11:\"trend_index\";s:3:\"355\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:14;a:14:{s:2:\"id\";s:4:\"5737\";s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443576\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"159\";s:11:\"trend_index\";s:3:\"171\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:15;a:14:{s:2:\"id\";s:4:\"5746\";s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443578\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"204\";s:11:\"trend_index\";s:3:\"217\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:16;a:14:{s:2:\"id\";s:4:\"5755\";s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443580\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"93\";s:11:\"trend_index\";s:3:\"123\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:17;a:14:{s:2:\"id\";s:4:\"5764\";s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443582\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"309\";s:11:\"trend_index\";s:3:\"491\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:18;a:14:{s:2:\"id\";s:5:\"10256\";s:5:\"title\";s:20:\"Classic | Sale | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/fruit_small.png\";s:12:\"tmpl_created\";s:10:\"1547888909\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"428\";s:11:\"trend_index\";s:3:\"474\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:19;a:14:{s:2:\"id\";s:4:\"5773\";s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";s:10:\"1520443584\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"34\";s:11:\"trend_index\";s:2:\"27\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:20;a:14:{s:2:\"id\";s:5:\"10267\";s:5:\"title\";s:29:\"Classic | Contact | Christmas\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/christmas_small.png\";s:12:\"tmpl_created\";s:10:\"1547889047\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-contact-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"319\";s:11:\"trend_index\";s:3:\"277\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:21;a:14:{s:2:\"id\";s:4:\"5783\";s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";s:10:\"1520443586\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"344\";s:11:\"trend_index\";s:3:\"386\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:22;a:14:{s:2:\"id\";s:4:\"5792\";s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";s:10:\"1520443588\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"219\";s:11:\"trend_index\";s:3:\"252\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:23;a:14:{s:2:\"id\";s:4:\"5801\";s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";s:10:\"1520443589\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"19\";s:11:\"trend_index\";s:2:\"11\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:24;a:14:{s:2:\"id\";s:4:\"5811\";s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";s:10:\"1520443591\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"114\";s:11:\"trend_index\";s:3:\"106\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:25;a:14:{s:2:\"id\";s:5:\"10307\";s:5:\"title\";s:43:\"Fly In | Promotion | Christmas | Teddy Bear\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/teddy_small.png\";s:12:\"tmpl_created\";s:10:\"1547893266\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-promotion-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"576\";s:11:\"trend_index\";s:3:\"565\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:26;a:14:{s:2:\"id\";s:4:\"5820\";s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"178\";s:11:\"trend_index\";s:3:\"196\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:27;a:14:{s:2:\"id\";s:5:\"10318\";s:5:\"title\";s:27:\"Classic | Contact | Bicycle\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/by_small.png\";s:12:\"tmpl_created\";s:10:\"1547893367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"353\";s:11:\"trend_index\";s:3:\"352\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:28;a:14:{s:2:\"id\";s:4:\"5828\";s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443595\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"295\";s:11:\"trend_index\";s:3:\"316\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:29;a:14:{s:2:\"id\";s:4:\"5836\";s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443597\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"115\";s:11:\"trend_index\";s:2:\"95\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:30;a:14:{s:2:\"id\";s:5:\"10339\";s:5:\"title\";s:22:\"Fly In | Contact | Spa\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small.png\";s:12:\"tmpl_created\";s:10:\"1547893603\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-contact-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"410\";s:11:\"trend_index\";s:3:\"367\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:31;a:14:{s:2:\"id\";s:4:\"5844\";s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443599\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"284\";s:11:\"trend_index\";s:3:\"256\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:32;a:14:{s:2:\"id\";s:5:\"10352\";s:5:\"title\";s:23:\"Fly In | Contact | Wine\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_wine_small.png\";s:12:\"tmpl_created\";s:10:\"1547915335\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/fly-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"439\";s:11:\"trend_index\";s:3:\"373\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:33;a:14:{s:2:\"id\";s:4:\"5852\";s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";s:10:\"1520443600\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"488\";s:11:\"trend_index\";s:3:\"486\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:34;a:14:{s:2:\"id\";s:4:\"5947\";s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443621\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"340\";s:11:\"trend_index\";s:3:\"369\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:35;a:14:{s:2:\"id\";s:5:\"10372\";s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/phone_small.png\";s:12:\"tmpl_created\";s:10:\"1547915554\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"575\";s:11:\"trend_index\";s:3:\"551\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:36;a:14:{s:2:\"id\";s:4:\"5956\";s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443623\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"482\";s:11:\"trend_index\";s:3:\"525\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:37;a:14:{s:2:\"id\";s:5:\"10382\";s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom_pink_small.png\";s:12:\"tmpl_created\";s:10:\"1547916616\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/bottom-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"294\";s:11:\"trend_index\";s:3:\"209\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:38;a:14:{s:2:\"id\";s:4:\"5963\";s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443626\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"63\";s:11:\"trend_index\";s:2:\"45\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:39;a:14:{s:2:\"id\";s:4:\"5974\";s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443629\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"62\";s:11:\"trend_index\";s:2:\"64\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:40;a:14:{s:2:\"id\";s:4:\"5983\";s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443630\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"236\";s:11:\"trend_index\";s:3:\"246\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:41;a:14:{s:2:\"id\";s:4:\"5991\";s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443632\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"124\";s:11:\"trend_index\";s:3:\"114\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:42;a:14:{s:2:\"id\";s:4:\"5999\";s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520443634\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"82\";s:11:\"trend_index\";s:2:\"99\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:43;a:14:{s:2:\"id\";s:5:\"10434\";s:5:\"title\";s:27:\"Classic | Sale | Headphones\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/head_small.png\";s:12:\"tmpl_created\";s:10:\"1547961950\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"380\";s:11:\"trend_index\";s:3:\"360\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:44;a:14:{s:2:\"id\";s:4:\"6008\";s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"67\";s:11:\"trend_index\";s:2:\"73\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:45;a:14:{s:2:\"id\";s:5:\"10444\";s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/plant_small.png\";s:12:\"tmpl_created\";s:10:\"1547962029\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"415\";s:11:\"trend_index\";s:3:\"320\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:46;a:14:{s:2:\"id\";s:4:\"6027\";s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";s:10:\"1520443639\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-5-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"40\";s:11:\"trend_index\";s:2:\"31\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:47;a:14:{s:2:\"id\";s:4:\"6036\";s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";s:10:\"1520443641\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-6-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"88\";s:11:\"trend_index\";s:2:\"81\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:48;a:14:{s:2:\"id\";s:5:\"10467\";s:5:\"title\";s:27:\"Bottom Bar | Contact | Lego\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small.png\";s:12:\"tmpl_created\";s:10:\"1547962277\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/bottom-bar-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"633\";s:11:\"trend_index\";s:3:\"653\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:49;a:14:{s:2:\"id\";s:4:\"6044\";s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443643\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"69\";s:11:\"trend_index\";s:2:\"65\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:50;a:14:{s:2:\"id\";s:4:\"6053\";s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443645\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"165\";s:11:\"trend_index\";s:3:\"147\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:51;a:14:{s:2:\"id\";s:5:\"10487\";s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/acc_small.png\";s:12:\"tmpl_created\";s:10:\"1547964527\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"510\";s:11:\"trend_index\";s:3:\"443\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:52;a:14:{s:2:\"id\";s:4:\"6063\";s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443647\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"157\";s:11:\"trend_index\";s:3:\"183\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:53;a:14:{s:2:\"id\";s:5:\"10498\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547964616\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"436\";s:11:\"trend_index\";s:3:\"441\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:54;a:14:{s:2:\"id\";s:4:\"6071\";s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443649\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"158\";s:11:\"trend_index\";s:3:\"205\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:55;a:14:{s:2:\"id\";s:4:\"6079\";s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443651\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"265\";s:11:\"trend_index\";s:3:\"248\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:56;a:14:{s:2:\"id\";s:5:\"10519\";s:5:\"title\";s:27:\"Hello Bar | Promotion | App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547964801\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-promotion-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"537\";s:11:\"trend_index\";s:3:\"535\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:57;a:14:{s:2:\"id\";s:4:\"6089\";s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443653\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"177\";s:11:\"trend_index\";s:3:\"255\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:58;a:14:{s:2:\"id\";s:4:\"6097\";s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443655\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"261\";s:11:\"trend_index\";s:3:\"287\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:59;a:14:{s:2:\"id\";s:4:\"6106\";s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443657\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"330\";s:11:\"trend_index\";s:3:\"363\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:60;a:14:{s:2:\"id\";s:4:\"6114\";s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443659\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"368\";s:11:\"trend_index\";s:3:\"433\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:61;a:14:{s:2:\"id\";s:4:\"6122\";s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";s:10:\"1520443661\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"36\";s:11:\"trend_index\";s:2:\"18\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:62;a:14:{s:2:\"id\";s:5:\"10569\";s:5:\"title\";s:15:\"Slide In | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/off_small.png\";s:12:\"tmpl_created\";s:10:\"1547967812\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/slide-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"492\";s:11:\"trend_index\";s:3:\"465\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:63;a:14:{s:2:\"id\";s:4:\"6135\";s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443663\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"84\";s:11:\"trend_index\";s:2:\"80\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:64;a:14:{s:2:\"id\";s:4:\"6144\";s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520443664\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"149\";s:11:\"trend_index\";s:3:\"139\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:65;a:14:{s:2:\"id\";s:5:\"10590\";s:5:\"title\";s:19:\"Full Screen | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pass1_small.png\";s:12:\"tmpl_created\";s:10:\"1547967978\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"477\";s:11:\"trend_index\";s:3:\"275\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:66;a:14:{s:2:\"id\";s:4:\"6152\";s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443666\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"238\";s:11:\"trend_index\";s:3:\"250\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:67;a:14:{s:2:\"id\";s:5:\"10600\";s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/orange_small.png\";s:12:\"tmpl_created\";s:10:\"1547968080\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"460\";s:11:\"trend_index\";s:3:\"326\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:68;a:14:{s:2:\"id\";s:4:\"6162\";s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443668\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"326\";s:11:\"trend_index\";s:3:\"432\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:69;a:14:{s:2:\"id\";s:4:\"6170\";s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443670\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"321\";s:11:\"trend_index\";s:3:\"418\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:70;a:14:{s:2:\"id\";s:5:\"10622\";s:5:\"title\";s:34:\"Full Screen | Contact | Headphones\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/full_hear_small.png\";s:12:\"tmpl_created\";s:10:\"1547969678\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"505\";s:11:\"trend_index\";s:3:\"533\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:71;a:14:{s:2:\"id\";s:4:\"6178\";s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443676\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"375\";s:11:\"trend_index\";s:3:\"517\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:72;a:14:{s:2:\"id\";s:5:\"10633\";s:5:\"title\";s:23:\"Slide In | Login | Lego\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547969858\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/slide-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"600\";s:11:\"trend_index\";s:3:\"625\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:73;a:14:{s:2:\"id\";s:4:\"6186\";s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443678\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"457\";s:11:\"trend_index\";s:3:\"507\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:74;a:14:{s:2:\"id\";s:5:\"10644\";s:5:\"title\";s:26:\"Fly In | Contact | Webinar\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547970814\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"447\";s:11:\"trend_index\";s:3:\"494\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:75;a:14:{s:2:\"id\";s:4:\"6196\";s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443680\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"106\";s:11:\"trend_index\";s:3:\"101\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:76;a:14:{s:2:\"id\";s:5:\"10654\";s:5:\"title\";s:31:\"Full Screen | Login | Christmas\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/full_login_small.png\";s:12:\"tmpl_created\";s:10:\"1547970917\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-login-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"594\";s:11:\"trend_index\";s:3:\"637\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:77;a:14:{s:2:\"id\";s:4:\"6204\";s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443681\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"215\";s:11:\"trend_index\";s:3:\"242\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:78;a:14:{s:2:\"id\";s:5:\"10664\";s:5:\"title\";s:34:\"Slide In | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_gym_small.png\";s:12:\"tmpl_created\";s:10:\"1547973928\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"499\";s:11:\"trend_index\";s:3:\"496\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:79;a:14:{s:2:\"id\";s:4:\"6212\";s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443684\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"76\";s:11:\"trend_index\";s:2:\"86\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:80;a:14:{s:2:\"id\";s:5:\"10675\";s:5:\"title\";s:35:\"Full Screen | Login | Gym | Fitness\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/gym_full_small.png\";s:12:\"tmpl_created\";s:10:\"1547974110\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"491\";s:11:\"trend_index\";s:3:\"470\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:81;a:14:{s:2:\"id\";s:4:\"6220\";s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443685\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"80\";s:11:\"trend_index\";s:2:\"92\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:82;a:14:{s:2:\"id\";s:4:\"6230\";s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443687\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"372\";s:11:\"trend_index\";s:3:\"392\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:83;a:14:{s:2:\"id\";s:4:\"9719\";s:5:\"title\";s:30:\"Classic | Subscribe | Register\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/register_small.png\";s:12:\"tmpl_created\";s:10:\"1547976107\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-subscribe-register/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"437\";s:11:\"trend_index\";s:3:\"357\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:84;a:14:{s:2:\"id\";s:4:\"6239\";s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443689\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"26\";s:11:\"trend_index\";s:2:\"23\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:85;a:14:{s:2:\"id\";s:4:\"6249\";s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"57\";s:11:\"trend_index\";s:2:\"70\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:86;a:14:{s:2:\"id\";s:4:\"6258\";s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443693\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"405\";s:11:\"trend_index\";s:3:\"493\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:87;a:14:{s:2:\"id\";s:5:\"10137\";s:5:\"title\";s:34:\"Full Screen | Contact | Restaurant\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rest_small.png\";s:12:\"tmpl_created\";s:10:\"1547976342\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"508\";s:11:\"trend_index\";s:3:\"519\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:88;a:14:{s:2:\"id\";s:4:\"6266\";s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443695\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"51\";s:11:\"trend_index\";s:2:\"59\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:89;a:14:{s:2:\"id\";s:5:\"10244\";s:5:\"title\";s:17:\"Bottom Bar | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/wow_small.png\";s:12:\"tmpl_created\";s:10:\"1547976402\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/bottom-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"556\";s:11:\"trend_index\";s:3:\"495\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:90;a:14:{s:2:\"id\";s:4:\"6274\";s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443698\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"98\";s:11:\"trend_index\";s:2:\"87\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:91;a:14:{s:2:\"id\";s:4:\"6017\";s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";s:10:\"1520520331\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"156\";s:11:\"trend_index\";s:3:\"111\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:92;a:14:{s:2:\"id\";s:5:\"10127\";s:5:\"title\";s:35:\"Fly In | Announcement | Maintenance\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pizza_small.png\";s:12:\"tmpl_created\";s:10:\"1547984061\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"610\";s:11:\"trend_index\";s:3:\"635\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:93;a:14:{s:2:\"id\";s:4:\"4826\";s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520544\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"259\";s:11:\"trend_index\";s:3:\"215\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:94;a:14:{s:2:\"id\";s:4:\"4835\";s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520546\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"378\";s:11:\"trend_index\";s:3:\"417\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:95;a:14:{s:2:\"id\";s:4:\"4843\";s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520548\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"396\";s:11:\"trend_index\";s:3:\"405\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:96;a:14:{s:2:\"id\";s:4:\"4854\";s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520520549\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"543\";s:11:\"trend_index\";s:3:\"520\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:97;a:14:{s:2:\"id\";s:4:\"4863\";s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520520551\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"248\";s:11:\"trend_index\";s:3:\"224\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:98;a:14:{s:2:\"id\";s:5:\"10776\";s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social1_small.png\";s:12:\"tmpl_created\";s:10:\"1548047055\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"614\";s:11:\"trend_index\";s:3:\"659\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:99;a:14:{s:2:\"id\";s:4:\"4871\";s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520520552\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"241\";s:11:\"trend_index\";s:3:\"377\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:100;a:14:{s:2:\"id\";s:5:\"10785\";s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social2_small.png\";s:12:\"tmpl_created\";s:10:\"1548047593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/fly-in-contact-social-share-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"449\";s:11:\"trend_index\";s:3:\"371\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:101;a:14:{s:2:\"id\";s:4:\"4880\";s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";s:10:\"1520520554\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"386\";s:11:\"trend_index\";s:3:\"468\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:102;a:14:{s:2:\"id\";s:4:\"4889\";s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";s:10:\"1520520556\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"479\";s:11:\"trend_index\";s:3:\"568\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:103;a:14:{s:2:\"id\";s:4:\"4897\";s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520520557\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"74\";s:11:\"trend_index\";s:2:\"57\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:104;a:14:{s:2:\"id\";s:4:\"4905\";s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520559\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"111\";s:11:\"trend_index\";s:3:\"126\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:105;a:14:{s:2:\"id\";s:4:\"4913\";s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520561\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"227\";s:11:\"trend_index\";s:3:\"289\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:106;a:14:{s:2:\"id\";s:4:\"4921\";s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520520562\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"212\";s:11:\"trend_index\";s:3:\"174\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:107;a:14:{s:2:\"id\";s:4:\"4929\";s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520564\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"42\";s:11:\"trend_index\";s:2:\"38\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:108;a:14:{s:2:\"id\";s:4:\"4939\";s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520565\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"91\";s:11:\"trend_index\";s:2:\"75\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:109;a:14:{s:2:\"id\";s:4:\"4947\";s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"194\";s:11:\"trend_index\";s:3:\"239\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:110;a:14:{s:2:\"id\";s:4:\"4955\";s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520520569\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"334\";s:11:\"trend_index\";s:3:\"389\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:111;a:14:{s:2:\"id\";s:4:\"4963\";s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520570\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"388\";s:11:\"trend_index\";s:3:\"425\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:112;a:14:{s:2:\"id\";s:4:\"4971\";s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520520572\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"558\";s:11:\"trend_index\";s:3:\"555\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:113;a:14:{s:2:\"id\";s:4:\"4979\";s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520573\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"498\";s:11:\"trend_index\";s:3:\"596\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:114;a:14:{s:2:\"id\";s:4:\"4987\";s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";s:10:\"1520520575\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"145\";s:11:\"trend_index\";s:3:\"151\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:115;a:14:{s:2:\"id\";s:4:\"4995\";s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520520577\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"365\";s:11:\"trend_index\";s:3:\"351\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:116;a:14:{s:2:\"id\";s:4:\"5007\";s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520578\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"44\";s:11:\"trend_index\";s:2:\"36\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:117;a:14:{s:2:\"id\";s:4:\"5019\";s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520580\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"164\";s:11:\"trend_index\";s:3:\"148\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:118;a:14:{s:2:\"id\";s:4:\"5027\";s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520581\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"297\";s:11:\"trend_index\";s:3:\"290\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:119;a:14:{s:2:\"id\";s:5:\"10794\";s:5:\"title\";s:34:\"Classic | Contact | Social | Share\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/s_small.png\";s:12:\"tmpl_created\";s:10:\"1548067619\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"434\";s:11:\"trend_index\";s:3:\"349\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:120;a:14:{s:2:\"id\";s:4:\"5037\";s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520520583\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"270\";s:11:\"trend_index\";s:3:\"329\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:121;a:14:{s:2:\"id\";s:4:\"5057\";s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520520586\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"224\";s:11:\"trend_index\";s:3:\"212\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:122;a:14:{s:2:\"id\";s:4:\"5071\";s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520520588\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"275\";s:11:\"trend_index\";s:3:\"327\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:123;a:14:{s:2:\"id\";s:5:\"10871\";s:5:\"title\";s:20:\"Bottom Bar | Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/m_small.png\";s:12:\"tmpl_created\";s:10:\"1548074396\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"619\";s:11:\"trend_index\";s:3:\"615\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:124;a:14:{s:2:\"id\";s:4:\"5082\";s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520520589\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"456\";s:11:\"trend_index\";s:3:\"542\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:125;a:14:{s:2:\"id\";s:5:\"10936\";s:5:\"title\";s:25:\"Full Screen | Toggle Menu\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/menu_small.png\";s:12:\"tmpl_created\";s:10:\"1548874587\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-toggle-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"432\";s:11:\"trend_index\";s:3:\"411\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:126;a:14:{s:2:\"id\";s:4:\"5090\";s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520591\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"175\";s:11:\"trend_index\";s:3:\"158\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:127;a:14:{s:2:\"id\";s:4:\"5098\";s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"153\";s:11:\"trend_index\";s:3:\"109\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:128;a:14:{s:2:\"id\";s:4:\"5107\";s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520520594\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"357\";s:11:\"trend_index\";s:3:\"362\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:129;a:14:{s:2:\"id\";s:5:\"10964\";s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/love_small.png\";s:12:\"tmpl_created\";s:10:\"1550039106\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-promotion-coupon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"570\";s:11:\"trend_index\";s:3:\"461\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:130;a:14:{s:2:\"id\";s:4:\"5115\";s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520596\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"25\";s:11:\"trend_index\";s:2:\"13\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:131;a:14:{s:2:\"id\";s:5:\"10992\";s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/02/h_small.png\";s:12:\"tmpl_created\";s:10:\"1550072007\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-promotion-coupon-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"606\";s:11:\"trend_index\";s:3:\"641\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:132;a:14:{s:2:\"id\";s:4:\"5125\";s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520597\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"226\";s:11:\"trend_index\";s:3:\"198\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:133;a:14:{s:2:\"id\";s:5:\"11005\";s:5:\"title\";s:50:\"Classic | Promotion | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/bear_small.png\";s:12:\"tmpl_created\";s:10:\"1550073303\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-promotion-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"601\";s:11:\"trend_index\";s:3:\"640\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:134;a:14:{s:2:\"id\";s:4:\"5133\";s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520599\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"166\";s:11:\"trend_index\";s:3:\"161\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:135;a:14:{s:2:\"id\";s:4:\"5141\";s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520601\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"350\";s:11:\"trend_index\";s:3:\"557\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:136;a:14:{s:2:\"id\";s:4:\"5149\";s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520602\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"347\";s:11:\"trend_index\";s:3:\"504\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:137;a:14:{s:2:\"id\";s:4:\"5542\";s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520681\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"161\";s:11:\"trend_index\";s:3:\"150\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:138;a:14:{s:2:\"id\";s:4:\"5550\";s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520682\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"264\";s:11:\"trend_index\";s:3:\"194\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:139;a:14:{s:2:\"id\";s:4:\"5558\";s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520684\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"131\";s:11:\"trend_index\";s:3:\"144\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:140;a:14:{s:2:\"id\";s:4:\"5567\";s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520520685\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"160\";s:11:\"trend_index\";s:3:\"102\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:141;a:14:{s:2:\"id\";s:5:\"11231\";s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";s:10:\"1564642380\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"186\";s:11:\"trend_index\";s:2:\"90\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:142;a:14:{s:2:\"id\";s:4:\"5583\";s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520520689\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"184\";s:11:\"trend_index\";s:2:\"44\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:143;a:14:{s:2:\"id\";s:5:\"11220\";s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";s:10:\"1564642385\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"147\";s:11:\"trend_index\";s:2:\"61\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:144;a:14:{s:2:\"id\";s:4:\"5591\";s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520520691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"127\";s:11:\"trend_index\";s:3:\"124\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:145;a:14:{s:2:\"id\";s:5:\"11204\";s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";s:10:\"1564642389\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"358\";s:11:\"trend_index\";s:3:\"236\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:146;a:14:{s:2:\"id\";s:4:\"5599\";s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520520693\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"272\";s:11:\"trend_index\";s:3:\"167\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:147;a:14:{s:2:\"id\";s:5:\"11198\";s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Header_small_3.jpg\";s:12:\"tmpl_created\";s:10:\"1564642395\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"header\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"59\";s:11:\"trend_index\";s:2:\"15\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:148;a:14:{s:2:\"id\";s:4:\"5607\";s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520520695\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"85\";s:11:\"trend_index\";s:1:\"7\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:149;a:14:{s:2:\"id\";s:5:\"11192\";s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";s:10:\"1564642399\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"footer\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"228\";s:11:\"trend_index\";s:3:\"107\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:150;a:14:{s:2:\"id\";s:4:\"5634\";s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520699\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"170\";s:11:\"trend_index\";s:3:\"195\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:151;a:14:{s:2:\"id\";s:4:\"5642\";s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520520701\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"214\";s:11:\"trend_index\";s:3:\"228\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:152;a:14:{s:2:\"id\";s:4:\"5650\";s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520702\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"99\";s:11:\"trend_index\";s:2:\"78\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:153;a:14:{s:2:\"id\";s:4:\"5658\";s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520520704\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"190\";s:11:\"trend_index\";s:3:\"134\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:154;a:14:{s:2:\"id\";s:4:\"5667\";s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520705\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"151\";s:11:\"trend_index\";s:3:\"175\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:155;a:14:{s:2:\"id\";s:4:\"5675\";s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520707\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"361\";s:11:\"trend_index\";s:3:\"406\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:156;a:14:{s:2:\"id\";s:4:\"5860\";s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520746\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"130\";s:11:\"trend_index\";s:3:\"103\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:157;a:14:{s:2:\"id\";s:4:\"5869\";s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520747\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"298\";s:11:\"trend_index\";s:3:\"332\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:158;a:14:{s:2:\"id\";s:4:\"5877\";s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520749\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"472\";s:11:\"trend_index\";s:3:\"492\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:159;a:14:{s:2:\"id\";s:5:\"11468\";s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393182\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"625\";s:11:\"trend_index\";s:3:\"582\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:160;a:14:{s:2:\"id\";s:4:\"5885\";s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520520751\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"283\";s:11:\"trend_index\";s:3:\"204\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:161;a:14:{s:2:\"id\";s:5:\"11461\";s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Header_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393219\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/blocks/gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"277\";s:11:\"trend_index\";s:3:\"164\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:162;a:14:{s:2:\"id\";s:4:\"5893\";s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520520752\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"246\";s:11:\"trend_index\";s:3:\"223\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:163;a:14:{s:2:\"id\";s:5:\"11453\";s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393224\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"footer\",\"Gym\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"328\";s:11:\"trend_index\";s:3:\"247\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:164;a:14:{s:2:\"id\";s:4:\"5904\";s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";s:10:\"1520520754\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"438\";s:11:\"trend_index\";s:3:\"522\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:165;a:14:{s:2:\"id\";s:5:\"11445\";s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393229\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"444\";s:11:\"trend_index\";s:3:\"297\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:166;a:14:{s:2:\"id\";s:4:\"5912\";s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";s:10:\"1520520755\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"577\";s:11:\"trend_index\";s:3:\"581\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:167;a:14:{s:2:\"id\";s:5:\"11435\";s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393296\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"429\";s:11:\"trend_index\";s:3:\"331\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:168;a:14:{s:2:\"id\";s:4:\"5921\";s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";s:10:\"1520520757\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"256\";s:11:\"trend_index\";s:3:\"278\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:169;a:14:{s:2:\"id\";s:5:\"11424\";s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393309\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"611\";s:11:\"trend_index\";s:3:\"583\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:170;a:14:{s:2:\"id\";s:4:\"5930\";s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";s:10:\"1520520758\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"73\";s:11:\"trend_index\";s:2:\"79\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:171;a:14:{s:2:\"id\";s:4:\"5939\";s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";s:10:\"1520520760\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"176\";s:11:\"trend_index\";s:3:\"186\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:172;a:14:{s:2:\"id\";s:4:\"7596\";s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";s:10:\"1521546999\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"35\";s:11:\"trend_index\";s:2:\"39\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:173;a:14:{s:2:\"id\";s:4:\"7615\";s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1521547237\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"27\";s:11:\"trend_index\";s:2:\"28\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:174;a:14:{s:2:\"id\";s:4:\"7627\";s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";s:10:\"1521547332\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"110\";s:11:\"trend_index\";s:3:\"140\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:175;a:14:{s:2:\"id\";s:5:\"11822\";s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";s:10:\"1569429896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"595\";s:11:\"trend_index\";s:3:\"511\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:176;a:14:{s:2:\"id\";s:4:\"7638\";s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";s:10:\"1521547502\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"125\";s:11:\"trend_index\";s:3:\"125\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:177;a:14:{s:2:\"id\";s:5:\"11877\";s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";s:10:\"1569429954\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"604\";s:11:\"trend_index\";s:3:\"554\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:178;a:14:{s:2:\"id\";s:4:\"7663\";s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";s:10:\"1521547761\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"47\";s:11:\"trend_index\";s:2:\"56\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:179;a:14:{s:2:\"id\";s:5:\"11870\";s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";s:10:\"1569429964\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"583\";s:11:\"trend_index\";s:3:\"540\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:180;a:14:{s:2:\"id\";s:4:\"7650\";s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";s:10:\"1521557736\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"100\";s:11:\"trend_index\";s:3:\"110\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:181;a:14:{s:2:\"id\";s:5:\"11861\";s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";s:10:\"1569429975\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"579\";s:11:\"trend_index\";s:3:\"460\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:182;a:14:{s:2:\"id\";s:4:\"7686\";s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";s:10:\"1521558047\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"121\";s:11:\"trend_index\";s:3:\"104\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:183;a:14:{s:2:\"id\";s:5:\"11854\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";s:10:\"1569429983\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"485\";s:11:\"trend_index\";s:3:\"445\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:184;a:14:{s:2:\"id\";s:4:\"4676\";s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";s:10:\"1522014215\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"220\";s:11:\"trend_index\";s:3:\"237\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:185;a:14:{s:2:\"id\";s:5:\"11847\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";s:10:\"1569430010\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"363\";s:11:\"trend_index\";s:3:\"218\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:186;a:14:{s:2:\"id\";s:4:\"7997\";s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1524582343\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"89\";s:11:\"trend_index\";s:2:\"98\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:187;a:14:{s:2:\"id\";s:5:\"11839\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";s:10:\"1569430015\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"315\";s:11:\"trend_index\";s:3:\"202\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:188;a:14:{s:2:\"id\";s:4:\"7982\";s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1524582468\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"230\";s:11:\"trend_index\";s:3:\"230\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:189;a:14:{s:2:\"id\";s:5:\"11832\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";s:10:\"1569430019\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"footer\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"346\";s:11:\"trend_index\";s:3:\"191\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:190;a:14:{s:2:\"id\";s:4:\"7959\";s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1524582605\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"185\";s:11:\"trend_index\";s:3:\"159\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:191;a:14:{s:2:\"id\";s:5:\"11807\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";s:10:\"1569430070\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"527\";s:11:\"trend_index\";s:3:\"370\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:192;a:14:{s:2:\"id\";s:4:\"7950\";s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1524582631\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"252\";s:11:\"trend_index\";s:3:\"263\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:193;a:14:{s:2:\"id\";s:4:\"7937\";s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1524582665\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"208\";s:11:\"trend_index\";s:3:\"229\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:194;a:14:{s:2:\"id\";s:5:\"11897\";s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";s:10:\"1569494236\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"650\";s:11:\"trend_index\";s:3:\"629\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:195;a:14:{s:2:\"id\";s:4:\"7927\";s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1524582691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"179\";s:11:\"trend_index\";s:3:\"187\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:196;a:14:{s:2:\"id\";s:5:\"11890\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";s:10:\"1571907344\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"367\";s:11:\"trend_index\";s:3:\"265\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:197;a:14:{s:2:\"id\";s:4:\"7917\";s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1524582788\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"97\";s:11:\"trend_index\";s:2:\"97\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:198;a:14:{s:2:\"id\";s:4:\"7904\";s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";s:10:\"1524582814\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"201\";s:11:\"trend_index\";s:3:\"226\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:199;a:14:{s:2:\"id\";s:4:\"7837\";s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";s:10:\"1524582852\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"433\";s:11:\"trend_index\";s:3:\"449\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:200;a:14:{s:2:\"id\";s:4:\"7852\";s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";s:10:\"1524582875\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"216\";s:11:\"trend_index\";s:3:\"200\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:201;a:14:{s:2:\"id\";s:4:\"7862\";s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";s:10:\"1524582903\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"140\";s:11:\"trend_index\";s:3:\"197\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:202;a:14:{s:2:\"id\";s:5:\"12212\";s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";s:10:\"1572846914\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"416\";s:11:\"trend_index\";s:3:\"210\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:203;a:14:{s:2:\"id\";s:4:\"7871\";s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";s:10:\"1524582927\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"101\";s:11:\"trend_index\";s:3:\"120\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:204;a:14:{s:2:\"id\";s:5:\"12203\";s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";s:10:\"1572846925\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"555\";s:11:\"trend_index\";s:3:\"395\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:205;a:14:{s:2:\"id\";s:4:\"7884\";s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";s:10:\"1524582944\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"72\";s:11:\"trend_index\";s:3:\"192\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:206;a:14:{s:2:\"id\";s:5:\"12194\";s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/header.png\";s:12:\"tmpl_created\";s:10:\"1572846935\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"168\";s:11:\"trend_index\";s:2:\"47\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:207;a:14:{s:2:\"id\";s:4:\"7892\";s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";s:10:\"1524583015\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"116\";s:11:\"trend_index\";s:3:\"185\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:208;a:14:{s:2:\"id\";s:5:\"12179\";s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";s:10:\"1572846958\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"454\";s:11:\"trend_index\";s:3:\"336\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:209;a:14:{s:2:\"id\";s:4:\"4212\";s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443248\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"129\";s:11:\"trend_index\";s:3:\"133\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:210;a:14:{s:2:\"id\";s:4:\"7825\";s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";s:10:\"1524583273\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"77\";s:11:\"trend_index\";s:2:\"67\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:211;a:14:{s:2:\"id\";s:5:\"12170\";s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";s:10:\"1572846967\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"466\";s:11:\"trend_index\";s:3:\"315\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:212;a:14:{s:2:\"id\";s:4:\"4227\";s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443250\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"332\";s:11:\"trend_index\";s:3:\"323\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:213;a:14:{s:2:\"id\";s:4:\"7812\";s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";s:10:\"1524583298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"109\";s:11:\"trend_index\";s:3:\"108\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:214;a:14:{s:2:\"id\";s:5:\"12164\";s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";s:10:\"1572846979\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"652\";s:11:\"trend_index\";s:3:\"644\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:215;a:14:{s:2:\"id\";s:4:\"4235\";s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443251\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"286\";s:11:\"trend_index\";s:3:\"241\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:216;a:14:{s:2:\"id\";s:4:\"7724\";s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1524583367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"32\";s:11:\"trend_index\";s:2:\"29\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:217;a:14:{s:2:\"id\";s:4:\"4244\";s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443253\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"464\";s:11:\"trend_index\";s:3:\"479\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:218;a:14:{s:2:\"id\";s:4:\"7734\";s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1524583436\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"39\";s:11:\"trend_index\";s:2:\"48\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:219;a:14:{s:2:\"id\";s:4:\"4252\";s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443255\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"45\";s:11:\"trend_index\";s:2:\"35\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:220;a:14:{s:2:\"id\";s:4:\"7771\";s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1524583540\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"103\";s:11:\"trend_index\";s:2:\"83\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:221;a:14:{s:2:\"id\";s:4:\"4260\";s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443257\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"187\";s:11:\"trend_index\";s:3:\"145\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:222;a:14:{s:2:\"id\";s:4:\"7787\";s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";s:10:\"1524583598\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"107\";s:11:\"trend_index\";s:3:\"166\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:223;a:14:{s:2:\"id\";s:4:\"4268\";s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443259\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"162\";s:11:\"trend_index\";s:3:\"240\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:224;a:14:{s:2:\"id\";s:4:\"7801\";s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";s:10:\"1524583659\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"55\";s:11:\"trend_index\";s:2:\"53\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:225;a:14:{s:2:\"id\";s:4:\"4276\";s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443261\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"342\";s:11:\"trend_index\";s:3:\"399\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:226;a:14:{s:2:\"id\";s:4:\"7754\";s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1524583712\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"81\";s:11:\"trend_index\";s:3:\"182\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:227;a:14:{s:2:\"id\";s:4:\"4284\";s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443263\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"49\";s:11:\"trend_index\";s:1:\"9\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:228;a:14:{s:2:\"id\";s:4:\"7713\";s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1524584780\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"48\";s:11:\"trend_index\";s:2:\"41\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:229;a:14:{s:2:\"id\";s:4:\"4293\";s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443265\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"280\";s:11:\"trend_index\";s:3:\"341\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:230;a:14:{s:2:\"id\";s:4:\"7744\";s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1524584784\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"56\";s:11:\"trend_index\";s:3:\"136\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:231;a:14:{s:2:\"id\";s:4:\"4302\";s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443266\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"64\";s:11:\"trend_index\";s:2:\"46\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:232;a:14:{s:2:\"id\";s:5:\"12229\";s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";s:10:\"1572847842\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"548\";s:11:\"trend_index\";s:3:\"387\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:233;a:14:{s:2:\"id\";s:4:\"4313\";s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443268\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"128\";s:11:\"trend_index\";s:3:\"118\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:234;a:14:{s:2:\"id\";s:4:\"8523\";s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";s:10:\"1526415291\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"304\";s:11:\"trend_index\";s:3:\"337\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:235;a:14:{s:2:\"id\";s:5:\"12550\";s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";s:10:\"1575960263\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"671\";s:11:\"trend_index\";s:3:\"662\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:236;a:14:{s:2:\"id\";s:4:\"4324\";s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443270\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"293\";s:11:\"trend_index\";s:3:\"201\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:237;a:14:{s:2:\"id\";s:4:\"8524\";s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";s:10:\"1526415337\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"302\";s:11:\"trend_index\";s:3:\"383\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:238;a:14:{s:2:\"id\";s:5:\"12540\";s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";s:10:\"1575960267\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"631\";s:11:\"trend_index\";s:3:\"560\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:239;a:14:{s:2:\"id\";s:4:\"4332\";s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443272\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"143\";s:11:\"trend_index\";s:3:\"113\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:240;a:14:{s:2:\"id\";s:4:\"8525\";s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";s:10:\"1526415374\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"462\";s:11:\"trend_index\";s:3:\"523\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:241;a:14:{s:2:\"id\";s:5:\"12492\";s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";s:10:\"1575960358\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"501\";s:11:\"trend_index\";s:3:\"317\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:242;a:14:{s:2:\"id\";s:4:\"4341\";s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520443274\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"142\";s:11:\"trend_index\";s:3:\"138\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:243;a:14:{s:2:\"id\";s:4:\"8513\";s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";s:10:\"1526415417\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"417\";s:11:\"trend_index\";s:3:\"481\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:244;a:14:{s:2:\"id\";s:5:\"12500\";s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Header_s.png\";s:12:\"tmpl_created\";s:10:\"1575960371\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"450\";s:11:\"trend_index\";s:3:\"328\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:245;a:14:{s:2:\"id\";s:4:\"4349\";s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";s:10:\"1520443275\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"312\";s:11:\"trend_index\";s:3:\"271\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:246;a:14:{s:2:\"id\";s:4:\"8512\";s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";s:10:\"1526415449\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"458\";s:11:\"trend_index\";s:3:\"584\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:247;a:14:{s:2:\"id\";s:5:\"12509\";s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";s:10:\"1575960378\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/travel-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"656\";s:11:\"trend_index\";s:3:\"658\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:248;a:14:{s:2:\"id\";s:4:\"4357\";s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";s:10:\"1520443277\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"46\";s:11:\"trend_index\";s:2:\"32\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:249;a:14:{s:2:\"id\";s:4:\"8526\";s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";s:10:\"1526415474\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"461\";s:11:\"trend_index\";s:3:\"563\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:250;a:14:{s:2:\"id\";s:5:\"12516\";s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";s:10:\"1575960387\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"509\";s:11:\"trend_index\";s:3:\"300\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:251;a:14:{s:2:\"id\";s:4:\"4368\";s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";s:10:\"1520443279\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"66\";s:11:\"trend_index\";s:2:\"69\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:252;a:14:{s:2:\"id\";s:4:\"8505\";s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";s:10:\"1526415501\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"546\";s:11:\"trend_index\";s:3:\"610\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:253;a:14:{s:2:\"id\";s:5:\"12524\";s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";s:10:\"1575960397\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"572\";s:11:\"trend_index\";s:3:\"464\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:254;a:14:{s:2:\"id\";s:4:\"4376\";s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520443281\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"146\";s:11:\"trend_index\";s:3:\"122\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:255;a:14:{s:2:\"id\";s:4:\"8511\";s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";s:10:\"1526415528\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"362\";s:11:\"trend_index\";s:3:\"408\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:256;a:14:{s:2:\"id\";s:5:\"12531\";s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";s:10:\"1575960404\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"591\";s:11:\"trend_index\";s:3:\"503\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:257;a:14:{s:2:\"id\";s:4:\"4391\";s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";s:10:\"1520443283\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"148\";s:11:\"trend_index\";s:3:\"160\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:258;a:14:{s:2:\"id\";s:4:\"8514\";s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";s:10:\"1526415558\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"412\";s:11:\"trend_index\";s:3:\"505\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:259;a:14:{s:2:\"id\";s:4:\"4400\";s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";s:10:\"1520443285\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"263\";s:11:\"trend_index\";s:3:\"292\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:260;a:14:{s:2:\"id\";s:4:\"8676\";s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1527682423\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"333\";s:11:\"trend_index\";s:3:\"497\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:261;a:14:{s:2:\"id\";s:4:\"4411\";s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443287\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"96\";s:11:\"trend_index\";s:3:\"128\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:262;a:14:{s:2:\"id\";s:4:\"8678\";s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1527682780\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"180\";s:11:\"trend_index\";s:3:\"207\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:263;a:14:{s:2:\"id\";s:4:\"4420\";s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443289\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"181\";s:11:\"trend_index\";s:3:\"208\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:264;a:14:{s:2:\"id\";s:4:\"8679\";s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1527682847\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"195\";s:11:\"trend_index\";s:3:\"318\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:265;a:14:{s:2:\"id\";s:4:\"4428\";s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443291\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"104\";s:11:\"trend_index\";s:3:\"121\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:266;a:14:{s:2:\"id\";s:4:\"8680\";s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1527682896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"404\";s:11:\"trend_index\";s:3:\"434\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:267;a:14:{s:2:\"id\";s:4:\"4436\";s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443293\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"163\";s:11:\"trend_index\";s:3:\"173\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:268;a:14:{s:2:\"id\";s:4:\"8681\";s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1527682969\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"310\";s:11:\"trend_index\";s:3:\"385\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:269;a:14:{s:2:\"id\";s:4:\"4444\";s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443295\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"92\";s:11:\"trend_index\";s:2:\"68\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:270;a:14:{s:2:\"id\";s:4:\"8682\";s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1527683026\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"435\";s:11:\"trend_index\";s:3:\"475\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:271;a:14:{s:2:\"id\";s:4:\"4452\";s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443296\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"144\";s:11:\"trend_index\";s:3:\"129\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:272;a:14:{s:2:\"id\";s:4:\"8703\";s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1527683072\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"400\";s:11:\"trend_index\";s:3:\"427\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:273;a:14:{s:2:\"id\";s:4:\"4460\";s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"119\";s:11:\"trend_index\";s:2:\"63\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:274;a:14:{s:2:\"id\";s:4:\"8961\";s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1528639909\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"83\";s:11:\"trend_index\";s:3:\"157\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:275;a:14:{s:2:\"id\";s:4:\"4468\";s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443301\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"136\";s:11:\"trend_index\";s:3:\"142\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:276;a:14:{s:2:\"id\";s:4:\"8969\";s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1528700014\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"221\";s:11:\"trend_index\";s:3:\"404\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:277;a:14:{s:2:\"id\";s:5:\"12716\";s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";s:10:\"1579060659\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"568\";s:11:\"trend_index\";s:3:\"409\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:278;a:14:{s:2:\"id\";s:4:\"4476\";s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443303\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"242\";s:11:\"trend_index\";s:3:\"227\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:279;a:14:{s:2:\"id\";s:4:\"8973\";s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1528700205\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"173\";s:11:\"trend_index\";s:3:\"225\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:280;a:14:{s:2:\"id\";s:5:\"12707\";s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";s:10:\"1579060669\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"551\";s:11:\"trend_index\";s:3:\"270\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:281;a:14:{s:2:\"id\";s:4:\"4484\";s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443305\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"323\";s:11:\"trend_index\";s:3:\"378\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:282;a:14:{s:2:\"id\";s:4:\"8977\";s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1528700326\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"339\";s:11:\"trend_index\";s:3:\"428\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:283;a:14:{s:2:\"id\";s:5:\"12699\";s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";s:10:\"1579060680\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"496\";s:11:\"trend_index\";s:3:\"199\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:284;a:14:{s:2:\"id\";s:4:\"4492\";s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443307\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"43\";s:11:\"trend_index\";s:2:\"19\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:285;a:14:{s:2:\"id\";s:4:\"8981\";s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1528700484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"307\";s:11:\"trend_index\";s:3:\"447\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:286;a:14:{s:2:\"id\";s:5:\"12688\";s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";s:10:\"1579060692\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"481\";s:11:\"trend_index\";s:3:\"267\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:287;a:14:{s:2:\"id\";s:4:\"4500\";s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443308\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"446\";s:11:\"trend_index\";s:3:\"456\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:288;a:14:{s:2:\"id\";s:4:\"8985\";s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1528700612\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"207\";s:11:\"trend_index\";s:3:\"221\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:289;a:14:{s:2:\"id\";s:5:\"12678\";s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Header_s.png\";s:12:\"tmpl_created\";s:10:\"1579060701\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"header\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"366\";s:11:\"trend_index\";s:3:\"130\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:290;a:14:{s:2:\"id\";s:4:\"4509\";s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443310\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"616\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:291;a:14:{s:2:\"id\";s:4:\"8989\";s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1528701063\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"198\";s:11:\"trend_index\";s:3:\"310\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:292;a:14:{s:2:\"id\";s:5:\"12669\";s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";s:10:\"1579060715\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"footer\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"504\";s:11:\"trend_index\";s:3:\"312\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:293;a:14:{s:2:\"id\";s:4:\"4521\";s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443312\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"311\";s:11:\"trend_index\";s:3:\"283\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:294;a:14:{s:2:\"id\";s:4:\"8996\";s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";s:10:\"1528701290\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"202\";s:11:\"trend_index\";s:3:\"286\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:295;a:14:{s:2:\"id\";s:5:\"12661\";s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";s:10:\"1579060722\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-search/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"515\";s:11:\"trend_index\";s:3:\"288\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:296;a:14:{s:2:\"id\";s:4:\"4529\";s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443314\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"541\";s:11:\"trend_index\";s:3:\"564\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:297;a:14:{s:2:\"id\";s:4:\"9001\";s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";s:10:\"1528701433\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"251\";s:11:\"trend_index\";s:3:\"366\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:298;a:14:{s:2:\"id\";s:5:\"12652\";s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";s:10:\"1579060730\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"554\";s:11:\"trend_index\";s:3:\"374\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:299;a:14:{s:2:\"id\";s:4:\"4537\";s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443315\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"507\";s:11:\"trend_index\";s:3:\"591\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:300;a:14:{s:2:\"id\";s:4:\"9119\";s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";s:10:\"1532428138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/blocks/demo/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"249\";s:11:\"trend_index\";s:3:\"276\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:301;a:14:{s:2:\"id\";s:5:\"12643\";s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";s:10:\"1579060737\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"471\";s:11:\"trend_index\";s:3:\"216\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:302;a:14:{s:2:\"id\";s:4:\"4545\";s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"612\";s:11:\"trend_index\";s:3:\"609\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:303;a:14:{s:2:\"id\";s:4:\"9127\";s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";s:10:\"1532428699\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"54\";s:11:\"trend_index\";s:3:\"119\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:304;a:14:{s:2:\"id\";s:5:\"12635\";s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";s:10:\"1579060746\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/magazine-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"621\";s:11:\"trend_index\";s:3:\"463\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:305;a:14:{s:2:\"id\";s:4:\"4553\";s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443319\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"463\";s:11:\"trend_index\";s:3:\"527\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:306;a:14:{s:2:\"id\";s:5:\"12736\";s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";s:10:\"1579060978\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"669\";s:11:\"trend_index\";s:3:\"649\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:307;a:14:{s:2:\"id\";s:4:\"4562\";s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443322\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"605\";s:11:\"trend_index\";s:3:\"639\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:308;a:14:{s:2:\"id\";s:5:\"12726\";s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";s:10:\"1579061019\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"520\";s:11:\"trend_index\";s:3:\"213\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:309;a:14:{s:2:\"id\";s:4:\"4572\";s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443324\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"306\";s:11:\"trend_index\";s:3:\"319\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:310;a:14:{s:2:\"id\";s:4:\"9174\";s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";s:10:\"1532950125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"52\";s:11:\"trend_index\";s:2:\"16\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:311;a:14:{s:2:\"id\";s:5:\"13089\";s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";s:10:\"1582091623\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/photography-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"665\";s:11:\"trend_index\";s:3:\"588\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:312;a:14:{s:2:\"id\";s:4:\"4580\";s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443326\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"502\";s:11:\"trend_index\";s:3:\"553\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:313;a:14:{s:2:\"id\";s:4:\"9178\";s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";s:10:\"1532951997\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"95\";s:11:\"trend_index\";s:2:\"60\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:314;a:14:{s:2:\"id\";s:5:\"13096\";s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";s:10:\"1582091742\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"628\";s:11:\"trend_index\";s:3:\"477\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:315;a:14:{s:2:\"id\";s:4:\"4589\";s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443327\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"617\";s:11:\"trend_index\";s:3:\"633\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:316;a:14:{s:2:\"id\";s:4:\"9180\";s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";s:10:\"1532952302\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"141\";s:11:\"trend_index\";s:2:\"72\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:317;a:14:{s:2:\"id\";s:5:\"13103\";s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";s:10:\"1582091903\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"footer\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"529\";s:11:\"trend_index\";s:3:\"254\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:318;a:14:{s:2:\"id\";s:4:\"4597\";s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443330\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"532\";s:11:\"trend_index\";s:3:\"543\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:319;a:14:{s:2:\"id\";s:4:\"9182\";s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";s:10:\"1532952606\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"154\";s:11:\"trend_index\";s:2:\"84\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:320;a:14:{s:2:\"id\";s:5:\"13120\";s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";s:10:\"1582092351\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"655\";s:11:\"trend_index\";s:3:\"578\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:321;a:14:{s:2:\"id\";s:4:\"4605\";s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520443332\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"636\";s:11:\"trend_index\";s:3:\"603\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:322;a:14:{s:2:\"id\";s:4:\"9239\";s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";s:10:\"1532953482\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"94\";s:11:\"trend_index\";s:2:\"37\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:323;a:14:{s:2:\"id\";s:5:\"13112\";s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Header_s.png\";s:12:\"tmpl_created\";s:10:\"1582092483\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"header\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"414\";s:11:\"trend_index\";s:2:\"93\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:324;a:14:{s:2:\"id\";s:4:\"4613\";s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443334\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"500\";s:11:\"trend_index\";s:3:\"569\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:325;a:14:{s:2:\"id\";s:4:\"9247\";s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";s:10:\"1532953793\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"112\";s:11:\"trend_index\";s:2:\"55\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:326;a:14:{s:2:\"id\";s:5:\"13129\";s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";s:10:\"1582092645\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"639\";s:11:\"trend_index\";s:3:\"478\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:327;a:14:{s:2:\"id\";s:4:\"9254\";s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";s:10:\"1532954032\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"120\";s:11:\"trend_index\";s:2:\"58\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:328;a:14:{s:2:\"id\";s:4:\"9301\";s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";s:10:\"1537440661\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"211\";s:11:\"trend_index\";s:3:\"284\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:329;a:14:{s:2:\"id\";s:4:\"9296\";s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";s:10:\"1537440673\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"193\";s:11:\"trend_index\";s:3:\"211\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:330;a:14:{s:2:\"id\";s:4:\"9313\";s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";s:10:\"1537440798\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"169\";s:11:\"trend_index\";s:3:\"279\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:331;a:14:{s:2:\"id\";s:4:\"9343\";s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";s:10:\"1537443531\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"191\";s:11:\"trend_index\";s:3:\"268\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:332;a:14:{s:2:\"id\";s:4:\"9349\";s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";s:10:\"1537443903\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"135\";s:11:\"trend_index\";s:3:\"231\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:333;a:14:{s:2:\"id\";s:4:\"4690\";s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443348\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"231\";s:11:\"trend_index\";s:3:\"244\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:334;a:14:{s:2:\"id\";s:4:\"4698\";s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443350\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"391\";s:11:\"trend_index\";s:3:\"448\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:335;a:14:{s:2:\"id\";s:4:\"4706\";s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443352\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"139\";s:11:\"trend_index\";s:3:\"141\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:336;a:14:{s:2:\"id\";s:4:\"4718\";s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443354\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"174\";s:11:\"trend_index\";s:3:\"189\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:337;a:14:{s:2:\"id\";s:4:\"4727\";s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443356\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"360\";s:11:\"trend_index\";s:3:\"364\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:338;a:14:{s:2:\"id\";s:4:\"4736\";s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443358\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"138\";s:11:\"trend_index\";s:3:\"176\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:339;a:14:{s:2:\"id\";s:4:\"4746\";s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443360\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"260\";s:11:\"trend_index\";s:3:\"339\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:340;a:14:{s:2:\"id\";s:4:\"4759\";s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443362\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"281\";s:11:\"trend_index\";s:3:\"380\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:341;a:14:{s:2:\"id\";s:4:\"4770\";s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443364\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/team-12-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"377\";s:11:\"trend_index\";s:3:\"415\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:342;a:14:{s:2:\"id\";s:4:\"4781\";s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443365\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"245\";s:11:\"trend_index\";s:3:\"307\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:343;a:14:{s:2:\"id\";s:4:\"9611\";s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Sale_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546965350\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/hello-bar-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"553\";s:11:\"trend_index\";s:3:\"472\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:344;a:14:{s:2:\"id\";s:5:\"13274\";s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";s:10:\"1586148723\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"664\";s:11:\"trend_index\";s:3:\"462\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:345;a:14:{s:2:\"id\";s:4:\"4793\";s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"188\";s:11:\"trend_index\";s:3:\"243\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:346;a:14:{s:2:\"id\";s:4:\"9622\";s:5:\"title\";s:19:\"Classic | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_promotion_small_02.png\";s:12:\"tmpl_created\";s:10:\"1546965896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"557\";s:11:\"trend_index\";s:3:\"559\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:347;a:14:{s:2:\"id\";s:5:\"13267\";s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";s:10:\"1586148728\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"632\";s:11:\"trend_index\";s:3:\"281\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:348;a:14:{s:2:\"id\";s:4:\"4801\";s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520443369\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"329\";s:11:\"trend_index\";s:3:\"347\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:349;a:14:{s:2:\"id\";s:4:\"9631\";s:5:\"title\";s:38:\"Slide-in | Sale | Register | Subscribe\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Sale_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546968270\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"580\";s:11:\"trend_index\";s:3:\"521\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:350;a:14:{s:2:\"id\";s:5:\"13259\";s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";s:10:\"1586148733\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"623\";s:11:\"trend_index\";s:3:\"282\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:351;a:14:{s:2:\"id\";s:4:\"4809\";s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443371\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"273\";s:11:\"trend_index\";s:3:\"354\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:352;a:14:{s:2:\"id\";s:5:\"13251\";s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";s:10:\"1586148737\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"680\";s:11:\"trend_index\";s:3:\"570\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:353;a:14:{s:2:\"id\";s:4:\"4818\";s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443373\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"430\";s:11:\"trend_index\";s:3:\"586\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:354;a:14:{s:2:\"id\";s:5:\"13244\";s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";s:10:\"1586148742\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"business\",\"footer\",\"interior design\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"586\";s:11:\"trend_index\";s:3:\"163\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:355;a:14:{s:2:\"id\";s:4:\"5045\";s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443423\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"538\";s:11:\"trend_index\";s:3:\"589\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:356;a:14:{s:2:\"id\";s:4:\"9662\";s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottom-Bar_Register_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547009087\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/bottom-bar-register-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"602\";s:11:\"trend_index\";s:3:\"528\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:357;a:14:{s:2:\"id\";s:5:\"13236\";s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Header.png\";s:12:\"tmpl_created\";s:10:\"1586148746\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"business\",\"header\",\"interior design\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"426\";s:11:\"trend_index\";s:2:\"34\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:358;a:14:{s:2:\"id\";s:4:\"5157\";s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443448\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"341\";s:11:\"trend_index\";s:3:\"295\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:359;a:14:{s:2:\"id\";s:5:\"13281\";s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";s:10:\"1586148801\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"interior design\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"681\";s:11:\"trend_index\";s:3:\"624\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:360;a:14:{s:2:\"id\";s:4:\"5165\";s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443450\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"476\";s:11:\"trend_index\";s:3:\"539\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:361;a:14:{s:2:\"id\";s:4:\"5173\";s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443452\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"279\";s:11:\"trend_index\";s:3:\"280\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:362;a:14:{s:2:\"id\";s:4:\"9690\";s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547011716\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"384\";s:11:\"trend_index\";s:3:\"439\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:363;a:14:{s:2:\"id\";s:4:\"5181\";s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443454\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"418\";s:11:\"trend_index\";s:3:\"467\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:364;a:14:{s:2:\"id\";s:4:\"9699\";s:5:\"title\";s:33:\"Classic | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_02.png\";s:12:\"tmpl_created\";s:10:\"1547015827\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"442\";s:11:\"trend_index\";s:3:\"429\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:365;a:14:{s:2:\"id\";s:4:\"5189\";s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443456\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"406\";s:11:\"trend_index\";s:3:\"575\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:366;a:14:{s:2:\"id\";s:4:\"5198\";s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443458\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"487\";s:11:\"trend_index\";s:3:\"590\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:367;a:14:{s:2:\"id\";s:4:\"9571\";s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/FlyIn_Login_01_small.png\";s:12:\"tmpl_created\";s:10:\"1547726151\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/fly-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"563\";s:11:\"trend_index\";s:3:\"556\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:368;a:14:{s:2:\"id\";s:5:\"13395\";s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";s:10:\"1587474673\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"677\";s:11:\"trend_index\";s:3:\"536\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:369;a:14:{s:2:\"id\";s:4:\"5206\";s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443459\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"517\";s:11:\"trend_index\";s:3:\"530\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:370;a:14:{s:2:\"id\";s:5:\"13387\";s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";s:10:\"1587474682\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"679\";s:11:\"trend_index\";s:3:\"458\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:371;a:14:{s:2:\"id\";s:4:\"5214\";s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443462\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"203\";s:11:\"trend_index\";s:3:\"238\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:372;a:14:{s:2:\"id\";s:5:\"13378\";s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Header.jpg\";s:12:\"tmpl_created\";s:10:\"1587474693\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"651\";s:11:\"trend_index\";s:3:\"172\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:373;a:14:{s:2:\"id\";s:4:\"5222\";s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443464\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"387\";s:11:\"trend_index\";s:3:\"400\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:374;a:14:{s:2:\"id\";s:4:\"9740\";s:5:\"title\";s:25:\"Classic | Promotion | App\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small.png\";s:12:\"tmpl_created\";s:10:\"1547822836\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/classic-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"545\";s:11:\"trend_index\";s:3:\"534\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:375;a:14:{s:2:\"id\";s:5:\"13369\";s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";s:10:\"1587474701\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"653\";s:11:\"trend_index\";s:3:\"152\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:376;a:14:{s:2:\"id\";s:4:\"5230\";s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443466\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"320\";s:11:\"trend_index\";s:3:\"453\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:377;a:14:{s:2:\"id\";s:5:\"13361\";s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";s:10:\"1587474710\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/online-course-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"682\";s:11:\"trend_index\";s:3:\"515\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:378;a:14:{s:2:\"id\";s:4:\"5238\";s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443468\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"535\";s:11:\"trend_index\";s:3:\"621\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:379;a:14:{s:2:\"id\";s:4:\"9762\";s:5:\"title\";s:36:\"Classic | Register | Subscribe | Spa\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small_classic.png\";s:12:\"tmpl_created\";s:10:\"1547824145\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-register-subscribe-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"445\";s:11:\"trend_index\";s:3:\"401\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:380;a:14:{s:2:\"id\";s:5:\"13413\";s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";s:10:\"1587474761\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"675\";s:11:\"trend_index\";s:3:\"435\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:381;a:14:{s:2:\"id\";s:4:\"5249\";s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443470\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"470\";s:11:\"trend_index\";s:3:\"531\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:382;a:14:{s:2:\"id\";s:4:\"9772\";s:5:\"title\";s:27:\"Hello bar | Promotion | App\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/app_hello_small.png\";s:12:\"tmpl_created\";s:10:\"1547824279\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"654\";s:11:\"trend_index\";s:3:\"669\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:383;a:14:{s:2:\"id\";s:5:\"13402\";s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";s:10:\"1587474772\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"678\";s:11:\"trend_index\";s:3:\"512\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:384;a:14:{s:2:\"id\";s:4:\"5257\";s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443472\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"395\";s:11:\"trend_index\";s:3:\"485\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:385;a:14:{s:2:\"id\";s:5:\"13422\";s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";s:10:\"1587474782\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"674\";s:11:\"trend_index\";s:3:\"356\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"1\";}i:386;a:14:{s:2:\"id\";s:4:\"5266\";s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443474\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"113\";s:11:\"trend_index\";s:2:\"82\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:387;a:14:{s:2:\"id\";s:4:\"9793\";s:5:\"title\";s:13:\"Fly In | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_black_small.png\";s:12:\"tmpl_created\";s:10:\"1547831151\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/popups/fly-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"592\";s:11:\"trend_index\";s:3:\"606\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:388;a:14:{s:2:\"id\";s:4:\"5275\";s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443476\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"331\";s:11:\"trend_index\";s:3:\"309\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:389;a:14:{s:2:\"id\";s:4:\"5283\";s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443478\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"290\";s:11:\"trend_index\";s:3:\"313\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:390;a:14:{s:2:\"id\";s:4:\"5290\";s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443480\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"490\";s:11:\"trend_index\";s:3:\"614\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:391;a:14:{s:2:\"id\";s:4:\"5298\";s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443482\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"411\";s:11:\"trend_index\";s:3:\"532\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:392;a:14:{s:2:\"id\";s:4:\"9836\";s:5:\"title\";s:21:\"Classic | Login | Pop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/login_b_small.png\";s:12:\"tmpl_created\";s:10:\"1547835635\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/classic-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"560\";s:11:\"trend_index\";s:3:\"576\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:393;a:14:{s:2:\"id\";s:4:\"5306\";s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"578\";s:11:\"trend_index\";s:3:\"626\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:394;a:14:{s:2:\"id\";s:4:\"9847\";s:5:\"title\";s:25:\"Fly In | Promotion | Lego\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_in_promotion_tro.png\";s:12:\"tmpl_created\";s:10:\"1547836956\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"641\";s:11:\"trend_index\";s:3:\"664\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:395;a:14:{s:2:\"id\";s:4:\"5315\";s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";s:10:\"1520443486\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"459\";s:11:\"trend_index\";s:3:\"499\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:396;a:14:{s:2:\"id\";s:4:\"9858\";s:5:\"title\";s:27:\"Slide In | Promotion | Wine\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_promotion_wine_small.png\";s:12:\"tmpl_created\";s:10:\"1547837100\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"666\";s:11:\"trend_index\";s:3:\"676\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:397;a:14:{s:2:\"id\";s:4:\"5324\";s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";s:10:\"1520443488\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"475\";s:11:\"trend_index\";s:3:\"488\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:398;a:14:{s:2:\"id\";s:4:\"5333\";s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443489\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"237\";s:11:\"trend_index\";s:3:\"261\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:399;a:14:{s:2:\"id\";s:4:\"5341\";s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443491\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"534\";s:11:\"trend_index\";s:3:\"617\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:400;a:14:{s:2:\"id\";s:4:\"5349\";s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443493\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"235\";s:11:\"trend_index\";s:3:\"245\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:401;a:14:{s:2:\"id\";s:4:\"5357\";s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520443495\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"324\";s:11:\"trend_index\";s:3:\"410\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:402;a:14:{s:2:\"id\";s:4:\"5368\";s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443497\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"234\";s:11:\"trend_index\";s:3:\"350\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:403;a:14:{s:2:\"id\";s:4:\"5381\";s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443499\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"183\";s:11:\"trend_index\";s:3:\"273\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:404;a:14:{s:2:\"id\";s:4:\"5389\";s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443501\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"385\";s:11:\"trend_index\";s:3:\"446\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:405;a:14:{s:2:\"id\";s:4:\"9944\";s:5:\"title\";s:33:\"Slide In | Promotion | Headphones\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_head_small.png\";s:12:\"tmpl_created\";s:10:\"1547841939\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"643\";s:11:\"trend_index\";s:3:\"670\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:406;a:14:{s:2:\"id\";s:4:\"5397\";s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443503\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"150\";s:11:\"trend_index\";s:3:\"177\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:407;a:14:{s:2:\"id\";s:4:\"9955\";s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_login_lock_small.png\";s:12:\"tmpl_created\";s:10:\"1547842065\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/fly-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"514\";s:11:\"trend_index\";s:3:\"394\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:408;a:14:{s:2:\"id\";s:4:\"5405\";s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443505\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"222\";s:11:\"trend_index\";s:3:\"257\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:409;a:14:{s:2:\"id\";s:4:\"9965\";s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_moon_small.png\";s:12:\"tmpl_created\";s:10:\"1547842174\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"512\";s:11:\"trend_index\";s:3:\"566\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:410;a:14:{s:2:\"id\";s:4:\"5413\";s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443507\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"123\";s:11:\"trend_index\";s:2:\"33\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:411;a:14:{s:2:\"id\";s:4:\"5421\";s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443509\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"239\";s:11:\"trend_index\";s:3:\"219\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:412;a:14:{s:2:\"id\";s:4:\"5429\";s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443510\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"86\";s:11:\"trend_index\";s:2:\"71\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:413;a:14:{s:2:\"id\";s:4:\"9995\";s:5:\"title\";s:27:\"Slide In | Sale | Christmas\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_christmas_small.png\";s:12:\"tmpl_created\";s:10:\"1547844802\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"667\";s:11:\"trend_index\";s:3:\"671\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:414;a:14:{s:2:\"id\";s:4:\"5438\";s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443512\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"199\";s:11:\"trend_index\";s:3:\"156\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:415;a:14:{s:2:\"id\";s:4:\"5447\";s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443514\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"58\";s:11:\"trend_index\";s:2:\"43\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:416;a:14:{s:2:\"id\";s:5:\"10016\";s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Hello-Bar_Promotion_bag_small.png\";s:12:\"tmpl_created\";s:10:\"1547845062\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/hello-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"676\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:417;a:14:{s:2:\"id\";s:4:\"5455\";s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443516\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"134\";s:11:\"trend_index\";s:3:\"162\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:418;a:14:{s:2:\"id\";s:5:\"10026\";s:5:\"title\";s:46:\"Classic | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_register_small.png\";s:12:\"tmpl_created\";s:10:\"1547845205\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"530\";s:11:\"trend_index\";s:3:\"622\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:419;a:14:{s:2:\"id\";s:4:\"5464\";s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443518\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"233\";s:11:\"trend_index\";s:3:\"293\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:420;a:14:{s:2:\"id\";s:5:\"10036\";s:5:\"title\";s:43:\"Full Screen | Sale | Promotion | Headphones\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_sale_head_small.png\";s:12:\"tmpl_created\";s:10:\"1547845409\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"550\";s:11:\"trend_index\";s:3:\"599\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:421;a:14:{s:2:\"id\";s:4:\"5472\";s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443520\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"209\";s:11:\"trend_index\";s:3:\"232\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:422;a:14:{s:2:\"id\";s:4:\"5480\";s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";s:10:\"1520443522\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-4-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"409\";s:11:\"trend_index\";s:3:\"391\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:423;a:14:{s:2:\"id\";s:5:\"10057\";s:5:\"title\";s:48:\"Hello Bar | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/hello-bar_register_sport_small.png\";s:12:\"tmpl_created\";s:10:\"1547847938\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/hello-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"658\";s:11:\"trend_index\";s:3:\"656\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:424;a:14:{s:2:\"id\";s:4:\"5488\";s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443524\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"300\";s:11:\"trend_index\";s:3:\"413\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:425;a:14:{s:2:\"id\";s:4:\"5496\";s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";s:10:\"1520443526\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"469\";s:11:\"trend_index\";s:3:\"613\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:426;a:14:{s:2:\"id\";s:4:\"5504\";s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443528\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"105\";s:11:\"trend_index\";s:3:\"137\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:427;a:14:{s:2:\"id\";s:5:\"10087\";s:5:\"title\";s:25:\"Full Screen | Login | Spa\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2019/01/full-screen_login_spa_small.png\";s:12:\"tmpl_created\";s:10:\"1547848301\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-login-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"567\";s:11:\"trend_index\";s:3:\"647\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:428;a:14:{s:2:\"id\";s:4:\"5515\";s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443530\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"276\";s:11:\"trend_index\";s:3:\"325\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:429;a:14:{s:2:\"id\";s:5:\"10097\";s:5:\"title\";s:37:\"Classic | Register | Subscribe | Lego\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_lego_small.png\";s:12:\"tmpl_created\";s:10:\"1547848411\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"603\";s:11:\"trend_index\";s:3:\"605\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:430;a:14:{s:2:\"id\";s:4:\"1190\";s:5:\"title\";s:26:\"Landing Page &#8211; Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png\";s:12:\"tmpl_created\";s:10:\"1490707391\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/landing-page-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"1\";s:16:\"popularity_index\";s:1:\"4\";s:11:\"trend_index\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:431;a:14:{s:2:\"id\";s:4:\"9816\";s:5:\"title\";s:30:\"Classic | Sale | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_sale_sport_small.png\";s:12:\"tmpl_created\";s:10:\"1547991876\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"1\";s:16:\"popularity_index\";s:3:\"613\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:432;a:14:{s:2:\"id\";s:4:\"9602\";s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottombar_Announcement_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546964559\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/bottom-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"1\";s:16:\"popularity_index\";s:3:\"542\";s:11:\"trend_index\";s:3:\"529\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:433;a:14:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:27:\"Homepage &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0016.png\";s:12:\"tmpl_created\";s:10:\"1470829872\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Homepage\",\"Restaurant\"]\";s:10:\"menu_order\";s:1:\"2\";s:16:\"popularity_index\";s:1:\"1\";s:11:\"trend_index\";s:1:\"2\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:434;a:14:{s:2:\"id\";s:3:\"463\";s:5:\"title\";s:22:\"Homepage &#8211; Study\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0022.png\";s:12:\"tmpl_created\";s:10:\"1477388340\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/homepage-study/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Education\",\"Homepage\",\"Study\"]\";s:10:\"menu_order\";s:1:\"3\";s:16:\"popularity_index\";s:1:\"5\";s:11:\"trend_index\";s:1:\"4\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:435;a:14:{s:2:\"id\";s:5:\"10277\";s:5:\"title\";s:36:\"Bottom Bar | Promotion | Sale | Book\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/book_small.png\";s:12:\"tmpl_created\";s:10:\"1548055999\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/bottom-bar-promotion-book/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"3\";s:16:\"popularity_index\";s:3:\"630\";s:11:\"trend_index\";s:3:\"645\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:436;a:14:{s:2:\"id\";s:5:\"11241\";s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";s:10:\"1564643043\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"3\";s:16:\"popularity_index\";s:3:\"389\";s:11:\"trend_index\";s:3:\"381\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:437;a:14:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:23:\"Homepage &#8211; Agency\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0019.png\";s:12:\"tmpl_created\";s:10:\"1470826567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/homepage-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";s:1:\"4\";s:16:\"popularity_index\";s:1:\"3\";s:11:\"trend_index\";s:1:\"3\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:438;a:14:{s:2:\"id\";s:4:\"9903\";s:5:\"title\";s:34:\"Bottom Bar | Promotion | Olive Oil\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom-bar_promotion_olive_small.png\";s:12:\"tmpl_created\";s:10:\"1547838896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"4\";s:16:\"popularity_index\";s:3:\"657\";s:11:\"trend_index\";s:3:\"677\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:439;a:14:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:19:\"Product &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0003.png\";s:12:\"tmpl_created\";s:10:\"1470829879\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/product-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"5\";s:16:\"popularity_index\";s:1:\"8\";s:11:\"trend_index\";s:1:\"5\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:440;a:14:{s:2:\"id\";s:5:\"10549\";s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/com_small.png\";s:12:\"tmpl_created\";s:10:\"1547967595\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/bottom-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"6\";s:16:\"popularity_index\";s:3:\"624\";s:11:\"trend_index\";s:3:\"648\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:441;a:14:{s:2:\"id\";s:5:\"13307\";s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";s:10:\"1587474541\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/online-course-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";s:1:\"6\";s:16:\"popularity_index\";s:3:\"565\";s:11:\"trend_index\";s:2:\"49\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:442;a:14:{s:2:\"id\";s:5:\"13328\";s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";s:10:\"1587474558\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/online-course-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";s:1:\"7\";s:16:\"popularity_index\";s:3:\"649\";s:11:\"trend_index\";s:3:\"235\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:443;a:14:{s:2:\"id\";s:5:\"13338\";s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";s:10:\"1587474574\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/online-course-course-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";s:1:\"8\";s:16:\"popularity_index\";s:3:\"589\";s:11:\"trend_index\";s:2:\"89\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:444;a:14:{s:2:\"id\";s:5:\"10529\";s:5:\"title\";s:36:\"Classic | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/icon_small.png\";s:12:\"tmpl_created\";s:10:\"1548046309\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"9\";s:16:\"popularity_index\";s:3:\"440\";s:11:\"trend_index\";s:3:\"500\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:445;a:14:{s:2:\"id\";s:5:\"13352\";s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";s:10:\"1587474591\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/online-course-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";s:1:\"9\";s:16:\"popularity_index\";s:3:\"660\";s:11:\"trend_index\";s:3:\"233\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:446;a:14:{s:2:\"id\";s:5:\"13187\";s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";s:10:\"1586148661\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/interior-design-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";s:2:\"10\";s:16:\"popularity_index\";s:3:\"540\";s:11:\"trend_index\";s:3:\"112\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:447;a:14:{s:2:\"id\";s:5:\"13199\";s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";s:10:\"1586148666\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/interior-design-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";s:2:\"11\";s:16:\"popularity_index\";s:3:\"539\";s:11:\"trend_index\";s:2:\"96\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:448;a:14:{s:2:\"id\";s:5:\"13214\";s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";s:10:\"1586148672\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/interior-design-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";s:2:\"12\";s:16:\"popularity_index\";s:3:\"574\";s:11:\"trend_index\";s:3:\"155\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:449;a:14:{s:2:\"id\";s:5:\"13229\";s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";s:10:\"1586148677\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/interior-design-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";s:2:\"13\";s:16:\"popularity_index\";s:3:\"584\";s:11:\"trend_index\";s:3:\"179\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:450;a:14:{s:2:\"id\";s:5:\"12948\";s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";s:10:\"1582093442\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/photography-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"14\";s:16:\"popularity_index\";s:3:\"356\";s:11:\"trend_index\";s:2:\"91\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:451;a:14:{s:2:\"id\";s:5:\"12798\";s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";s:10:\"1582093446\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/photography-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"15\";s:16:\"popularity_index\";s:3:\"521\";s:11:\"trend_index\";s:3:\"285\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:452;a:14:{s:2:\"id\";s:5:\"12868\";s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";s:10:\"1582093450\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/photography-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"16\";s:16:\"popularity_index\";s:3:\"547\";s:11:\"trend_index\";s:3:\"372\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:453;a:14:{s:2:\"id\";s:5:\"10413\";s:5:\"title\";s:28:\"Classic | Content Lock | Pop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/hot_small.png\";s:12:\"tmpl_created\";s:10:\"1547961774\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"17\";s:16:\"popularity_index\";s:3:\"644\";s:11:\"trend_index\";s:3:\"663\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:454;a:14:{s:2:\"id\";s:5:\"13056\";s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";s:10:\"1582093454\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/photography-wildlife/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"17\";s:16:\"popularity_index\";s:3:\"564\";s:11:\"trend_index\";s:3:\"322\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:455;a:14:{s:2:\"id\";s:5:\"12922\";s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";s:10:\"1582093457\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"18\";s:16:\"popularity_index\";s:3:\"590\";s:11:\"trend_index\";s:3:\"454\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:456;a:14:{s:2:\"id\";s:5:\"10223\";s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/welcome_small.png\";s:12:\"tmpl_created\";s:10:\"1547887343\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"19\";s:16:\"popularity_index\";s:3:\"452\";s:11:\"trend_index\";s:3:\"422\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:457;a:14:{s:2:\"id\";s:5:\"10559\";s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_small.png\";s:12:\"tmpl_created\";s:10:\"1547967711\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/bottom-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"19\";s:16:\"popularity_index\";s:3:\"607\";s:11:\"trend_index\";s:3:\"665\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:458;a:14:{s:2:\"id\";s:5:\"12875\";s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";s:10:\"1582093461\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"19\";s:16:\"popularity_index\";s:3:\"640\";s:11:\"trend_index\";s:3:\"567\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:459;a:14:{s:2:\"id\";s:5:\"10403\";s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_small.png\";s:12:\"tmpl_created\";s:10:\"1548056371\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"20\";s:16:\"popularity_index\";s:3:\"549\";s:11:\"trend_index\";s:3:\"602\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:460;a:14:{s:2:\"id\";s:5:\"12962\";s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";s:10:\"1582093465\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/photography-nature/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"20\";s:16:\"popularity_index\";s:3:\"585\";s:11:\"trend_index\";s:3:\"296\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:461;a:14:{s:2:\"id\";s:5:\"12833\";s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";s:10:\"1582093469\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"21\";s:16:\"popularity_index\";s:3:\"593\";s:11:\"trend_index\";s:3:\"259\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:462;a:14:{s:2:\"id\";s:4:\"9913\";s:5:\"title\";s:27:\"Classic | Login | Christmas\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/log_small.png\";s:12:\"tmpl_created\";s:10:\"1547841430\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"21\";s:16:\"popularity_index\";s:3:\"513\";s:11:\"trend_index\";s:3:\"487\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:463;a:14:{s:2:\"id\";s:5:\"12898\";s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";s:10:\"1582093473\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"22\";s:16:\"popularity_index\";s:3:\"635\";s:11:\"trend_index\";s:3:\"480\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:464;a:14:{s:2:\"id\";s:5:\"12994\";s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";s:10:\"1582093477\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/photography-pets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"23\";s:16:\"popularity_index\";s:3:\"598\";s:11:\"trend_index\";s:3:\"514\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:465;a:14:{s:2:\"id\";s:5:\"12805\";s:5:\"title\";s:38:\"Photography &#8211; B&#038;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";s:10:\"1582093481\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/photography-bw-portraits/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"24\";s:16:\"popularity_index\";s:3:\"642\";s:11:\"trend_index\";s:3:\"562\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:466;a:14:{s:2:\"id\";s:5:\"13031\";s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";s:10:\"1582093484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"25\";s:16:\"popularity_index\";s:3:\"615\";s:11:\"trend_index\";s:3:\"538\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:467;a:14:{s:2:\"id\";s:5:\"12621\";s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";s:10:\"1579060604\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/magazine-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";s:2:\"26\";s:16:\"popularity_index\";s:3:\"291\";s:11:\"trend_index\";s:2:\"74\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:468;a:14:{s:2:\"id\";s:4:\"9592\";s:5:\"title\";s:26:\"Classic | Promotion | Sale\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Promotion_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546963720\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"26\";s:16:\"popularity_index\";s:3:\"582\";s:11:\"trend_index\";s:3:\"650\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:469;a:14:{s:2:\"id\";s:5:\"10210\";s:5:\"title\";s:29:\"Classic | Promotion | Webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547886103\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"27\";s:16:\"popularity_index\";s:3:\"672\";s:11:\"trend_index\";s:3:\"642\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:470;a:14:{s:2:\"id\";s:5:\"12352\";s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";s:10:\"1575960464\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:2:\"27\";s:16:\"popularity_index\";s:3:\"322\";s:11:\"trend_index\";s:3:\"184\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:471;a:14:{s:2:\"id\";s:5:\"12400\";s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";s:10:\"1575960441\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:2:\"28\";s:16:\"popularity_index\";s:3:\"431\";s:11:\"trend_index\";s:3:\"333\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:472;a:14:{s:2:\"id\";s:5:\"12479\";s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";s:10:\"1575960474\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:2:\"29\";s:16:\"popularity_index\";s:3:\"497\";s:11:\"trend_index\";s:3:\"397\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:473;a:14:{s:2:\"id\";s:5:\"12466\";s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";s:10:\"1575960469\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-testimonials/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:2:\"30\";s:16:\"popularity_index\";s:3:\"506\";s:11:\"trend_index\";s:3:\"451\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:474;a:14:{s:2:\"id\";s:5:\"10047\";s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1547847757\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"30\";s:16:\"popularity_index\";s:3:\"486\";s:11:\"trend_index\";s:3:\"314\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:475;a:14:{s:2:\"id\";s:5:\"12443\";s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";s:10:\"1575960459\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/travel-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:2:\"31\";s:16:\"popularity_index\";s:3:\"474\";s:11:\"trend_index\";s:3:\"274\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:476;a:14:{s:2:\"id\";s:4:\"9879\";s:5:\"title\";s:38:\"Classic | Register | Subscribe | Leads\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/dog_small.png\";s:12:\"tmpl_created\";s:10:\"1547838416\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"31\";s:16:\"popularity_index\";s:3:\"587\";s:11:\"trend_index\";s:3:\"628\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:477;a:14:{s:2:\"id\";s:5:\"12431\";s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";s:10:\"1575960453\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/travel-faq/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:2:\"32\";s:16:\"popularity_index\";s:3:\"516\";s:11:\"trend_index\";s:3:\"365\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:478;a:14:{s:2:\"id\";s:5:\"12421\";s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";s:10:\"1575960445\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-contact-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:2:\"33\";s:16:\"popularity_index\";s:3:\"533\";s:11:\"trend_index\";s:3:\"384\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:479;a:14:{s:2:\"id\";s:5:\"11763\";s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";s:10:\"1569428959\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/portfolio-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"34\";s:16:\"popularity_index\";s:3:\"299\";s:11:\"trend_index\";s:3:\"190\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:480;a:14:{s:2:\"id\";s:5:\"10297\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/s_yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1548056099\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"35\";s:16:\"popularity_index\";s:3:\"525\";s:11:\"trend_index\";s:3:\"561\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:481;a:14:{s:2:\"id\";s:5:\"11781\";s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";s:10:\"1569428955\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/portfolio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"35\";s:16:\"popularity_index\";s:3:\"364\";s:11:\"trend_index\";s:3:\"305\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:482;a:14:{s:2:\"id\";s:5:\"10393\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small.png\";s:12:\"tmpl_created\";s:10:\"1548056682\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"36\";s:16:\"popularity_index\";s:3:\"597\";s:11:\"trend_index\";s:3:\"612\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:483;a:14:{s:2:\"id\";s:5:\"11793\";s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";s:10:\"1569428951\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/portfolio-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"36\";s:16:\"popularity_index\";s:3:\"423\";s:11:\"trend_index\";s:3:\"436\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:484;a:14:{s:2:\"id\";s:5:\"11800\";s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";s:10:\"1569428946\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/portfolio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"37\";s:16:\"popularity_index\";s:3:\"467\";s:11:\"trend_index\";s:3:\"421\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:485;a:14:{s:2:\"id\";s:5:\"10579\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/sale1_small.png\";s:12:\"tmpl_created\";s:10:\"1547967887\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"38\";s:16:\"popularity_index\";s:3:\"620\";s:11:\"trend_index\";s:3:\"668\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:486;a:14:{s:2:\"id\";s:5:\"11163\";s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";s:10:\"1564641877\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/digital-agency-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:2:\"38\";s:16:\"popularity_index\";s:2:\"90\";s:11:\"trend_index\";s:2:\"30\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:487;a:14:{s:2:\"id\";s:5:\"11129\";s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";s:10:\"1564641889\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:2:\"39\";s:16:\"popularity_index\";s:3:\"217\";s:11:\"trend_index\";s:3:\"149\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:488;a:14:{s:2:\"id\";s:5:\"11074\";s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";s:10:\"1564641872\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/digital-agency-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:2:\"40\";s:16:\"popularity_index\";s:3:\"182\";s:11:\"trend_index\";s:3:\"105\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:489;a:14:{s:2:\"id\";s:5:\"11056\";s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";s:10:\"1564641867\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/digital-agency-social-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:2:\"41\";s:16:\"popularity_index\";s:3:\"305\";s:11:\"trend_index\";s:3:\"169\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:490;a:14:{s:2:\"id\";s:5:\"11094\";s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";s:10:\"1564641885\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/digital-agency-clients/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:2:\"42\";s:16:\"popularity_index\";s:3:\"413\";s:11:\"trend_index\";s:3:\"368\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:491;a:14:{s:2:\"id\";s:5:\"10180\";s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_small.png\";s:12:\"tmpl_created\";s:10:\"1548045309\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"43\";s:16:\"popularity_index\";s:3:\"596\";s:11:\"trend_index\";s:3:\"558\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:492;a:14:{s:2:\"id\";s:5:\"11034\";s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";s:10:\"1564641881\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/contact-digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:2:\"43\";s:16:\"popularity_index\";s:3:\"218\";s:11:\"trend_index\";s:3:\"132\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:493;a:14:{s:2:\"id\";s:3:\"519\";s:5:\"title\";s:24:\"Homepage &#8211; Fitness\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0023.png\";s:12:\"tmpl_created\";s:10:\"1477388808\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Fitness\",\"Gym\",\"Health\",\"Homepage\",\"Sport\"]\";s:10:\"menu_order\";s:2:\"44\";s:16:\"popularity_index\";s:1:\"9\";s:11:\"trend_index\";s:2:\"25\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:494;a:14:{s:2:\"id\";s:4:\"9139\";s:5:\"title\";s:25:\"Homepage &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/07/Get_Started_250.png\";s:12:\"tmpl_created\";s:10:\"1532949924\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:167:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"marketing campaign\",\"marketing landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";s:2:\"45\";s:16:\"popularity_index\";s:1:\"6\";s:11:\"trend_index\";s:2:\"10\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:495;a:14:{s:2:\"id\";s:4:\"9731\";s:5:\"title\";s:26:\"Classic | Sale | Promotion\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/icecream_small.png\";s:12:\"tmpl_created\";s:10:\"1547976166\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/classic-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"46\";s:16:\"popularity_index\";s:3:\"561\";s:11:\"trend_index\";s:3:\"547\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:496;a:14:{s:2:\"id\";s:4:\"1504\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png\";s:12:\"tmpl_created\";s:10:\"1494352112\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"46\";s:16:\"popularity_index\";s:3:\"152\";s:11:\"trend_index\";s:3:\"188\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:497;a:14:{s:2:\"id\";s:4:\"1503\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png\";s:12:\"tmpl_created\";s:10:\"1494352113\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"47\";s:16:\"popularity_index\";s:3:\"155\";s:11:\"trend_index\";s:3:\"170\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:498;a:14:{s:2:\"id\";s:4:\"1634\";s:5:\"title\";s:33:\"Landing Page &#8211; Chiropractor\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png\";s:12:\"tmpl_created\";s:10:\"1494352119\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-chiropractor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"48\";s:16:\"popularity_index\";s:3:\"206\";s:11:\"trend_index\";s:3:\"253\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:499;a:14:{s:2:\"id\";s:5:\"12155\";s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";s:10:\"1572847054\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/law-firm-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"49\";s:16:\"popularity_index\";s:3:\"267\";s:11:\"trend_index\";s:3:\"116\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:500;a:14:{s:2:\"id\";s:5:\"12143\";s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";s:10:\"1572847069\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/law-firm-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"50\";s:16:\"popularity_index\";s:3:\"422\";s:11:\"trend_index\";s:3:\"260\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:501;a:14:{s:2:\"id\";s:5:\"12091\";s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";s:10:\"1572847113\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/law-firm-team/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"50\";s:16:\"popularity_index\";s:3:\"402\";s:11:\"trend_index\";s:3:\"222\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:502;a:14:{s:2:\"id\";s:5:\"11572\";s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392934\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"51\";s:16:\"popularity_index\";s:3:\"544\";s:11:\"trend_index\";s:3:\"440\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:503;a:14:{s:2:\"id\";s:5:\"12133\";s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";s:10:\"1572847078\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-careers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"51\";s:16:\"popularity_index\";s:3:\"562\";s:11:\"trend_index\";s:3:\"431\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:504;a:14:{s:2:\"id\";s:5:\"12080\";s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";s:10:\"1572847120\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-partner/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"51\";s:16:\"popularity_index\";s:3:\"552\";s:11:\"trend_index\";s:3:\"419\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:505;a:14:{s:2:\"id\";s:5:\"11506\";s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392930\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"52\";s:16:\"popularity_index\";s:3:\"526\";s:11:\"trend_index\";s:3:\"361\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:506;a:14:{s:2:\"id\";s:5:\"12124\";s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";s:10:\"1572847096\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/law-firm-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"52\";s:16:\"popularity_index\";s:3:\"453\";s:11:\"trend_index\";s:3:\"335\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:507;a:14:{s:2:\"id\";s:5:\"12044\";s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";s:10:\"1572847130\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"52\";s:16:\"popularity_index\";s:3:\"465\";s:11:\"trend_index\";s:3:\"375\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:508;a:14:{s:2:\"id\";s:5:\"11536\";s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392927\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"53\";s:16:\"popularity_index\";s:3:\"571\";s:11:\"trend_index\";s:3:\"580\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:509;a:14:{s:2:\"id\";s:5:\"11545\";s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392943\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/gym-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"53\";s:16:\"popularity_index\";s:3:\"325\";s:11:\"trend_index\";s:3:\"393\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:510;a:14:{s:2:\"id\";s:5:\"12116\";s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";s:10:\"1572847105\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"53\";s:16:\"popularity_index\";s:3:\"484\";s:11:\"trend_index\";s:3:\"513\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:511;a:14:{s:2:\"id\";s:5:\"11563\";s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392923\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"54\";s:16:\"popularity_index\";s:3:\"531\";s:11:\"trend_index\";s:3:\"438\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:512;a:14:{s:2:\"id\";s:5:\"11478\";s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392939\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:99:\"https://library.elementor.com/gym-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"54\";s:16:\"popularity_index\";s:3:\"455\";s:11:\"trend_index\";s:3:\"457\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:513;a:14:{s:2:\"id\";s:5:\"10005\";s:5:\"title\";s:38:\"Fly In | Promotion | Spa | Body Lotion\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/Flyin_lotion_small.png\";s:12:\"tmpl_created\";s:10:\"1547844909\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"54\";s:16:\"popularity_index\";s:3:\"646\";s:11:\"trend_index\";s:3:\"667\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:514;a:14:{s:2:\"id\";s:5:\"10424\";s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/flower_small.png\";s:12:\"tmpl_created\";s:10:\"1547961866\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"55\";s:16:\"popularity_index\";s:3:\"581\";s:11:\"trend_index\";s:3:\"616\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:515;a:14:{s:2:\"id\";s:5:\"11528\";s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392917\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"55\";s:16:\"popularity_index\";s:3:\"494\";s:11:\"trend_index\";s:3:\"498\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:516;a:14:{s:2:\"id\";s:4:\"9975\";s:5:\"title\";s:24:\"Fly In | Promotion | App\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_webinar_app_small.png\";s:12:\"tmpl_created\";s:10:\"1547842284\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"55\";s:16:\"popularity_index\";s:3:\"668\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:517;a:14:{s:2:\"id\";s:3:\"487\";s:5:\"title\";s:29:\"Landing Page &#8211; Vacation\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0021.png\";s:12:\"tmpl_created\";s:10:\"1477388357\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-vacation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"56\";s:16:\"popularity_index\";s:2:\"24\";s:11:\"trend_index\";s:2:\"77\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:518;a:14:{s:2:\"id\";s:5:\"10067\";s:5:\"title\";s:31:\"Fly In | Announcement | Cookies\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/fly-in_cookie_yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1547848075\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/fly-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"56\";s:16:\"popularity_index\";s:3:\"523\";s:11:\"trend_index\";s:3:\"574\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:519;a:14:{s:2:\"id\";s:3:\"855\";s:5:\"title\";s:37:\"Landing Page &#8211; Personal Trainer\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png\";s:12:\"tmpl_created\";s:10:\"1494352061\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/landing-page-personal-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"57\";s:16:\"popularity_index\";s:3:\"250\";s:11:\"trend_index\";s:3:\"338\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:520;a:14:{s:2:\"id\";s:3:\"955\";s:5:\"title\";s:31:\"Landing Page &#8211; Law Office\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png\";s:12:\"tmpl_created\";s:10:\"1494352069\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-law-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:31:\"[\"Landing Page\",\"Law\",\"Office\"]\";s:10:\"menu_order\";s:2:\"58\";s:16:\"popularity_index\";s:3:\"167\";s:11:\"trend_index\";s:3:\"308\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:521;a:14:{s:2:\"id\";s:5:\"10329\";s:5:\"title\";s:25:\"Fly In | Sale | Promotion\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/organic_small.png\";s:12:\"tmpl_created\";s:10:\"1547893478\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"59\";s:16:\"popularity_index\";s:3:\"673\";s:11:\"trend_index\";s:3:\"666\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:522;a:14:{s:2:\"id\";s:4:\"9373\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 5\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/11/conference-250.png\";s:12:\"tmpl_created\";s:10:\"1542811219\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"59\";s:16:\"popularity_index\";s:3:\"240\";s:11:\"trend_index\";s:3:\"304\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:523;a:14:{s:2:\"id\";s:3:\"974\";s:5:\"title\";s:28:\"Landing Page &#8211; Stylist\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png\";s:12:\"tmpl_created\";s:10:\"1494352071\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-stylist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"cosmetics\",\"fashion\",\"girly\",\"hairdresser\",\"lifestyle\",\"makeup\",\"manicure\",\"pedicure\",\"products\",\"salon\",\"Shop\",\"skincare\",\"stylist\",\"wellness\"]\";s:10:\"menu_order\";s:2:\"60\";s:16:\"popularity_index\";s:3:\"288\";s:11:\"trend_index\";s:3:\"407\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:524;a:14:{s:2:\"id\";s:4:\"9650\";s:5:\"title\";s:36:\"Fly In | Register | Subscribe | Sale\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/Fly-In_Register_small_01a.png\";s:12:\"tmpl_created\";s:10:\"1547007598\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/fly-in-register_big-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"60\";s:16:\"popularity_index\";s:3:\"661\";s:11:\"trend_index\";s:3:\"661\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:525;a:14:{s:2:\"id\";s:5:\"11948\";s:5:\"title\";s:18:\"Maintenance Mode 3\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm3.png\";s:12:\"tmpl_created\";s:10:\"1572153978\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";s:2:\"61\";s:16:\"popularity_index\";s:3:\"257\";s:11:\"trend_index\";s:3:\"115\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:526;a:14:{s:2:\"id\";s:3:\"754\";s:5:\"title\";s:25:\"Services &#8211; Interior\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-Services.png\";s:12:\"tmpl_created\";s:10:\"1485269691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/services-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"62\";s:16:\"popularity_index\";s:3:\"225\";s:11:\"trend_index\";s:3:\"258\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:527;a:14:{s:2:\"id\";s:3:\"752\";s:5:\"title\";s:24:\"Contact &#8211; Interior\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-contact.png\";s:12:\"tmpl_created\";s:10:\"1485269737\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/contact-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"63\";s:16:\"popularity_index\";s:3:\"292\";s:11:\"trend_index\";s:3:\"390\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:528;a:14:{s:2:\"id\";s:5:\"10200\";s:5:\"title\";s:33:\"Full Screen | Content Lock | Wine\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/lock_wine_small.png\";s:12:\"tmpl_created\";s:10:\"1548055635\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/full-screen-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"63\";s:16:\"popularity_index\";s:3:\"626\";s:11:\"trend_index\";s:3:\"674\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:529;a:14:{s:2:\"id\";s:3:\"753\";s:5:\"title\";s:22:\"About &#8211; Interior\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-About.png\";s:12:\"tmpl_created\";s:10:\"1485269710\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"64\";s:16:\"popularity_index\";s:3:\"278\";s:11:\"trend_index\";s:3:\"426\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:530;a:14:{s:2:\"id\";s:5:\"10287\";s:5:\"title\";s:34:\"Full Screen | Register | Subscribe\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_pink_small.png\";s:12:\"tmpl_created\";s:10:\"1547994301\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"64\";s:16:\"popularity_index\";s:3:\"536\";s:11:\"trend_index\";s:3:\"501\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:531;a:14:{s:2:\"id\";s:3:\"751\";s:5:\"title\";s:25:\"Homepage &#8211; Interior\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-home.png\";s:12:\"tmpl_created\";s:10:\"1485269743\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"65\";s:16:\"popularity_index\";s:3:\"232\";s:11:\"trend_index\";s:3:\"302\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:532;a:14:{s:2:\"id\";s:4:\"2402\";s:5:\"title\";s:32:\"Homepage &#8211; Interior Design\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2017/09/Interior.png\";s:12:\"tmpl_created\";s:10:\"1506441447\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:193:\"[\"Architecture\",\"building\",\"business\",\"Creative\",\"exterior design\",\"furniture design\",\"Gallery\",\"garden design\",\"house\",\"interior design\",\"landscape design\",\"multipurpose\",\"portfolio\",\"studio\"]\";s:10:\"menu_order\";s:2:\"66\";s:16:\"popularity_index\";s:2:\"87\";s:11:\"trend_index\";s:3:\"234\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:533;a:14:{s:2:\"id\";s:4:\"9889\";s:5:\"title\";s:28:\"Full Screen | Login | Cactus\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/cac_small.png\";s:12:\"tmpl_created\";s:10:\"1547838722\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/full-screen-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"66\";s:16:\"popularity_index\";s:3:\"645\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:534;a:14:{s:2:\"id\";s:4:\"3626\";s:5:\"title\";s:30:\"Snowboard Site &#8211; Contact\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/3.png\";s:12:\"tmpl_created\";s:10:\"1513513193\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/snowboard-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"67\";s:16:\"popularity_index\";s:3:\"243\";s:11:\"trend_index\";s:3:\"358\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:535;a:14:{s:2:\"id\";s:5:\"10077\";s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_register_blue_small.png\";s:12:\"tmpl_created\";s:10:\"1547848197\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/fly-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"67\";s:16:\"popularity_index\";s:3:\"480\";s:11:\"trend_index\";s:3:\"471\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:536;a:14:{s:2:\"id\";s:5:\"11966\";s:5:\"title\";s:18:\"Maintenance mode 4\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm4.png\";s:12:\"tmpl_created\";s:10:\"1572154274\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";s:2:\"68\";s:16:\"popularity_index\";s:3:\"528\";s:11:\"trend_index\";s:3:\"398\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:537;a:14:{s:2:\"id\";s:5:\"10362\";s:5:\"title\";s:32:\"Full Screen | Login | Restaurant\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/vip_small.png\";s:12:\"tmpl_created\";s:10:\"1548056253\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"69\";s:16:\"popularity_index\";s:3:\"566\";s:11:\"trend_index\";s:3:\"618\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:538;a:14:{s:2:\"id\";s:4:\"3632\";s:5:\"title\";s:31:\"Snowboard Site &#8211; Services\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/2.png\";s:12:\"tmpl_created\";s:10:\"1513513171\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"69\";s:16:\"popularity_index\";s:3:\"189\";s:11:\"trend_index\";s:3:\"299\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:539;a:14:{s:2:\"id\";s:4:\"3619\";s:5:\"title\";s:31:\"Snowboard Site &#8211; Homepage\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2017/12/home.png\";s:12:\"tmpl_created\";s:10:\"1513513137\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"70\";s:16:\"popularity_index\";s:3:\"210\";s:11:\"trend_index\";s:3:\"343\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:540;a:14:{s:2:\"id\";s:5:\"10454\";s:5:\"title\";s:29:\"Full Screen | Promotion | App\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/appy_small.png\";s:12:\"tmpl_created\";s:10:\"1548056896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"71\";s:16:\"popularity_index\";s:3:\"663\";s:11:\"trend_index\";s:3:\"672\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:541;a:14:{s:2:\"id\";s:4:\"9425\";s:5:\"title\";s:38:\"Black Friday &#8211;  80&#8217;s style\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/11/unnamed-file.png\";s:12:\"tmpl_created\";s:10:\"1542901234\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/black-friday-80s-style/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"71\";s:16:\"popularity_index\";s:3:\"314\";s:11:\"trend_index\";s:3:\"403\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:542;a:14:{s:2:\"id\";s:5:\"11973\";s:5:\"title\";s:18:\"Maintenance mode 5\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm5.png\";s:12:\"tmpl_created\";s:10:\"1572154523\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";s:2:\"72\";s:16:\"popularity_index\";s:3:\"493\";s:11:\"trend_index\";s:3:\"459\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:543;a:14:{s:2:\"id\";s:4:\"9803\";s:5:\"title\";s:41:\"Full Screen | Register | Contact | Meetup\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2019/01/designme_full_small.png\";s:12:\"tmpl_created\";s:10:\"1547831298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-register-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"72\";s:16:\"popularity_index\";s:3:\"609\";s:11:\"trend_index\";s:3:\"632\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:544;a:14:{s:2:\"id\";s:5:\"10611\";s:5:\"title\";s:18:\"Full Screen | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fla_small.png\";s:12:\"tmpl_created\";s:10:\"1547968868\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/full-screen-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"73\";s:16:\"popularity_index\";s:3:\"670\";s:11:\"trend_index\";s:3:\"673\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:545;a:14:{s:2:\"id\";s:5:\"10508\";s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/hand_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547964711\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-welcome-mat-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"75\";s:16:\"popularity_index\";s:3:\"618\";s:11:\"trend_index\";s:3:\"655\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:546;a:14:{s:2:\"id\";s:4:\"9934\";s:5:\"title\";s:38:\"Full Screen | Welcome Mat | Teddy Bear\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_mat_teddy_small.png\";s:12:\"tmpl_created\";s:10:\"1547841787\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-welcome-mat/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"76\";s:16:\"popularity_index\";s:3:\"588\";s:11:\"trend_index\";s:3:\"646\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:547;a:14:{s:2:\"id\";s:4:\"9709\";s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2019/01/Full-Screen_Welcome-Mat_01_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547023834\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-welcome-mat-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"78\";s:16:\"popularity_index\";s:3:\"627\";s:11:\"trend_index\";s:3:\"654\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:548;a:14:{s:2:\"id\";s:4:\"9671\";s:5:\"title\";s:34:\"Hello Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Announcement_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547010259\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"79\";s:16:\"popularity_index\";s:3:\"569\";s:11:\"trend_index\";s:3:\"549\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:549;a:14:{s:2:\"id\";s:5:\"10234\";s:5:\"title\";s:38:\"Hello Bar | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small.png\";s:12:\"tmpl_created\";s:10:\"1548055049\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/hello-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"80\";s:16:\"popularity_index\";s:3:\"647\";s:11:\"trend_index\";s:3:\"634\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:550;a:14:{s:2:\"id\";s:5:\"11981\";s:5:\"title\";s:18:\"Maintenance mode 6\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm6.png\";s:12:\"tmpl_created\";s:10:\"1572155125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";s:2:\"83\";s:16:\"popularity_index\";s:3:\"483\";s:11:\"trend_index\";s:3:\"321\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:551;a:14:{s:2:\"id\";s:4:\"9869\";s:5:\"title\";s:28:\"Hello Bar | Promotion | Sale\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/ru_small.png\";s:12:\"tmpl_created\";s:10:\"1547837269\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/hello-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"83\";s:16:\"popularity_index\";s:3:\"659\";s:11:\"trend_index\";s:3:\"657\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:552;a:14:{s:2:\"id\";s:5:\"10539\";s:5:\"title\";s:19:\"Hello Bar | Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_pink_small.png\";s:12:\"tmpl_created\";s:10:\"1548056994\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"84\";s:16:\"popularity_index\";s:3:\"622\";s:11:\"trend_index\";s:3:\"577\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:553;a:14:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:20:\"Homepage &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0004.png\";s:12:\"tmpl_created\";s:10:\"1470829868\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/homepage-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"App\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"87\";s:16:\"popularity_index\";s:1:\"2\";s:11:\"trend_index\";s:2:\"17\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:554;a:14:{s:2:\"id\";s:3:\"777\";s:5:\"title\";s:28:\"Homepage &#8211; Coffee Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/01/rest-home.jpg\";s:12:\"tmpl_created\";s:10:\"1485273092\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/homepage-coffee-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:41:\"[\"Coffee\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";s:2:\"88\";s:16:\"popularity_index\";s:3:\"137\";s:11:\"trend_index\";s:3:\"301\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:555;a:14:{s:2:\"id\";s:5:\"10147\";s:5:\"title\";s:34:\"Hello Bar | Sale | Promotion | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/donut_small.png\";s:12:\"tmpl_created\";s:10:\"1548055522\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/hello-bar-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"89\";s:16:\"popularity_index\";s:3:\"662\";s:11:\"trend_index\";s:3:\"675\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:556;a:14:{s:2:\"id\";s:4:\"2404\";s:5:\"title\";s:24:\"Homepage &#8211; Product\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/09/product.png\";s:12:\"tmpl_created\";s:10:\"1506441452\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:103:\"[\"business\",\"colorful\",\"ecommerce\",\"flat\",\"mobile\",\"modern\",\"responsive\",\"retina\",\"Shop\",\"woocommerce\"]\";s:10:\"menu_order\";s:2:\"89\";s:16:\"popularity_index\";s:3:\"133\";s:11:\"trend_index\";s:3:\"206\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:557;a:14:{s:2:\"id\";s:3:\"492\";s:5:\"title\";s:25:\"Homepage &#8211; Law firm\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0024.png\";s:12:\"tmpl_created\";s:10:\"1477388365\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-law-firm/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Firm\",\"Homepage\",\"Law\"]\";s:10:\"menu_order\";s:2:\"90\";s:16:\"popularity_index\";s:2:\"12\";s:11:\"trend_index\";s:2:\"88\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:558;a:14:{s:2:\"id\";s:4:\"9923\";s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_ann_italian_small.png\";s:12:\"tmpl_created\";s:10:\"1547841537\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/slide-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"90\";s:16:\"popularity_index\";s:3:\"599\";s:11:\"trend_index\";s:3:\"631\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:559;a:14:{s:2:\"id\";s:5:\"10117\";s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/white_small.png\";s:12:\"tmpl_created\";s:10:\"1548066998\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"91\";s:16:\"popularity_index\";s:3:\"629\";s:11:\"trend_index\";s:3:\"660\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:560;a:14:{s:2:\"id\";s:4:\"3451\";s:5:\"title\";s:39:\"Homepage &#8211; Goodness meal services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/11/goodness-featured-image.png\";s:12:\"tmpl_created\";s:10:\"1512054116\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/homepage-goodness-meal-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"91\";s:16:\"popularity_index\";s:3:\"213\";s:11:\"trend_index\";s:3:\"342\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:561;a:14:{s:2:\"id\";s:4:\"2152\";s:5:\"title\";s:26:\"Homepage &#8211; Cake Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-home.png\";s:12:\"tmpl_created\";s:10:\"1499774132\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/homepage-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Cake\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";s:2:\"92\";s:16:\"popularity_index\";s:3:\"317\";s:11:\"trend_index\";s:3:\"442\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:562;a:14:{s:2:\"id\";s:4:\"9826\";s:5:\"title\";s:33:\"Slide In | Announcement | webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-2.png\";s:12:\"tmpl_created\";s:10:\"1547835513\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-announcement-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"92\";s:16:\"popularity_index\";s:3:\"638\";s:11:\"trend_index\";s:3:\"643\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:563;a:14:{s:2:\"id\";s:4:\"1068\";s:5:\"title\";s:27:\"Homepage &#8211; Copywriter\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/copywriter.png\";s:12:\"tmpl_created\";s:10:\"1488805928\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-copywriter/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Copywriter\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"93\";s:16:\"popularity_index\";s:3:\"196\";s:11:\"trend_index\";s:3:\"266\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:564;a:14:{s:2:\"id\";s:5:\"10478\";s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_wow_small.png\";s:12:\"tmpl_created\";s:10:\"1548056829\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"93\";s:16:\"popularity_index\";s:3:\"522\";s:11:\"trend_index\";s:3:\"545\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:565;a:14:{s:2:\"id\";s:4:\"2813\";s:5:\"title\";s:32:\"Homepage &#8211; Creative Agency\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/11/Creative-Agency-–-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1509615049\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-creative-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"94\";s:16:\"popularity_index\";s:3:\"102\";s:11:\"trend_index\";s:3:\"193\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:566;a:14:{s:2:\"id\";s:3:\"728\";s:5:\"title\";s:33:\"Homepage &#8211; Delivery Company\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/01/delivery-company-home-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485269993\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/homepage-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Delivery\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"95\";s:16:\"popularity_index\";s:3:\"258\";s:11:\"trend_index\";s:3:\"430\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:567;a:14:{s:2:\"id\";s:5:\"10685\";s:5:\"title\";s:32:\"Hello Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/env_small.png\";s:12:\"tmpl_created\";s:10:\"1547974729\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"96\";s:16:\"popularity_index\";s:3:\"608\";s:11:\"trend_index\";s:3:\"592\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:568;a:14:{s:2:\"id\";s:4:\"2403\";s:5:\"title\";s:29:\"Homepage &#8211; Luxury Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/09/Hotel.png\";s:12:\"tmpl_created\";s:10:\"1506441428\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/homepage-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"96\";s:16:\"popularity_index\";s:3:\"247\";s:11:\"trend_index\";s:3:\"444\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:569;a:14:{s:2:\"id\";s:4:\"1903\";s:5:\"title\";s:20:\"One Page &#8211; Spa\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/06/spa.png\";s:12:\"tmpl_created\";s:10:\"1496822325\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/one-page-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:132:\"[\"beauty\",\"care\",\"girly\",\"hair\",\"Health\",\"hospitality\",\"massage\",\"medical\",\"parlor\",\"physiotherapy\",\"salon\",\"spa\",\"wellness\",\"yoga\"]\";s:10:\"menu_order\";s:2:\"97\";s:16:\"popularity_index\";s:3:\"171\";s:11:\"trend_index\";s:3:\"334\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:570;a:14:{s:2:\"id\";s:4:\"2123\";s:5:\"title\";s:33:\"One Page &#8211; Architect Office\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/06/architect.png\";s:12:\"tmpl_created\";s:10:\"1499772989\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/one-page-architect-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"98\";s:16:\"popularity_index\";s:2:\"10\";s:11:\"trend_index\";s:2:\"26\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:571;a:14:{s:2:\"id\";s:4:\"9985\";s:5:\"title\";s:20:\"Slide In | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_promotion_av_small.png\";s:12:\"tmpl_created\";s:10:\"1547844661\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"98\";s:16:\"popularity_index\";s:3:\"648\";s:11:\"trend_index\";s:3:\"651\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:572;a:14:{s:2:\"id\";s:4:\"1888\";s:5:\"title\";s:32:\"One Page &#8211; Creative Meetup\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2017/06/creative-meetup.png\";s:12:\"tmpl_created\";s:10:\"1496822319\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/one-page-creative-meetup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"99\";s:16:\"popularity_index\";s:3:\"253\";s:11:\"trend_index\";s:3:\"526\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:573;a:14:{s:2:\"id\";s:4:\"1891\";s:5:\"title\";s:35:\"One Page &#8211; Textile Convention\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/06/textile-meetup.png\";s:12:\"tmpl_created\";s:10:\"1496822323\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/one-page-textile-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"100\";s:16:\"popularity_index\";s:3:\"390\";s:11:\"trend_index\";s:3:\"600\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:574;a:14:{s:2:\"id\";s:4:\"1880\";s:5:\"title\";s:24:\"One Page &#8211; Wedding\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/06/wedding.png\";s:12:\"tmpl_created\";s:10:\"1496822317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/one-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"bride\",\"ceremony\",\"cute\",\"event\",\"fancy\",\"girly\",\"groom\",\"guestbook\",\"marriage\"]\";s:10:\"menu_order\";s:3:\"101\";s:16:\"popularity_index\";s:3:\"419\";s:11:\"trend_index\";s:3:\"630\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:575;a:14:{s:2:\"id\";s:4:\"1885\";s:5:\"title\";s:29:\"One Page &#8211; Yacht Rental\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/06/yacht-home.png\";s:12:\"tmpl_created\";s:10:\"1496822321\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/one-page-yacht-rental/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"102\";s:16:\"popularity_index\";s:3:\"192\";s:11:\"trend_index\";s:3:\"412\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:576;a:14:{s:2:\"id\";s:4:\"2723\";s:5:\"title\";s:34:\"Portfolio &#8211; Graphic Designer\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/11/Graphic-Designer-–-Portfolio.png\";s:12:\"tmpl_created\";s:10:\"1509633883\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-graphic-designer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"103\";s:16:\"popularity_index\";s:3:\"172\";s:11:\"trend_index\";s:3:\"379\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:577;a:14:{s:2:\"id\";s:4:\"2145\";s:5:\"title\";s:30:\"About &#8211; Delivery Company\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-about.png\";s:12:\"tmpl_created\";s:10:\"1499774125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/about-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:10:\"[\"moving\"]\";s:10:\"menu_order\";s:3:\"104\";s:16:\"popularity_index\";s:3:\"327\";s:11:\"trend_index\";s:3:\"598\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:578;a:14:{s:2:\"id\";s:4:\"2155\";s:5:\"title\";s:23:\"About &#8211; Cake Shop\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-about.png\";s:12:\"tmpl_created\";s:10:\"1499774130\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/about-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Food\"]\";s:10:\"menu_order\";s:3:\"105\";s:16:\"popularity_index\";s:3:\"376\";s:11:\"trend_index\";s:3:\"572\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:579;a:14:{s:2:\"id\";s:4:\"9559\";s:5:\"title\";s:16:\"Slide In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_login_01_small.png\";s:12:\"tmpl_created\";s:10:\"1546946547\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/slide-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"105\";s:16:\"popularity_index\";s:3:\"519\";s:11:\"trend_index\";s:3:\"619\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:580;a:14:{s:2:\"id\";s:4:\"1085\";s:5:\"title\";s:21:\"About &#8211; Startup\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/03/Startup.png\";s:12:\"tmpl_created\";s:10:\"1488810874\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/about-startup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"About\",\"Startup\"]\";s:10:\"menu_order\";s:3:\"106\";s:16:\"popularity_index\";s:1:\"7\";s:11:\"trend_index\";s:2:\"14\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:581;a:14:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:22:\"About &#8211; Personal\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0010.png\";s:12:\"tmpl_created\";s:10:\"1470820447\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-personal/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"About\",\"Personal\"]\";s:10:\"menu_order\";s:3:\"107\";s:16:\"popularity_index\";s:2:\"22\";s:11:\"trend_index\";s:2:\"76\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:582;a:14:{s:2:\"id\";s:4:\"9752\";s:5:\"title\";s:27:\"Slide In | Sale | Promotion\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rush_small.png\";s:12:\"tmpl_created\";s:10:\"1547823982\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"107\";s:16:\"popularity_index\";s:3:\"637\";s:11:\"trend_index\";s:3:\"638\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:583;a:14:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:16:\"About &#8211; CV\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0018.png\";s:12:\"tmpl_created\";s:10:\"1470829785\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:98:\"https://library.elementor.com/about-cv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"creative portfolio\",\"Personal\",\"portfolio\",\"professional\",\"resume\",\"vcard\"]\";s:10:\"menu_order\";s:3:\"108\";s:16:\"popularity_index\";s:2:\"37\";s:11:\"trend_index\";s:3:\"131\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:584;a:14:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:25:\"About &#8211; Art Gallery\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0009.png\";s:12:\"tmpl_created\";s:10:\"1470820463\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/about-art-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"About\",\"Art\",\"Gallery\"]\";s:10:\"menu_order\";s:3:\"109\";s:16:\"popularity_index\";s:2:\"15\";s:11:\"trend_index\";s:2:\"52\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:585;a:14:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:26:\"About &#8211; Architecture\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0008.png\";s:12:\"tmpl_created\";s:10:\"1470829766\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/about-architecture/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"About\",\"Architecture\"]\";s:10:\"menu_order\";s:3:\"110\";s:16:\"popularity_index\";s:2:\"18\";s:11:\"trend_index\";s:2:\"66\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:586;a:14:{s:2:\"id\";s:4:\"2802\";s:5:\"title\";s:38:\"Portfolio &#8211; Fashion Photographer\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2017/11/Fashion-photographer-–-Portfolio.png\";s:12:\"tmpl_created\";s:10:\"1509615440\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/portfolio-fashion-photographer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"111\";s:16:\"popularity_index\";s:3:\"200\";s:11:\"trend_index\";s:3:\"437\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:587;a:14:{s:2:\"id\";s:5:\"10169\";s:5:\"title\";s:37:\"Slide In | Register | Subscribe | App\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/slideinapp_small.png\";s:12:\"tmpl_created\";s:10:\"1547852334\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"112\";s:16:\"popularity_index\";s:3:\"401\";s:11:\"trend_index\";s:3:\"636\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:588;a:14:{s:2:\"id\";s:4:\"2828\";s:5:\"title\";s:35:\"Landing Page &#8211; Law Convention\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-–-Landing-Page.png\";s:12:\"tmpl_created\";s:10:\"1509631636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/landing-page-law-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"Convention\",\"Landing Page\",\"Law\"]\";s:10:\"menu_order\";s:3:\"112\";s:16:\"popularity_index\";s:3:\"348\";s:11:\"trend_index\";s:3:\"541\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:589;a:14:{s:2:\"id\";s:4:\"1461\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png\";s:12:\"tmpl_created\";s:10:\"1494352121\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:127:\"[\"App\",\"author\",\"book\",\"brochure\",\"download\",\"e-book\",\"ebook\",\"marketing\",\"product\",\"publisher\",\"sell online\",\"seo\",\"showcase\"]\";s:10:\"menu_order\";s:3:\"113\";s:16:\"popularity_index\";s:3:\"338\";s:11:\"trend_index\";s:3:\"388\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:590;a:14:{s:2:\"id\";s:4:\"1460\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png\";s:12:\"tmpl_created\";s:10:\"1494352124\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"114\";s:16:\"popularity_index\";s:3:\"352\";s:11:\"trend_index\";s:3:\"524\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:591;a:14:{s:2:\"id\";s:4:\"1459\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png\";s:12:\"tmpl_created\";s:10:\"1494352125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"115\";s:16:\"popularity_index\";s:3:\"223\";s:11:\"trend_index\";s:3:\"306\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:592;a:14:{s:2:\"id\";s:4:\"9680\";s:5:\"title\";s:23:\"Slide In | Content Lock\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Content-lock_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547010967\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-content-lock-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"115\";s:16:\"popularity_index\";s:3:\"634\";s:11:\"trend_index\";s:3:\"623\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:593;a:14:{s:2:\"id\";s:4:\"1052\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 1\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/03/app.png\";s:12:\"tmpl_created\";s:10:\"1488810873\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-mobile-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"116\";s:16:\"popularity_index\";s:2:\"28\";s:11:\"trend_index\";s:2:\"94\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:594;a:14:{s:2:\"id\";s:4:\"1505\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png\";s:12:\"tmpl_created\";s:10:\"1494352110\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"117\";s:16:\"popularity_index\";s:3:\"371\";s:11:\"trend_index\";s:3:\"483\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:595;a:14:{s:2:\"id\";s:4:\"9783\";s:5:\"title\";s:31:\"Slide In | Register | Subscribe\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1547831059\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"117\";s:16:\"popularity_index\";s:3:\"478\";s:11:\"trend_index\";s:3:\"516\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:596;a:14:{s:2:\"id\";s:3:\"726\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485270062\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"118\";s:16:\"popularity_index\";s:3:\"393\";s:11:\"trend_index\";s:3:\"608\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:597;a:14:{s:2:\"id\";s:4:\"1613\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 2\";s:9:\"thumbnail\";s:109:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-International-Womens-Day-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352129\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"119\";s:16:\"popularity_index\";s:3:\"407\";s:11:\"trend_index\";s:3:\"473\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:598;a:14:{s:2:\"id\";s:4:\"1612\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 3\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352127\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"120\";s:16:\"popularity_index\";s:3:\"427\";s:11:\"trend_index\";s:3:\"587\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:599;a:14:{s:2:\"id\";s:4:\"1614\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 4\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352131\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"121\";s:16:\"popularity_index\";s:3:\"359\";s:11:\"trend_index\";s:3:\"466\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:600;a:14:{s:2:\"id\";s:3:\"906\";s:5:\"title\";s:29:\"Landing Page &#8211;  Coacher\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png\";s:12:\"tmpl_created\";s:10:\"1494352066\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-coacher/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"122\";s:16:\"popularity_index\";s:3:\"255\";s:11:\"trend_index\";s:3:\"382\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:601;a:14:{s:2:\"id\";s:3:\"879\";s:5:\"title\";s:41:\"Landing Page &#8211; Financial Consultant\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png\";s:12:\"tmpl_created\";s:10:\"1494352064\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/landing-page-financial-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"123\";s:16:\"popularity_index\";s:3:\"266\";s:11:\"trend_index\";s:3:\"402\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:602;a:14:{s:2:\"id\";s:3:\"926\";s:5:\"title\";s:33:\"Landing Page &#8211; Private Chef\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png\";s:12:\"tmpl_created\";s:10:\"1494352068\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-private-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"124\";s:16:\"popularity_index\";s:3:\"374\";s:11:\"trend_index\";s:3:\"571\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:603;a:14:{s:2:\"id\";s:4:\"1032\";s:5:\"title\";s:27:\"Landing Page &#8211; Agency\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png\";s:12:\"tmpl_created\";s:10:\"1488810866\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/landing-page-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"125\";s:16:\"popularity_index\";s:3:\"370\";s:11:\"trend_index\";s:3:\"476\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:604;a:14:{s:2:\"id\";s:3:\"730\";s:5:\"title\";s:24:\"Landing Page &#8211; App\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485273430\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/landing-page-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"126\";s:16:\"popularity_index\";s:3:\"343\";s:11:\"trend_index\";s:3:\"469\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:605;a:14:{s:2:\"id\";s:3:\"643\";s:5:\"title\";s:29:\"Landing Page &#8211; Festival\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg\";s:12:\"tmpl_created\";s:10:\"1481549290\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"127\";s:16:\"popularity_index\";s:3:\"398\";s:11:\"trend_index\";s:3:\"537\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:606;a:14:{s:2:\"id\";s:3:\"542\";s:5:\"title\";s:28:\"Landing Page &#8211; Wedding\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0025.png\";s:12:\"tmpl_created\";s:10:\"1477388484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"128\";s:16:\"popularity_index\";s:2:\"79\";s:11:\"trend_index\";s:3:\"264\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:607;a:14:{s:2:\"id\";s:4:\"1187\";s:5:\"title\";s:32:\"Landing Page &#8211; Photography\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png\";s:12:\"tmpl_created\";s:10:\"1490707385\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"129\";s:16:\"popularity_index\";s:2:\"38\";s:11:\"trend_index\";s:3:\"135\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:608;a:14:{s:2:\"id\";s:3:\"641\";s:5:\"title\";s:28:\"Landing Page &#8211; Fashion\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1481549264\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-fashion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"130\";s:16:\"popularity_index\";s:3:\"303\";s:11:\"trend_index\";s:3:\"502\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:609;a:14:{s:2:\"id\";s:3:\"189\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0005.png\";s:12:\"tmpl_created\";s:10:\"1470820715\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-tourism/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"131\";s:16:\"popularity_index\";s:2:\"14\";s:11:\"trend_index\";s:2:\"42\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:610;a:14:{s:2:\"id\";s:4:\"1547\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png\";s:12:\"tmpl_created\";s:10:\"1494352115\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"132\";s:16:\"popularity_index\";s:3:\"316\";s:11:\"trend_index\";s:3:\"359\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:611;a:14:{s:2:\"id\";s:4:\"1546\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png\";s:12:\"tmpl_created\";s:10:\"1494352116\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"133\";s:16:\"popularity_index\";s:3:\"425\";s:11:\"trend_index\";s:3:\"550\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:612;a:14:{s:2:\"id\";s:4:\"1545\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png\";s:12:\"tmpl_created\";s:10:\"1494352118\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"134\";s:16:\"popularity_index\";s:3:\"354\";s:11:\"trend_index\";s:3:\"552\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:613;a:14:{s:2:\"id\";s:4:\"2714\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 5\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-–-Landing-Page.png\";s:12:\"tmpl_created\";s:10:\"1509631782\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"135\";s:16:\"popularity_index\";s:3:\"349\";s:11:\"trend_index\";s:3:\"548\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:614;a:14:{s:2:\"id\";s:3:\"195\";s:5:\"title\";s:28:\"Landing Page &#8211; Product\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0006.png\";s:12:\"tmpl_created\";s:10:\"1470820765\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"136\";s:16:\"popularity_index\";s:2:\"50\";s:11:\"trend_index\";s:3:\"153\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:615;a:14:{s:2:\"id\";s:3:\"197\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0007.png\";s:12:\"tmpl_created\";s:10:\"1470825711\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"137\";s:16:\"popularity_index\";s:3:\"122\";s:11:\"trend_index\";s:3:\"344\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:616;a:14:{s:2:\"id\";s:4:\"1193\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 2\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";s:10:\"1490707422\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"138\";s:16:\"popularity_index\";s:2:\"60\";s:11:\"trend_index\";s:3:\"220\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:617;a:14:{s:2:\"id\";s:4:\"1415\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png\";s:12:\"tmpl_created\";s:10:\"1494352106\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"139\";s:16:\"popularity_index\";s:3:\"336\";s:11:\"trend_index\";s:3:\"423\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:618;a:14:{s:2:\"id\";s:4:\"1414\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 4\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png\";s:12:\"tmpl_created\";s:10:\"1494352107\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"140\";s:16:\"popularity_index\";s:3:\"451\";s:11:\"trend_index\";s:3:\"620\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:619;a:14:{s:2:\"id\";s:4:\"1413\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 5\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png\";s:12:\"tmpl_created\";s:10:\"1494352109\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:134:\"[\"Agent\",\"business\",\"clean\",\"corporate\",\"flat\",\"google maps\",\"homes\",\"listing\",\"modern\",\"real estate\",\"realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";s:3:\"141\";s:16:\"popularity_index\";s:3:\"399\";s:11:\"trend_index\";s:3:\"579\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:620;a:14:{s:2:\"id\";s:4:\"1573\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png\";s:12:\"tmpl_created\";s:10:\"1494352133\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"142\";s:16:\"popularity_index\";s:3:\"473\";s:11:\"trend_index\";s:3:\"627\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:621;a:14:{s:2:\"id\";s:4:\"1572\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png\";s:12:\"tmpl_created\";s:10:\"1494352134\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"143\";s:16:\"popularity_index\";s:3:\"511\";s:11:\"trend_index\";s:3:\"506\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:622;a:14:{s:2:\"id\";s:4:\"1570\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png\";s:12:\"tmpl_created\";s:10:\"1494352136\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"144\";s:16:\"popularity_index\";s:3:\"559\";s:11:\"trend_index\";s:3:\"510\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:623;a:14:{s:2:\"id\";s:4:\"1571\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 4\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png\";s:12:\"tmpl_created\";s:10:\"1494352138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"145\";s:16:\"popularity_index\";s:3:\"524\";s:11:\"trend_index\";s:3:\"601\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:624;a:14:{s:2:\"id\";s:3:\"192\";s:5:\"title\";s:28:\"Landing Page &#8211; Webinar\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0015.png\";s:12:\"tmpl_created\";s:10:\"1470820734\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"146\";s:16:\"popularity_index\";s:3:\"108\";s:11:\"trend_index\";s:3:\"249\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:625;a:14:{s:2:\"id\";s:4:\"2141\";s:5:\"title\";s:32:\"Contact &#8211; Delivery Company\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-contact.png\";s:12:\"tmpl_created\";s:10:\"1499774122\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/contact-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"147\";s:16:\"popularity_index\";s:3:\"308\";s:11:\"trend_index\";s:3:\"420\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:626;a:14:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Contact &#8211; Modern\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0013.png\";s:12:\"tmpl_created\";s:10:\"1470829828\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/contact-modern/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"148\";s:16:\"popularity_index\";s:2:\"41\";s:11:\"trend_index\";s:3:\"117\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:627;a:14:{s:2:\"id\";s:3:\"256\";s:5:\"title\";s:26:\"Contact &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0011.png\";s:12:\"tmpl_created\";s:10:\"1470829796\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/contact-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"149\";s:16:\"popularity_index\";s:3:\"118\";s:11:\"trend_index\";s:3:\"251\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:628;a:14:{s:2:\"id\";s:4:\"2150\";s:5:\"title\";s:25:\"Contact &#8211; Cake Shop\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-contact.png\";s:12:\"tmpl_created\";s:10:\"1499774127\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"150\";s:16:\"popularity_index\";s:2:\"61\";s:11:\"trend_index\";s:3:\"165\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:629;a:14:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:21:\"Contact &#8211; Hotel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0002.png\";s:12:\"tmpl_created\";s:10:\"1470820471\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/contact-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"151\";s:16:\"popularity_index\";s:3:\"117\";s:11:\"trend_index\";s:3:\"272\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:630;a:14:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:25:\"Contact &#8211; Corporate\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0012.png\";s:12:\"tmpl_created\";s:10:\"1470248619\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-corporate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"152\";s:16:\"popularity_index\";s:2:\"13\";s:11:\"trend_index\";s:2:\"21\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:631;a:14:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:23:\"Services &#8211; Moving\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0017.png\";s:12:\"tmpl_created\";s:10:\"1470829889\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/services-moving/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"153\";s:16:\"popularity_index\";s:2:\"23\";s:11:\"trend_index\";s:2:\"50\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:632;a:14:{s:2:\"id\";s:3:\"625\";s:5:\"title\";s:31:\"Services &#8211; Cake Shop Menu\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2016/12/cake-shop-menu.jpg\";s:12:\"tmpl_created\";s:10:\"1481549196\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/services-cake-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"154\";s:16:\"popularity_index\";s:3:\"518\";s:11:\"trend_index\";s:3:\"593\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:633;a:14:{s:2:\"id\";s:3:\"187\";s:5:\"title\";s:20:\"Services &#8211; Fun\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0001.png\";s:12:\"tmpl_created\";s:10:\"1470829892\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/services-fun/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"155\";s:16:\"popularity_index\";s:2:\"68\";s:11:\"trend_index\";s:3:\"178\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:634;a:14:{s:2:\"id\";s:3:\"238\";s:5:\"title\";s:27:\"Services &#8211; Consulting\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0014.png\";s:12:\"tmpl_created\";s:10:\"1470829865\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/services-consulting/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"156\";s:16:\"popularity_index\";s:2:\"21\";s:11:\"trend_index\";s:2:\"62\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:635;a:14:{s:2:\"id\";s:3:\"647\";s:5:\"title\";s:33:\"Services &#8211; Coffee Shop Menu\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2016/12/restaurant-menu.jpg\";s:12:\"tmpl_created\";s:10:\"1481549320\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-coffee-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"157\";s:16:\"popularity_index\";s:3:\"424\";s:11:\"trend_index\";s:3:\"595\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:636;a:14:{s:2:\"id\";s:4:\"2138\";s:5:\"title\";s:33:\"Services &#8211; Delivery Company\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-services.png\";s:12:\"tmpl_created\";s:10:\"1499774119\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"158\";s:16:\"popularity_index\";s:3:\"369\";s:11:\"trend_index\";s:3:\"482\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:637;a:14:{s:2:\"id\";s:3:\"823\";s:5:\"title\";s:19:\"Pricing &#8211; App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-app.jpg\";s:12:\"tmpl_created\";s:10:\"1485272966\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/pricing-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"159\";s:16:\"popularity_index\";s:3:\"345\";s:11:\"trend_index\";s:3:\"348\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:638;a:14:{s:2:\"id\";s:3:\"824\";s:5:\"title\";s:24:\"Pricing &#8211; Software\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-software.png\";s:12:\"tmpl_created\";s:10:\"1485272900\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/pricing-software-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"160\";s:16:\"popularity_index\";s:3:\"355\";s:11:\"trend_index\";s:3:\"414\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:639;a:14:{s:2:\"id\";s:3:\"825\";s:5:\"title\";s:24:\"Product &#8211; Speakers\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/01/product-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485272513\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/product-speakers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"161\";s:16:\"popularity_index\";s:3:\"373\";s:11:\"trend_index\";s:3:\"450\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:640;a:14:{s:2:\"id\";s:3:\"245\";s:5:\"title\";s:21:\"Product &#8211; Clean\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0020.png\";s:12:\"tmpl_created\";s:10:\"1470829876\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/product-clean/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"fast\",\"minimal\",\"minimalistic\",\"seo\",\"simple\"]\";s:10:\"menu_order\";s:3:\"162\";s:16:\"popularity_index\";s:2:\"75\";s:11:\"trend_index\";s:3:\"154\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:641;a:14:{s:2:\"id\";s:4:\"1075\";s:5:\"title\";s:19:\"Shop &#8211; Sweets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Sweets.png\";s:12:\"tmpl_created\";s:10:\"1488810871\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/shop-sweets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:154:\"[\"bakery\",\"beverage\",\"business\",\"cafe\",\"candy bar\",\"catering\",\"delivery service\",\"Food\",\"online shop\",\"pastry\",\"Restaurant\",\"store\",\"sweet shop\",\"sweets\"]\";s:10:\"menu_order\";s:3:\"163\";s:16:\"popularity_index\";s:2:\"53\";s:11:\"trend_index\";s:3:\"100\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:642;a:14:{s:2:\"id\";s:4:\"1051\";s:5:\"title\";s:24:\"Blog Post &#8211; Launch\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/post-cloud.png\";s:12:\"tmpl_created\";s:10:\"1488810869\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blog-post-launch/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:210:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"launch\",\"marketing campaign\",\"marketing landing page\",\"marketing template landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";s:3:\"164\";s:16:\"popularity_index\";s:2:\"17\";s:11:\"trend_index\";s:2:\"22\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:643;a:14:{s:2:\"id\";s:4:\"1245\";s:5:\"title\";s:13:\"Coming Soon 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-1.png\";s:12:\"tmpl_created\";s:10:\"1491207184\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"165\";s:16:\"popularity_index\";s:3:\"254\";s:11:\"trend_index\";s:3:\"291\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:644;a:14:{s:2:\"id\";s:4:\"1247\";s:5:\"title\";s:13:\"Coming Soon 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-2.png\";s:12:\"tmpl_created\";s:10:\"1491207138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"166\";s:16:\"popularity_index\";s:2:\"29\";s:11:\"trend_index\";s:2:\"51\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:645;a:14:{s:2:\"id\";s:4:\"1248\";s:5:\"title\";s:13:\"Coming Soon 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-3.png\";s:12:\"tmpl_created\";s:10:\"1491207050\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"167\";s:16:\"popularity_index\";s:3:\"379\";s:11:\"trend_index\";s:3:\"489\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:646;a:14:{s:2:\"id\";s:4:\"1249\";s:5:\"title\";s:13:\"Coming Soon 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-4.png\";s:12:\"tmpl_created\";s:10:\"1491207380\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"168\";s:16:\"popularity_index\";s:3:\"403\";s:11:\"trend_index\";s:3:\"509\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:647;a:14:{s:2:\"id\";s:4:\"1250\";s:5:\"title\";s:13:\"Coming Soon 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-5.png\";s:12:\"tmpl_created\";s:10:\"1491207450\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"169\";s:16:\"popularity_index\";s:2:\"65\";s:11:\"trend_index\";s:3:\"143\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:648;a:14:{s:2:\"id\";s:4:\"1260\";s:5:\"title\";s:18:\"Maintenance Mode 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-6.png\";s:12:\"tmpl_created\";s:10:\"1491207507\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";s:3:\"170\";s:16:\"popularity_index\";s:3:\"421\";s:11:\"trend_index\";s:3:\"594\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:649;a:14:{s:2:\"id\";s:4:\"1261\";s:5:\"title\";s:18:\"Maintenance Mode 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/04/Coming-Soon-7.png\";s:12:\"tmpl_created\";s:10:\"1491207584\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";s:3:\"171\";s:16:\"popularity_index\";s:2:\"70\";s:11:\"trend_index\";s:3:\"146\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:650;a:14:{s:2:\"id\";s:4:\"1272\";s:5:\"title\";s:13:\"Coming Soon 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-8.png\";s:12:\"tmpl_created\";s:10:\"1491207674\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"172\";s:16:\"popularity_index\";s:3:\"282\";s:11:\"trend_index\";s:3:\"324\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:651;a:14:{s:2:\"id\";s:4:\"1279\";s:5:\"title\";s:13:\"Coming Soon 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-9.png\";s:12:\"tmpl_created\";s:10:\"1491207756\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"173\";s:16:\"popularity_index\";s:3:\"132\";s:11:\"trend_index\";s:3:\"181\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:652;a:14:{s:2:\"id\";s:4:\"1745\";s:5:\"title\";s:14:\"Coming Soon 10\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-002.png\";s:12:\"tmpl_created\";s:10:\"1494849745\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/coming-soon-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"174\";s:16:\"popularity_index\";s:3:\"269\";s:11:\"trend_index\";s:3:\"311\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:653;a:14:{s:2:\"id\";s:4:\"1742\";s:5:\"title\";s:12:\"Login Page 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-003.png\";s:12:\"tmpl_created\";s:10:\"1494849744\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/login-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"175\";s:16:\"popularity_index\";s:3:\"397\";s:11:\"trend_index\";s:3:\"330\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:654;a:14:{s:2:\"id\";s:4:\"1748\";s:5:\"title\";s:12:\"Login Page 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-001.png\";s:12:\"tmpl_created\";s:10:\"1494849742\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/login-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"176\";s:16:\"popularity_index\";s:3:\"289\";s:11:\"trend_index\";s:3:\"345\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:655;a:14:{s:2:\"id\";s:4:\"3963\";s:5:\"title\";s:32:\"Restaurant Site &#8211; Homepage\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/01/R.HomepageThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284821\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/restaurant-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"177\";s:16:\"popularity_index\";s:3:\"229\";s:11:\"trend_index\";s:3:\"303\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:656;a:14:{s:2:\"id\";s:4:\"3969\";s:5:\"title\";s:28:\"Restaurant Site &#8211; Menu\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/01/R.MenuThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284829\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/restaurant-site-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"178\";s:16:\"popularity_index\";s:3:\"382\";s:11:\"trend_index\";s:3:\"490\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:657;a:14:{s:2:\"id\";s:4:\"3966\";s:5:\"title\";s:29:\"Restaurant Site &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/01/R.AboutThumb.png.png\";s:12:\"tmpl_created\";s:10:\"1516284839\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/restaurant-site-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"179\";s:16:\"popularity_index\";s:3:\"244\";s:11:\"trend_index\";s:3:\"340\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:658;a:14:{s:2:\"id\";s:4:\"3972\";s:5:\"title\";s:31:\"Restaurant Site &#8211; Contact\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/01/R.ContactThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284847\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/restaurant-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"180\";s:16:\"popularity_index\";s:3:\"351\";s:11:\"trend_index\";s:3:\"353\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:659;a:14:{s:2:\"id\";s:4:\"2080\";s:5:\"title\";s:27:\"Ski Resort &#8211; Homepage\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1508161124\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"181\";s:16:\"popularity_index\";s:3:\"318\";s:11:\"trend_index\";s:3:\"376\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:660;a:14:{s:2:\"id\";s:4:\"2088\";s:5:\"title\";s:24:\"Ski Resort &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-About.png\";s:12:\"tmpl_created\";s:10:\"1508161129\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/ski-resort-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"182\";s:16:\"popularity_index\";s:3:\"394\";s:11:\"trend_index\";s:3:\"607\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:661;a:14:{s:2:\"id\";s:4:\"2085\";s:5:\"title\";s:27:\"Ski Resort &#8211; Services\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Services.png\";s:12:\"tmpl_created\";s:10:\"1508161134\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"183\";s:16:\"popularity_index\";s:3:\"503\";s:11:\"trend_index\";s:3:\"652\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:662;a:14:{s:2:\"id\";s:4:\"2462\";s:5:\"title\";s:23:\"Architect &#8211; About\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/architect-–-about.png\";s:12:\"tmpl_created\";s:10:\"1508243317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/architect-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"184\";s:16:\"popularity_index\";s:3:\"313\";s:11:\"trend_index\";s:3:\"484\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:663;a:14:{s:2:\"id\";s:4:\"2362\";s:5:\"title\";s:26:\"Architect &#8211; Projects\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2017/10/Architect-Projects.png\";s:12:\"tmpl_created\";s:10:\"1508243335\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/architect-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"185\";s:16:\"popularity_index\";s:3:\"381\";s:11:\"trend_index\";s:3:\"452\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:664;a:14:{s:2:\"id\";s:3:\"614\";s:5:\"title\";s:25:\"Architect &#8211; Contact\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2016/12/architect-contact.jpg\";s:12:\"tmpl_created\";s:10:\"1481549169\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/architect-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"186\";s:16:\"popularity_index\";s:3:\"287\";s:11:\"trend_index\";s:3:\"424\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:665;a:14:{s:2:\"id\";s:4:\"2126\";s:5:\"title\";s:37:\"Construction Company &#8211; Homepage\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1508325849\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-company-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"187\";s:16:\"popularity_index\";s:3:\"271\";s:11:\"trend_index\";s:3:\"298\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:666;a:14:{s:2:\"id\";s:4:\"2129\";s:5:\"title\";s:34:\"Construction Company &#8211; About\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-About.png\";s:12:\"tmpl_created\";s:10:\"1508325881\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/construction-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"188\";s:16:\"popularity_index\";s:3:\"296\";s:11:\"trend_index\";s:3:\"346\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:667;a:14:{s:2:\"id\";s:4:\"2135\";s:5:\"title\";s:36:\"Construction Company &#8211; Contact\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Contact.png\";s:12:\"tmpl_created\";s:10:\"1508325922\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/construction-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"189\";s:16:\"popularity_index\";s:3:\"335\";s:11:\"trend_index\";s:3:\"455\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:668;a:14:{s:2:\"id\";s:4:\"2094\";s:5:\"title\";s:28:\"Plants Shop &#8211; Homepage\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-Home.png\";s:12:\"tmpl_created\";s:10:\"1509621053\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/plants-shop-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"190\";s:16:\"popularity_index\";s:3:\"268\";s:11:\"trend_index\";s:3:\"294\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:669;a:14:{s:2:\"id\";s:4:\"2120\";s:5:\"title\";s:25:\"Plants Shop &#8211; About\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-About.png\";s:12:\"tmpl_created\";s:10:\"1509631820\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/plants-shop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"191\";s:16:\"popularity_index\";s:3:\"337\";s:11:\"trend_index\";s:3:\"269\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:670;a:14:{s:2:\"id\";s:4:\"3153\";s:5:\"title\";s:14:\"Halloween Pack\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/10/halloween.png\";s:12:\"tmpl_created\";s:10:\"1508950132\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/halloween-pack/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"192\";s:16:\"popularity_index\";s:3:\"573\";s:11:\"trend_index\";s:3:\"604\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:671;a:14:{s:2:\"id\";s:4:\"3338\";s:5:\"title\";s:31:\"Black Friday &#8211; Nature Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-1.png\";s:12:\"tmpl_created\";s:10:\"1511203351\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-nature-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"193\";s:16:\"popularity_index\";s:3:\"495\";s:11:\"trend_index\";s:3:\"585\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:672;a:14:{s:2:\"id\";s:4:\"3339\";s:5:\"title\";s:35:\"Black Friday &#8211; Pop-Styled Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-2.png\";s:12:\"tmpl_created\";s:10:\"1511203636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/black-friday-pop-styled-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"194\";s:16:\"popularity_index\";s:3:\"441\";s:11:\"trend_index\";s:3:\"508\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:673;a:14:{s:2:\"id\";s:4:\"3335\";s:5:\"title\";s:31:\"Black Friday &#8211; Retail Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-4.png\";s:12:\"tmpl_created\";s:10:\"1511203246\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-retail-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"195\";s:16:\"popularity_index\";s:3:\"443\";s:11:\"trend_index\";s:3:\"518\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:674;a:14:{s:2:\"id\";s:4:\"3340\";s:5:\"title\";s:41:\"Black Friday &#8211; Software Product Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-3.png\";s:12:\"tmpl_created\";s:10:\"1511203713\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/black-friday-software-product-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"196\";s:16:\"popularity_index\";s:3:\"420\";s:11:\"trend_index\";s:3:\"416\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:675;a:14:{s:2:\"id\";s:4:\"3517\";s:5:\"title\";s:27:\"Christmas &#8211; Gift Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasThumb.png\";s:12:\"tmpl_created\";s:10:\"1513877937\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-gift-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"197\";s:16:\"popularity_index\";s:3:\"489\";s:11:\"trend_index\";s:3:\"597\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:676;a:14:{s:2:\"id\";s:4:\"3734\";s:5:\"title\";s:28:\"Christmas &#8211; Car Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v3.png\";s:12:\"tmpl_created\";s:10:\"1514197794\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/christmas-car-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"198\";s:16:\"popularity_index\";s:3:\"468\";s:11:\"trend_index\";s:3:\"573\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:677;a:14:{s:2:\"id\";s:4:\"3764\";s:5:\"title\";s:33:\"Christmas &#8211; Interior Design\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v6.png\";s:12:\"tmpl_created\";s:10:\"1514198234\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/christmas-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"199\";s:16:\"popularity_index\";s:3:\"448\";s:11:\"trend_index\";s:3:\"546\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:678;a:14:{s:2:\"id\";s:4:\"3565\";s:5:\"title\";s:27:\"Christmas &#8211; Tree Shop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasTreeThumb.png\";s:12:\"tmpl_created\";s:10:\"1514204382\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-tree-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"200\";s:16:\"popularity_index\";s:3:\"392\";s:11:\"trend_index\";s:3:\"544\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:679;a:14:{s:2:\"id\";s:4:\"3862\";s:5:\"title\";s:35:\"Christmas &#8211; Design Conference\";s:9:\"thumbnail\";s:63:\"https://library.elementor.com/wp-content/uploads/2017/12/q1.png\";s:12:\"tmpl_created\";s:10:\"1514206745\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/christmas-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"201\";s:16:\"popularity_index\";s:3:\"383\";s:11:\"trend_index\";s:3:\"396\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:680;a:14:{s:2:\"id\";s:4:\"3777\";s:5:\"title\";s:39:\"Christmas &#8211; Snowboard Competition\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v7.png\";s:12:\"tmpl_created\";s:10:\"1514205420\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/christmas-snowboard-competition/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"202\";s:16:\"popularity_index\";s:3:\"408\";s:11:\"trend_index\";s:3:\"611\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:681;a:14:{s:2:\"id\";s:3:\"420\";s:5:\"title\";s:11:\"Hero UI Kit\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/09/library-ui-kit-cover.png\";s:12:\"tmpl_created\";s:10:\"1475067229\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/hero-ui-kit/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"203\";s:16:\"popularity_index\";s:2:\"20\";s:11:\"trend_index\";s:2:\"40\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}}}','no');
INSERT INTO `wpjg_options` VALUES (962,'_elementor_installed_time','1588434172','yes'),(964,'elementor_remote_info_feed_data','a:5:{i:0;a:5:{s:5:\"title\";s:58:\"The New Rank Math SEO Integration for Elementor Explained \";s:7:\"excerpt\";s:253:\"With Rank Math\'s new integration for Elementor you can get SEO suggestions, edit your meta snippet accordingly, and configure the schema markup — all from within Elementor\'s editing screen. In this article, we’ll walk you through these new features.\";s:7:\"created\";s:10:\"1588245311\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:121:\"https://elementor.com/blog/rank-math-integration/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:91:\"Monday Masterclass: How to Transform Any WordPress Site Into an Online Store With Elementor\";s:7:\"excerpt\";s:179:\"This week we turn a WordPress site into an online store with customizable product display, and an efficient system for shipping and registering orders, all done in 5 simple steps.\";s:7:\"created\";s:10:\"1588065572\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:135:\"https://elementor.com/blog/wordpress-site-into-an-online-store/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:56:\"Monthly Templates Kit #9: The Online Course Template Kit\";s:7:\"excerpt\";s:274:\"Meet our Online Course Website template kit, which we built for professionals looking to create and publish an online video course on WordPress. It only takes minutes to upload your video content and materials so that you can share your skill set with the world of learners.\";s:7:\"created\";s:10:\"1587538951\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:126:\"https://elementor.com/blog/online-course-template-kit/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:3;a:5:{s:5:\"title\";s:43:\"Elementor Sites of the Month – March 2020\";s:7:\"excerpt\";s:73:\"Here are our top picks of Elementor sites for March 2020. Check them out!\";s:7:\"created\";s:10:\"1587480146\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:119:\"https://elementor.com/blog/showcase-march-2020/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:4;a:5:{s:5:\"title\";s:61:\"How to Design Your WordPress Site Using Elementor Theme Style\";s:7:\"excerpt\";s:177:\"Elementor Theme Style allows you to customize your website easily. In this tutorial, we’ll show you how to use the theme style to quickly build a unique and compelling design.\";s:7:\"created\";s:10:\"1586863421\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:148:\"https://elementor.com/blog/design-your-wordpress-site-elementor-theme-style/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(969,'mc4wp_flash_messages','a:0:{}','no'),(35585,'woocommerce_schema_version','430','yes'),(35592,'woocommerce_db_version','4.3.1','yes'),(6278,'_transient_woocommerce_reports-transient-version','1595818485','yes'),(53628,'_site_transient_timeout_theme_roots','1601225259','no'),(53629,'_site_transient_theme_roots','a:8:{s:7:\"blogbee\";s:7:\"/themes\";s:12:\"hotel-luxury\";s:7:\"/themes\";s:18:\"minamaze-emagazine\";s:7:\"/themes\";s:8:\"minamaze\";s:7:\"/themes\";s:9:\"rosa-lite\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";}','no'),(53659,'_transient_timeout_jpp_li_fa26c750924e1ea4778c2145d91b1483','1601228008','no'),(53660,'_transient_jpp_li_fa26c750924e1ea4778c2145d91b1483','a:5:{s:6:\"status\";s:2:\"ok\";s:3:\"msg\";s:53:\"No current blocks on this IP address (173.231.218.25)\";s:17:\"seconds_remaining\";i:3600;s:16:\"blocked_attempts\";s:4:\"4714\";s:6:\"expire\";i:1601228008;}','no'),(1365,'action_scheduler_migration_status','complete','yes'),(1396,'widget_weforms_widget','a:2:{i:2;a:2:{s:5:\"title\";s:4:\"Form\";s:7:\"form_id\";s:3:\"149\";}s:12:\"_multiwidget\";i:1;}','yes'),(1029,'_elementor_global_css','a:5:{s:4:\"time\";i:1588434545;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:4;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}','yes'),(1389,'weforms_version','1.4.9','yes'),(1025,'elementor_controls_usage','a:1:{s:7:\"wp-page\";a:5:{s:11:\"text-editor\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:14:\"image-carousel\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:1:{s:8:\"carousel\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:0:{}}s:11:\"google_maps\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:7:\"address\";i:1;}}}}}}','no'),(1847,'_transient_shipping-transient-version','1588440667','yes'),(53722,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1601267864','no'),(53723,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1601224664','no'),(53724,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1601267864','no'),(53725,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2020/09/wordpress-5-5-1-maintenance-release/\'>WordPress 5.5.1 Maintenance Release</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/fuxia-scholz-first-to-pass-100k-reputation-points-on-wordpress-stack-exchange?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fuxia-scholz-first-to-pass-100k-reputation-points-on-wordpress-stack-exchange\'>WPTavern: Fuxia Scholz First to Pass 100K Reputation Points on WordPress Stack Exchange</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/photopress-plugin-seeks-to-revolutionize-photography-for-wordpress-users?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=photopress-plugin-seeks-to-revolutionize-photography-for-wordpress-users\'>WPTavern: PhotoPress Plugin Seeks to Revolutionize Photography for WordPress Users</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/google-officially-releases-its-web-stories-for-wordpress-plugin?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-officially-releases-its-web-stories-for-wordpress-plugin\'>WPTavern: Google Officially Releases Its Web Stories for WordPress Plugin</a></li></ul></div>','no'),(35645,'carousel_display_comments','1','yes'),(53650,'jetpack_active_plan','a:8:{s:10:\"product_id\";i:2002;s:12:\"product_slug\";s:12:\"jetpack_free\";s:12:\"product_name\";s:12:\"Jetpack Free\";s:18:\"product_name_short\";s:4:\"Free\";s:7:\"expired\";b:0;s:13:\"user_is_owner\";b:0;s:7:\"is_free\";b:1;s:8:\"features\";a:2:{s:6:\"active\";a:3:{i:0;s:7:\"akismet\";i:1;s:14:\"send-a-message\";i:2;s:15:\"social-previews\";}s:9:\"available\";a:19:{s:7:\"akismet\";a:12:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";}s:18:\"vaultpress-backups\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:25:\"vaultpress-backup-archive\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:24:\"vaultpress-storage-space\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:29:\"vaultpress-automated-restores\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:15:\"simple-payments\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:8:\"calendly\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:9:\"opentable\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:14:\"send-a-message\";a:12:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";}s:15:\"social-previews\";a:12:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";}s:9:\"donations\";a:12:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";}s:10:\"core/video\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:10:\"core/cover\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:10:\"core/audio\";a:12:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";}s:25:\"premium-content/container\";a:12:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";}s:7:\"support\";a:12:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";}s:14:\"premium-themes\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:28:\"vaultpress-security-scanning\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:9:\"polldaddy\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}}}}','yes'),(992,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(993,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(994,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),(53655,'_transient_timeout__woocommerce_helper_updates','1601267608','no'),(53656,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1601224408;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(53658,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1601224944;s:8:\"response\";a:7:{s:23:\"elementor/elementor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:6:\"3.0.10\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.10.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.5.1\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":12:{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:\"8.9.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.8.9.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:60:\"https://ps.w.org/jetpack/assets/icon-256x256.png?rev=1791404\";s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=1791404\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=1791404\";}s:7:\"banners\";a:2:{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:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.5.1\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:30:\"w.org/plugins/mailchimp-for-wp\";s:4:\"slug\";s:16:\"mailchimp-for-wp\";s:6:\"plugin\";s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";s:11:\"new_version\";s:5:\"4.8.1\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/mailchimp-for-wp/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/mailchimp-for-wp/assets/icon-256x256.png?rev=1224577\";s:2:\"1x\";s:69:\"https://ps.w.org/mailchimp-for-wp/assets/icon-128x128.png?rev=1224577\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/mailchimp-for-wp/assets/banner-772x250.png?rev=1184706\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.5.1\";s:12:\"requires_php\";s:3:\"5.3\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:43:\"the-events-calendar/the-events-calendar.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:33:\"w.org/plugins/the-events-calendar\";s:4:\"slug\";s:19:\"the-events-calendar\";s:6:\"plugin\";s:43:\"the-events-calendar/the-events-calendar.php\";s:11:\"new_version\";s:5:\"5.1.6\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/the-events-calendar/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/the-events-calendar.5.1.6.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:72:\"https://ps.w.org/the-events-calendar/assets/icon-256x256.png?rev=2259358\";s:2:\"1x\";s:64:\"https://ps.w.org/the-events-calendar/assets/icon.svg?rev=2259343\";s:3:\"svg\";s:64:\"https://ps.w.org/the-events-calendar/assets/icon.svg?rev=2259343\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/the-events-calendar/assets/banner-1544x500.png?rev=2257622\";s:2:\"1x\";s:74:\"https://ps.w.org/the-events-calendar/assets/banner-772x250.png?rev=2257622\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.5.1\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:35:\"boldgrid-backup/boldgrid-backup.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/boldgrid-backup\";s:4:\"slug\";s:15:\"boldgrid-backup\";s:6:\"plugin\";s:35:\"boldgrid-backup/boldgrid-backup.php\";s:11:\"new_version\";s:6:\"1.14.5\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/boldgrid-backup/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/boldgrid-backup.1.14.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-256x256.png?rev=1880952\";s:2:\"1x\";s:68:\"https://ps.w.org/boldgrid-backup/assets/icon-128x128.png?rev=1880952\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/boldgrid-backup/assets/banner-1544x500.png?rev=1880952\";s:2:\"1x\";s:70:\"https://ps.w.org/boldgrid-backup/assets/banner-772x250.png?rev=1880952\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.5.1\";s:12:\"requires_php\";s:3:\"5.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:19:\"weforms/weforms.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/weforms\";s:4:\"slug\";s:7:\"weforms\";s:6:\"plugin\";s:19:\"weforms/weforms.php\";s:11:\"new_version\";s:5:\"1.5.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/weforms/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/weforms.1.5.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/weforms/assets/icon-256x256.png?rev=1978687\";s:2:\"1x\";s:60:\"https://ps.w.org/weforms/assets/icon-128x128.png?rev=1978687\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/weforms/assets/banner-1544x500.png?rev=2243402\";s:2:\"1x\";s:62:\"https://ps.w.org/weforms/assets/banner-772x250.png?rev=2243402\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.5.1\";s:12:\"requires_php\";s:6:\"5.6.20\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"4.5.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2366418\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2366418\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2366418\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2366418\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.5.1\";s:12:\"requires_php\";s:3:\"7.0\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:3:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{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.1.6\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}}s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:30:\"w.org/plugins/breadcrumb-navxt\";s:4:\"slug\";s:16:\"breadcrumb-navxt\";s:6:\"plugin\";s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";s:11:\"new_version\";s:5:\"6.5.0\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/breadcrumb-navxt/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/breadcrumb-navxt.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:68:\"https://ps.w.org/breadcrumb-navxt/assets/icon-256x256.png?rev=971477\";s:2:\"1x\";s:61:\"https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=1927103\";s:3:\"svg\";s:61:\"https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=1927103\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/breadcrumb-navxt/assets/banner-1544x500.png?rev=1927103\";s:2:\"1x\";s:71:\"https://ps.w.org/breadcrumb-navxt/assets/banner-772x250.png?rev=1927103\";}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:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(1384,'weforms_installed','1588435974','yes'),(997,'elementor_active_kit','132','yes'),(1278,'mc4wp_default_form_id','148','yes'),(1308,'wpcom_publish_posts_with_markdown','1','yes'),(1310,'jetpack_sync_settings_full_sync_limits','a:5:{s:5:\"users\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}s:5:\"terms\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}s:5:\"posts\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:1;}s:8:\"comments\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}s:18:\"term_relationships\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}}','yes'),(1250,'mc4wp','a:6:{s:19:\"grecaptcha_site_key\";s:0:\"\";s:21:\"grecaptcha_secret_key\";s:0:\"\";s:7:\"api_key\";s:0:\"\";s:20:\"allow_usage_tracking\";i:0;s:15:\"debug_log_level\";s:7:\"warning\";s:18:\"first_activated_on\";i:1588435401;}','yes'),(1331,'jp_sync_lock_full_sync','1601224961.016','yes'),(22969,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:18:\"374curry@gmail.com\";s:7:\"version\";s:5:\"5.4.2\";s:9:\"timestamp\";i:1591848020;}','no'),(22966,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:2:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.5.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.5.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.5.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.5.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.5.1\";s:7:\"version\";s:5:\"5.5.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.5.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.5.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.5.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.5.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.5.1\";s:7:\"version\";s:5:\"5.5.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1601224945;s:15:\"version_checked\";s:5:\"5.4.2\";s:12:\"translations\";a:0:{}}','no'),(1375,'weforms_settings','a:4:{s:13:\"email_gateway\";s:9:\"wordpress\";s:6:\"credit\";b:0;s:12:\"email_footer\";b:1;s:9:\"recaptcha\";a:3:{s:3:\"key\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:4:\"type\";s:2:\"v2\";}}','yes'),(1915,'carousel_display_exif','1','yes'),(1928,'boldgrid_plugin_page_notices','a:1:{i:0;a:4:{s:2:\"id\";s:26:\"bgbkup_database_encryption\";s:8:\"isUnread\";b:0;s:7:\"version\";s:6:\"1.13.0\";s:4:\"page\";s:32:\"boldgrid-backup-premium-features\";}}','yes'),(1978,'jetpack_protect_blocked_attempts','4714','no'),(1918,'carousel_background_color','','yes'),(1892,'weforms_allow_tracking','yes','yes'),(1893,'weforms_tracking_notice','hide','yes'),(53748,'_transient_doing_cron','1601224956.2898728847503662109375','yes'),(1894,'weforms_tracking_last_send','1601224421','yes'),(1917,'carousel_display_geo','1','yes');
/*!40000 ALTER TABLE `wpjg_options` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpjg_options` with 484 row(s)
--

--
-- Table structure for table `wpjg_postmeta`
--

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

--
-- Dumping data for table `wpjg_postmeta`
--

LOCK TABLES `wpjg_postmeta` WRITE;
/*!40000 ALTER TABLE `wpjg_postmeta` DISABLE KEYS */;
INSERT INTO `wpjg_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(18,12,'_wp_attached_file','2020/05/IMG_20200321_174621-scaled.jpg'),(19,12,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200321_174621-scaled.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200321_174621-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200321_174621-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200321_174621-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200321_174621-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_174621-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_174621-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"full-size\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_174621-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-size\";a:4:{s:4:\"file\";s:32:\"IMG_20200321_174621-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-size\";a:4:{s:4:\"file\";s:31:\"IMG_20200321_174621-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"small-size\";a:4:{s:4:\"file\";s:31:\"IMG_20200321_174621-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1584812782\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"5.58\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:8:\"0.000506\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200321_174621.jpg\";}'),(20,13,'_wp_attached_file','2020/05/cropped-IMG_20200321_174621-scaled-1.jpg'),(21,13,'_wp_attachment_context','custom-header'),(22,13,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:635;s:4:\"file\";s:48:\"2020/05/cropped-IMG_20200321_174621-scaled-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"cropped-IMG_20200321_174621-scaled-1-300x127.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"cropped-IMG_20200321_174621-scaled-1-1024x433.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"cropped-IMG_20200321_174621-scaled-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"cropped-IMG_20200321_174621-scaled-1-768x325.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:46:\"cropped-IMG_20200321_174621-scaled-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:48:\"cropped-IMG_20200321_174621-scaled-1-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;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:{}}s:17:\"attachment_parent\";i:12;}'),(23,13,'_wp_attachment_custom_header_last_used_hotel-luxury','1588353116'),(24,13,'_wp_attachment_is_custom_header','hotel-luxury'),(388,230,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:605;s:6:\"height\";i:807;s:4:\"file\";s:29:\"2020/07/20200625_232047sm.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"20200625_232047sm-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"20200625_232047sm-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:27:\"20200625_232047sm-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:29:\"20200625_232047sm-605x335.jpg\";s:5:\"width\";i:605;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"20200625_232047sm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"20200625_232047sm-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"20200625_232047sm-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"20200625_232047sm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"20200625_232047sm-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"20200625_232047sm-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G955W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1593127247\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";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:{}}}'),(27,15,'_wp_attached_file','2020/05/cropped-IMG_20200321_174621-scaled-2.jpg'),(28,15,'_wp_attachment_context','custom-header'),(29,15,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1081;s:4:\"file\";s:48:\"2020/05/cropped-IMG_20200321_174621-scaled-2.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"cropped-IMG_20200321_174621-scaled-2-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"cropped-IMG_20200321_174621-scaled-2-1024x577.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:577;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"cropped-IMG_20200321_174621-scaled-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"cropped-IMG_20200321_174621-scaled-2-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"cropped-IMG_20200321_174621-scaled-2-1536x865.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:865;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"blogbee-blog\";a:4:{s:4:\"file\";s:48:\"cropped-IMG_20200321_174621-scaled-2-360x270.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:17:\"attachment_parent\";i:12;}'),(30,15,'_wp_attachment_custom_header_last_used_blogbee','1588348292'),(31,15,'_wp_attachment_is_custom_header','blogbee'),(387,230,'_wp_attached_file','2020/07/20200625_232047sm.jpg'),(42,20,'_wp_attached_file','2020/05/IMG_20200429_142925-scaled.jpg'),(43,20,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200429_142925-scaled.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142925-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_142925-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142925-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142925-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_142925-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_142925-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_142925-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_142925-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142925-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142925-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142925-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142925-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142925-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142925-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142925-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142925-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142925-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142925-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142925-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170565\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"5.58\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200429_142925.jpg\";}'),(44,21,'_wp_attached_file','2020/05/IMG_20200429_142925-1-scaled.jpg'),(45,21,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:40:\"2020/05/IMG_20200429_142925-1-scaled.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"IMG_20200429_142925-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"IMG_20200429_142925-1-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:35:\"IMG_20200429_142925-1-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:34:\"IMG_20200429_142925-1-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:34:\"IMG_20200429_142925-1-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:34:\"IMG_20200429_142925-1-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:34:\"IMG_20200429_142925-1-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-1-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-1-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-1-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-1-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-1-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-1-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-1-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-1-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-1-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-1-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170565\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"5.58\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"IMG_20200429_142925-1.jpg\";}'),(46,22,'_wp_attached_file','2020/05/IMG_20200429_142958-scaled.jpg'),(47,22,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200429_142958-scaled.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142958-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_142958-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142958-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142958-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142958-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142958-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_142958-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_142958-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_142958-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_142958-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142958-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142958-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142958-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142958-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142958-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142958-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142958-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142958-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142958-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142958-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142958-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170598\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"5.58\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200429_142958.jpg\";}'),(48,23,'_wp_attached_file','2020/05/IMG_20200429_143032-scaled.jpg'),(49,23,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200429_143032-scaled.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143032-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143032-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143032-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143032-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143032-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143032-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143032-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143032-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143032-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143032-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143032-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143032-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143032-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143032-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143032-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143032-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143032-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143032-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143032-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143032-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143032-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170632\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"5.58\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200429_143032.jpg\";}'),(50,24,'_wp_attached_file','2020/05/IMG_20200429_143143-scaled.jpg'),(51,24,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200429_143143-scaled.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143143-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143143-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143143-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143143-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143143-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143143-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143143-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143143-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143143-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143143-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143143-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143143-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143143-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143143-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143143-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143143-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143143-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143143-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143143-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143143-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143143-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170703\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"5.58\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200429_143143.jpg\";}'),(52,25,'_wp_attached_file','2020/05/IMG_20200429_143201-scaled.jpg'),(53,25,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200429_143201-scaled.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143201-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143201-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143201-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143201-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143201-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143201-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143201-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143201-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143201-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143201-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143201-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143201-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143201-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143201-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143201-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143201-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143201-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143201-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143201-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143201-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143201-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170721\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"5.58\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200429_143201.jpg\";}'),(54,26,'_wp_attached_file','2020/05/IMG_20200429_143217-scaled.jpg'),(55,26,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200429_143217-scaled.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143217-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143217-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143217-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143217-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143217-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143217-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143217-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143217-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143217-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143217-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143217-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143217-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143217-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143217-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143217-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143217-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143217-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143217-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143217-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143217-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143217-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170737\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"5.58\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200429_143217.jpg\";}'),(56,27,'_wp_attached_file','2020/05/IMG_20200429_143234-scaled.jpg'),(57,27,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:38:\"2020/05/IMG_20200429_143234-scaled.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143234-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143234-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143234-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143234-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143234-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143234-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143234-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143234-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143234-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143234-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143234-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143234-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143234-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143234-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143234-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143234-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143234-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143234-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143234-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143234-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143234-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170754\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"5.58\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200429_143234.jpg\";}'),(58,28,'_wp_attached_file','2020/05/IMG_20200429_143252-scaled.jpg'),(59,28,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:38:\"2020/05/IMG_20200429_143252-scaled.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143252-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143252-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143252-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143252-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143252-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143252-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143252-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143252-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143252-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143252-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143252-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143252-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143252-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143252-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143252-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143252-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143252-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143252-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143252-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143252-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143252-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170772\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"5.58\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200429_143252.jpg\";}'),(60,29,'_wp_attached_file','2020/05/IMG_20200429_143310-scaled.jpg'),(61,29,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200429_143310-scaled.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143310-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143310-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143310-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143310-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143310-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143310-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143310-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143310-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143310-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143310-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143310-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143310-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143310-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143310-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143310-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143310-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143310-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143310-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143310-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143310-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143310-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170790\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"5.58\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200429_143310.jpg\";}'),(62,30,'_wp_attached_file','2020/05/IMG_20200429_143320-scaled.jpg'),(63,30,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200429_143320-scaled.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143320-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143320-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143320-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143320-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143320-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143320-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143320-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143320-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143320-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143320-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143320-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143320-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143320-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143320-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143320-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143320-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143320-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143320-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143320-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143320-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143320-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170800\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:8:\"0.016667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200429_143320.jpg\";}'),(64,31,'_wp_attached_file','2020/05/IMG_20200429_143327-scaled.jpg'),(65,31,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200429_143327-scaled.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143327-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143327-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143327-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143327-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143327-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143327-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143327-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143327-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143327-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143327-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143327-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143327-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143327-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143327-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143327-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143327-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143327-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143327-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143327-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143327-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143327-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170807\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200429_143327.jpg\";}'),(66,32,'_wp_attached_file','2020/05/IMG_20200429_143334-scaled.jpg'),(67,32,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200429_143334-scaled.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143334-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143334-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143334-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143334-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143334-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143334-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143334-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143334-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143334-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143334-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143334-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143334-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143334-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143334-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143334-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143334-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143334-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143334-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143334-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143334-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143334-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170815\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:8:\"0.016667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200429_143334.jpg\";}'),(68,33,'_wp_attached_file','2020/05/IMG_20200429_143340-scaled.jpg'),(69,33,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200429_143340-scaled.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143340-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143340-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143340-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143340-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143340-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143340-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143340-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143340-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143340-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143340-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143340-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143340-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143340-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143340-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143340-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143340-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143340-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143340-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143340-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143340-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143340-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170821\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200429_143340.jpg\";}'),(70,34,'_wp_attached_file','2020/05/IMG_20200429_143352-scaled.jpg'),(71,34,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200429_143352-scaled.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143352-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143352-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143352-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143352-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143352-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143352-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143352-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143352-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143352-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143352-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143352-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143352-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143352-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143352-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143352-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143352-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143352-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143352-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143352-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143352-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143352-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170833\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200429_143352.jpg\";}'),(72,35,'_wp_attached_file','2020/05/IMG_20200429_143426-scaled.jpg'),(73,35,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200429_143426-scaled.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143426-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143426-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143426-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143426-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143426-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143426-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143426-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143426-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143426-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143426-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143426-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143426-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143426-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143426-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143426-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143426-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143426-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143426-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143426-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143426-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143426-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170866\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200429_143426.jpg\";}'),(74,36,'_wp_attached_file','2020/05/IMG_20200429_143436-scaled.jpg'),(75,36,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200429_143436-scaled.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143436-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143436-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143436-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143436-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143436-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143436-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143436-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143436-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143436-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143436-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143436-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143436-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143436-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143436-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143436-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143436-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143436-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143436-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143436-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143436-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143436-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170876\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:8:\"0.016667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200429_143436.jpg\";}'),(76,37,'_wp_attached_file','2020/05/IMG_20200429_143439-scaled.jpg'),(77,37,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200429_143439-scaled.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143439-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143439-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143439-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143439-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143439-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143439-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143439-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143439-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143439-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143439-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143439-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143439-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143439-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143439-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143439-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143439-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143439-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143439-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143439-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143439-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143439-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170879\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:8:\"0.016667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200429_143439.jpg\";}'),(78,38,'_wp_attached_file','2020/05/IMG_20200429_143448-scaled.jpg'),(79,38,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200429_143448-scaled.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143448-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143448-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143448-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143448-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143448-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143448-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143448-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143448-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143448-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143448-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143448-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143448-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143448-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143448-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143448-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143448-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143448-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143448-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143448-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143448-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143448-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170888\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:8:\"0.016667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200429_143448.jpg\";}'),(80,39,'_wp_attached_file','2020/05/IMG_20200429_143458-scaled.jpg'),(81,39,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200429_143458-scaled.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143458-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143458-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143458-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143458-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143458-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143458-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143458-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143458-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143458-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_143458-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143458-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143458-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143458-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143458-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143458-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143458-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143458-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143458-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143458-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143458-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143458-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170899\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:8:\"0.016667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200429_143458.jpg\";}'),(82,40,'_wp_attached_file','2020/05/IMG_20200429_152721-scaled.jpg'),(83,40,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:38:\"2020/05/IMG_20200429_152721-scaled.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_152721-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_152721-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_152721-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_152721-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_152721-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_152721-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_152721-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_152721-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_152721-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_152721-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_152721-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_152721-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_152721-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_152721-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_152721-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_152721-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_152721-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_152721-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_152721-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_152721-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_152721-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588174043\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"5.58\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200429_152721.jpg\";}'),(84,41,'_wp_attached_file','2020/05/IMG_20200429_153357-scaled.jpg'),(85,41,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:38:\"2020/05/IMG_20200429_153357-scaled.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_153357-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_153357-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_153357-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_153357-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_153357-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_153357-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_153357-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_153357-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_153357-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:32:\"IMG_20200429_153357-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_153357-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_153357-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_153357-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_153357-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_153357-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_153357-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_153357-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_153357-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_153357-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_153357-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_153357-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588174436\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"5.58\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:12:\"-1.294967296\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200429_153357.jpg\";}'),(95,46,'_wp_attached_file','2020/05/cropped-IMG_20200321_174621-scaled-4.jpg'),(96,46,'_wp_attachment_context','custom-header'),(97,46,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:200;s:4:\"file\";s:48:\"2020/05/cropped-IMG_20200321_174621-scaled-4.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"cropped-IMG_20200321_174621-scaled-4-300x38.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:38;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"cropped-IMG_20200321_174621-scaled-4-1024x128.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"cropped-IMG_20200321_174621-scaled-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"cropped-IMG_20200321_174621-scaled-4-768x96.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"cropped-IMG_20200321_174621-scaled-4-1536x192.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:49:\"cropped-IMG_20200321_174621-scaled-4-1140x200.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:49:\"cropped-IMG_20200321_174621-scaled-4-1140x200.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:49:\"cropped-IMG_20200321_174621-scaled-4-1140x200.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:49:\"cropped-IMG_20200321_174621-scaled-4-1140x200.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:48:\"cropped-IMG_20200321_174621-scaled-4-570x200.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:48:\"cropped-IMG_20200321_174621-scaled-4-570x200.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:48:\"cropped-IMG_20200321_174621-scaled-4-570x200.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:48:\"cropped-IMG_20200321_174621-scaled-4-570x200.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:48:\"cropped-IMG_20200321_174621-scaled-4-380x200.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:48:\"cropped-IMG_20200321_174621-scaled-4-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:48:\"cropped-IMG_20200321_174621-scaled-4-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:48:\"cropped-IMG_20200321_174621-scaled-4-380x200.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:48:\"cropped-IMG_20200321_174621-scaled-4-285x200.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:48:\"cropped-IMG_20200321_174621-scaled-4-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:48:\"cropped-IMG_20200321_174621-scaled-4-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:{}}s:17:\"attachment_parent\";i:12;}'),(98,46,'_wp_attachment_custom_header_last_used_minamaze-emagazine','1588350261'),(99,46,'_wp_attachment_is_custom_header','minamaze-emagazine'),(128,60,'_menu_item_target',''),(106,48,'_customize_changeset_uuid','64a86933-ef4c-4ccd-9098-d281c77191e3'),(127,60,'_menu_item_object','page'),(109,50,'_customize_changeset_uuid','64a86933-ef4c-4ccd-9098-d281c77191e3'),(126,60,'_menu_item_object_id','48'),(111,51,'_customize_changeset_uuid','64a86933-ef4c-4ccd-9098-d281c77191e3'),(125,60,'_menu_item_menu_item_parent','0'),(113,52,'_customize_changeset_uuid','64a86933-ef4c-4ccd-9098-d281c77191e3'),(124,60,'_menu_item_type','post_type'),(115,53,'_customize_changeset_uuid','64a86933-ef4c-4ccd-9098-d281c77191e3'),(116,54,'_menu_item_type','custom'),(117,54,'_menu_item_menu_item_parent','0'),(118,54,'_menu_item_object_id','54'),(119,54,'_menu_item_object','custom'),(120,54,'_menu_item_target',''),(121,54,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(122,54,'_menu_item_xfn',''),(123,54,'_menu_item_url','https://374curry.com'),(129,60,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(130,60,'_menu_item_xfn',''),(131,60,'_menu_item_url',''),(132,61,'_menu_item_type','post_type'),(133,61,'_menu_item_menu_item_parent','0'),(134,61,'_menu_item_object_id','50'),(135,61,'_menu_item_object','page'),(136,61,'_menu_item_target',''),(137,61,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(138,61,'_menu_item_xfn',''),(139,61,'_menu_item_url',''),(140,62,'_menu_item_type','post_type'),(141,62,'_menu_item_menu_item_parent','0'),(142,62,'_menu_item_object_id','51'),(143,62,'_menu_item_object','page'),(144,62,'_menu_item_target',''),(145,62,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(146,62,'_menu_item_xfn',''),(147,62,'_menu_item_url',''),(148,63,'_menu_item_type','post_type'),(149,63,'_menu_item_menu_item_parent','0'),(150,63,'_menu_item_object_id','52'),(151,63,'_menu_item_object','page'),(152,63,'_menu_item_target',''),(153,63,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(154,63,'_menu_item_xfn',''),(155,63,'_menu_item_url',''),(156,64,'_menu_item_type','post_type'),(157,64,'_menu_item_menu_item_parent','0'),(158,64,'_menu_item_object_id','53'),(159,64,'_menu_item_object','page'),(160,64,'_menu_item_target',''),(161,64,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(162,64,'_menu_item_xfn',''),(163,64,'_menu_item_url',''),(166,48,'_edit_lock','1596470156:1'),(167,66,'_wp_attached_file','2020/05/Resized_20200427_174636.jpg'),(168,66,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:777;s:4:\"file\";s:35:\"2020/05/Resized_20200427_174636.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174636-300x146.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Resized_20200427_174636-1024x497.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:497;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174636-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174636-768x373.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"Resized_20200427_174636-1536x746.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:746;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:36:\"Resized_20200427_174636-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:36:\"Resized_20200427_174636-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:36:\"Resized_20200427_174636-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:36:\"Resized_20200427_174636-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174636-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174636-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174636-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174636-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174636-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174636-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174636-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174636-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174636-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174636-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174636-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:{}}}'),(169,70,'_wp_attached_file','2020/05/Resized_20200427_174150.jpg'),(170,70,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:524;s:6:\"height\";i:1079;s:4:\"file\";s:35:\"2020/05/Resized_20200427_174150.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174150-146x300.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Resized_20200427_174150-497x1024.jpg\";s:5:\"width\";i:497;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174150-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174150-524x380.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174150-524x760.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174150-524x285.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174150-524x456.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174150-524x570.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174150-524x285.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174150-524x380.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174150-524x342.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174150-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174150-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174150-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174150-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174150-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174150-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174150-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:{}}}'),(171,71,'_wp_attached_file','2020/05/Resized_20200427_174159.jpg'),(172,71,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:524;s:6:\"height\";i:1079;s:4:\"file\";s:35:\"2020/05/Resized_20200427_174159.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174159-146x300.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Resized_20200427_174159-497x1024.jpg\";s:5:\"width\";i:497;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174159-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174159-524x380.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174159-524x760.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174159-524x285.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174159-524x456.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174159-524x570.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174159-524x285.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174159-524x380.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174159-524x342.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174159-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174159-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174159-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174159-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174159-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174159-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174159-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:{}}}'),(173,72,'_wp_attached_file','2020/05/Resized_20200427_174206.jpg'),(174,72,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:524;s:6:\"height\";i:1079;s:4:\"file\";s:35:\"2020/05/Resized_20200427_174206.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174206-146x300.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Resized_20200427_174206-497x1024.jpg\";s:5:\"width\";i:497;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174206-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174206-524x380.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174206-524x760.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174206-524x285.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174206-524x456.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174206-524x570.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174206-524x285.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174206-524x380.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174206-524x342.jpg\";s:5:\"width\";i:524;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174206-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174206-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174206-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174206-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174206-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174206-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:35:\"Resized_20200427_174206-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:{}}}'),(175,50,'_edit_lock','1588960957:1'),(176,51,'_edit_lock','1588351307:1'),(177,53,'_edit_lock','1588354166:1'),(178,80,'_wp_attached_file','2020/05/51h7P69vWL._AC_SL1000_.jpg'),(179,80,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:732;s:6:\"height\";i:827;s:4:\"file\";s:34:\"2020/05/51h7P69vWL._AC_SL1000_.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"51h7P69vWL._AC_SL1000_-266x300.jpg\";s:5:\"width\";i:266;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"51h7P69vWL._AC_SL1000_-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:34:\"51h7P69vWL._AC_SL1000_-732x380.jpg\";s:5:\"width\";i:732;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:34:\"51h7P69vWL._AC_SL1000_-732x760.jpg\";s:5:\"width\";i:732;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:34:\"51h7P69vWL._AC_SL1000_-732x285.jpg\";s:5:\"width\";i:732;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:34:\"51h7P69vWL._AC_SL1000_-732x456.jpg\";s:5:\"width\";i:732;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:34:\"51h7P69vWL._AC_SL1000_-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:34:\"51h7P69vWL._AC_SL1000_-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:34:\"51h7P69vWL._AC_SL1000_-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:34:\"51h7P69vWL._AC_SL1000_-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:34:\"51h7P69vWL._AC_SL1000_-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:34:\"51h7P69vWL._AC_SL1000_-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:34:\"51h7P69vWL._AC_SL1000_-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:34:\"51h7P69vWL._AC_SL1000_-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:34:\"51h7P69vWL._AC_SL1000_-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:34:\"51h7P69vWL._AC_SL1000_-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:34:\"51h7P69vWL._AC_SL1000_-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:{}}}'),(180,81,'_wp_attached_file','2020/05/51l-ksW0cUL._AC_SL1000_.jpg'),(181,81,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:716;s:6:\"height\";i:835;s:4:\"file\";s:35:\"2020/05/51l-ksW0cUL._AC_SL1000_.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"51l-ksW0cUL._AC_SL1000_-257x300.jpg\";s:5:\"width\";i:257;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"51l-ksW0cUL._AC_SL1000_-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:35:\"51l-ksW0cUL._AC_SL1000_-716x380.jpg\";s:5:\"width\";i:716;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:35:\"51l-ksW0cUL._AC_SL1000_-716x760.jpg\";s:5:\"width\";i:716;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:35:\"51l-ksW0cUL._AC_SL1000_-716x285.jpg\";s:5:\"width\";i:716;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:35:\"51l-ksW0cUL._AC_SL1000_-716x456.jpg\";s:5:\"width\";i:716;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:35:\"51l-ksW0cUL._AC_SL1000_-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:35:\"51l-ksW0cUL._AC_SL1000_-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:35:\"51l-ksW0cUL._AC_SL1000_-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:35:\"51l-ksW0cUL._AC_SL1000_-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:35:\"51l-ksW0cUL._AC_SL1000_-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:35:\"51l-ksW0cUL._AC_SL1000_-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:35:\"51l-ksW0cUL._AC_SL1000_-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:35:\"51l-ksW0cUL._AC_SL1000_-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:35:\"51l-ksW0cUL._AC_SL1000_-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:35:\"51l-ksW0cUL._AC_SL1000_-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:35:\"51l-ksW0cUL._AC_SL1000_-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:{}}}'),(182,82,'_wp_attached_file','2020/05/81NMZl-QgvL._AC_SL1500_.jpg'),(183,82,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1157;s:4:\"file\";s:35:\"2020/05/81NMZl-QgvL._AC_SL1500_.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"81NMZl-QgvL._AC_SL1500_-300x231.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"81NMZl-QgvL._AC_SL1500_-1024x790.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:790;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"81NMZl-QgvL._AC_SL1500_-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"81NMZl-QgvL._AC_SL1500_-768x592.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:592;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:36:\"81NMZl-QgvL._AC_SL1500_-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:36:\"81NMZl-QgvL._AC_SL1500_-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:36:\"81NMZl-QgvL._AC_SL1500_-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:36:\"81NMZl-QgvL._AC_SL1500_-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:35:\"81NMZl-QgvL._AC_SL1500_-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:35:\"81NMZl-QgvL._AC_SL1500_-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:35:\"81NMZl-QgvL._AC_SL1500_-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:35:\"81NMZl-QgvL._AC_SL1500_-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:35:\"81NMZl-QgvL._AC_SL1500_-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:35:\"81NMZl-QgvL._AC_SL1500_-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:35:\"81NMZl-QgvL._AC_SL1500_-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:35:\"81NMZl-QgvL._AC_SL1500_-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:35:\"81NMZl-QgvL._AC_SL1500_-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:35:\"81NMZl-QgvL._AC_SL1500_-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:35:\"81NMZl-QgvL._AC_SL1500_-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:{}}}'),(184,83,'_wp_attached_file','2020/05/81NMZl-QgvL._AC_SL1500_-1.jpg'),(185,83,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1157;s:4:\"file\";s:37:\"2020/05/81NMZl-QgvL._AC_SL1500_-1.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"81NMZl-QgvL._AC_SL1500_-1-300x231.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"81NMZl-QgvL._AC_SL1500_-1-1024x790.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:790;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"81NMZl-QgvL._AC_SL1500_-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"81NMZl-QgvL._AC_SL1500_-1-768x592.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:592;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/3\";a:4:{s:4:\"file\";s:38:\"81NMZl-QgvL._AC_SL1500_-1-1140x380.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/3\";a:4:{s:4:\"file\";s:38:\"81NMZl-QgvL._AC_SL1500_-1-1140x760.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:760;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-1/4\";a:4:{s:4:\"file\";s:38:\"81NMZl-QgvL._AC_SL1500_-1-1140x285.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column1-2/5\";a:4:{s:4:\"file\";s:38:\"81NMZl-QgvL._AC_SL1500_-1-1140x456.jpg\";s:5:\"width\";i:1140;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/1\";a:4:{s:4:\"file\";s:37:\"81NMZl-QgvL._AC_SL1500_-1-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-1/2\";a:4:{s:4:\"file\";s:37:\"81NMZl-QgvL._AC_SL1500_-1-570x285.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-2/3\";a:4:{s:4:\"file\";s:37:\"81NMZl-QgvL._AC_SL1500_-1-570x380.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column2-3/5\";a:4:{s:4:\"file\";s:37:\"81NMZl-QgvL._AC_SL1500_-1-570x342.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/1\";a:4:{s:4:\"file\";s:37:\"81NMZl-QgvL._AC_SL1500_-1-380x380.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/2\";a:4:{s:4:\"file\";s:37:\"81NMZl-QgvL._AC_SL1500_-1-380x190.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-1/3\";a:4:{s:4:\"file\";s:37:\"81NMZl-QgvL._AC_SL1500_-1-380x127.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column3-2/3\";a:4:{s:4:\"file\";s:37:\"81NMZl-QgvL._AC_SL1500_-1-380x254.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/1\";a:4:{s:4:\"file\";s:37:\"81NMZl-QgvL._AC_SL1500_-1-285x285.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-1/2\";a:4:{s:4:\"file\";s:37:\"81NMZl-QgvL._AC_SL1500_-1-285x143.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"column4-2/3\";a:4:{s:4:\"file\";s:37:\"81NMZl-QgvL._AC_SL1500_-1-285x190.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:190;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:{}}}'),(186,85,'_wp_attached_file','2020/05/9f380865f7bad9d6ba9b8f841811e78d.mp4'),(187,85,'_wp_attachment_metadata','a:10:{s:7:\"bitrate\";i:900102;s:8:\"filesize\";i:1485863;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:13;s:16:\"length_formatted\";s:4:\"0:13\";s:5:\"width\";i:1800;s:6:\"height\";i:788;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:17:\"created_timestamp\";i:-2082844800;}'),(200,94,'_customize_changeset_uuid','3b775e79-a338-4fb7-8127-e0861a63d6cd'),(203,94,'_edit_lock','1596470244:1'),(204,94,'_thumbnail_id','12'),(205,94,'_wp_page_template','fullwidth-template.php'),(206,94,'_edit_last','1'),(207,94,'_hide_page_title',''),(208,94,'_hide_title_bar',''),(209,94,'_cover',''),(210,53,'_oembed_f0abb2cb5aaa415e5244332a133c2f11','<iframe title=\"ADT Command Panel - Smart Homes from Home Creations\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/DcUEgzmsmsE?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(211,53,'_oembed_time_f0abb2cb5aaa415e5244332a133c2f11','1588354165'),(212,53,'_edit_last','1'),(213,53,'_hide_page_title',''),(214,53,'_hide_title_bar',''),(215,53,'_cover',''),(216,52,'_edit_lock','1588354299:1'),(217,52,'_edit_last','1'),(218,52,'_hide_page_title',''),(219,52,'_hide_title_bar',''),(220,52,'_cover',''),(225,108,'_wp_attached_file','2020/05/CHICSOAPS-LOGO-512.jpg'),(226,108,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:432;s:4:\"file\";s:30:\"2020/05/CHICSOAPS-LOGO-512.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"CHICSOAPS-LOGO-512-300x253.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:253;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"CHICSOAPS-LOGO-512-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:28:\"CHICSOAPS-LOGO-512-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:30:\"CHICSOAPS-LOGO-512-512x335.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:335;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:\"1401866447\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(227,109,'_wp_attached_file','2020/05/logo-REV.png'),(228,109,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:759;s:6:\"height\";i:697;s:4:\"file\";s:20:\"2020/05/logo-REV.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"logo-REV-300x275.png\";s:5:\"width\";i:300;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"logo-REV-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:18:\"logo-REV-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:20:\"logo-REV-642x335.png\";s:5:\"width\";i:642;s:6:\"height\";i:335;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:{}}}'),(230,111,'_wp_attached_file','2020/05/logo-JPEG-scaled.jpg'),(231,111,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1991;s:4:\"file\";s:28:\"2020/05/logo-JPEG-scaled.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"logo-JPEG-300x233.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"logo-JPEG-1024x796.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:796;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"logo-JPEG-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"logo-JPEG-768x597.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:597;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"logo-JPEG-1536x1195.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:23:\"logo-JPEG-2048x1593.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1593;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:19:\"logo-JPEG-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:21:\"logo-JPEG-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;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:{}}s:14:\"original_image\";s:13:\"logo-JPEG.jpg\";}'),(232,112,'_wp_attached_file','2020/05/Logo-Transparent-PNG.png'),(233,112,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4500;s:6:\"height\";i:3500;s:4:\"file\";s:32:\"2020/05/Logo-Transparent-PNG.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Logo-Transparent-PNG-300x233.png\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Logo-Transparent-PNG-1024x796.png\";s:5:\"width\";i:1024;s:6:\"height\";i:796;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Logo-Transparent-PNG-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Logo-Transparent-PNG-768x597.png\";s:5:\"width\";i:768;s:6:\"height\";i:597;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:34:\"Logo-Transparent-PNG-1536x1195.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1195;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:34:\"Logo-Transparent-PNG-2048x1593.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1593;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:30:\"Logo-Transparent-PNG-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:32:\"Logo-Transparent-PNG-642x335.png\";s:5:\"width\";i:642;s:6:\"height\";i:335;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:{}}}'),(234,113,'_wp_attached_file','2020/05/sm-Logo-Transparent-PNG.png'),(235,113,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2324;s:6:\"height\";i:2526;s:4:\"file\";s:35:\"2020/05/sm-Logo-Transparent-PNG.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"sm-Logo-Transparent-PNG-276x300.png\";s:5:\"width\";i:276;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"sm-Logo-Transparent-PNG-942x1024.png\";s:5:\"width\";i:942;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"sm-Logo-Transparent-PNG-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"sm-Logo-Transparent-PNG-768x835.png\";s:5:\"width\";i:768;s:6:\"height\";i:835;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"sm-Logo-Transparent-PNG-1413x1536.png\";s:5:\"width\";i:1413;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:37:\"sm-Logo-Transparent-PNG-1884x2048.png\";s:5:\"width\";i:1884;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:33:\"sm-Logo-Transparent-PNG-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:35:\"sm-Logo-Transparent-PNG-642x335.png\";s:5:\"width\";i:642;s:6:\"height\";i:335;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:{}}}'),(238,116,'_wp_attached_file','2020/05/sm-Logo-Transparent-PNG-1.png'),(239,116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2324;s:6:\"height\";i:2526;s:4:\"file\";s:37:\"2020/05/sm-Logo-Transparent-PNG-1.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"sm-Logo-Transparent-PNG-1-276x300.png\";s:5:\"width\";i:276;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"sm-Logo-Transparent-PNG-1-942x1024.png\";s:5:\"width\";i:942;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"sm-Logo-Transparent-PNG-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"sm-Logo-Transparent-PNG-1-768x835.png\";s:5:\"width\";i:768;s:6:\"height\";i:835;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:39:\"sm-Logo-Transparent-PNG-1-1413x1536.png\";s:5:\"width\";i:1413;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:39:\"sm-Logo-Transparent-PNG-1-1884x2048.png\";s:5:\"width\";i:1884;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:35:\"sm-Logo-Transparent-PNG-1-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:37:\"sm-Logo-Transparent-PNG-1-642x335.png\";s:5:\"width\";i:642;s:6:\"height\";i:335;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:{}}}'),(240,121,'_edit_lock','1588609498:1'),(241,121,'_edit_last','1'),(242,121,'_hide_page_title',''),(243,121,'_hide_title_bar',''),(244,121,'_cover',''),(245,123,'_menu_item_type','post_type'),(246,123,'_menu_item_menu_item_parent','0'),(247,123,'_menu_item_object_id','121'),(248,123,'_menu_item_object','page'),(249,123,'_menu_item_target',''),(250,123,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(251,123,'_menu_item_xfn',''),(252,123,'_menu_item_url',''),(254,125,'_wp_attached_file','2020/05/IMG_20200321_174606-scaled.jpg'),(255,125,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200321_174606-scaled.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200321_174606-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200321_174606-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200321_174606-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200321_174606-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_174606-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_174606-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:29:\"IMG_20200321_174606-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200321_174606-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1584812768\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"5.58\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:8:\"0.000414\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200321_174606.jpg\";}'),(256,126,'_wp_attached_file','2020/05/IMG_20200321_174555-scaled.jpg'),(257,126,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200321_174555-scaled.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200321_174555-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200321_174555-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200321_174555-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200321_174555-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_174555-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_174555-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:29:\"IMG_20200321_174555-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200321_174555-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1584812758\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"5.58\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:8:\"0.000346\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200321_174555.jpg\";}'),(258,127,'_wp_attached_file','2020/05/IMG_20200321_174606-1-scaled.jpg'),(259,127,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:40:\"2020/05/IMG_20200321_174606-1-scaled.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_174606-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"IMG_20200321_174606-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_174606-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_174606-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"IMG_20200321_174606-1-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:35:\"IMG_20200321_174606-1-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:31:\"IMG_20200321_174606-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_174606-1-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1584812768\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"5.58\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:8:\"0.000414\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"IMG_20200321_174606-1.jpg\";}'),(260,128,'_wp_attached_file','2020/05/IMG_20200321_174621-1-scaled.jpg'),(261,128,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:40:\"2020/05/IMG_20200321_174621-1-scaled.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_174621-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"IMG_20200321_174621-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_174621-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_174621-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"IMG_20200321_174621-1-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:35:\"IMG_20200321_174621-1-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:31:\"IMG_20200321_174621-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_174621-1-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1584812782\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"5.58\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:8:\"0.000506\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"IMG_20200321_174621-1.jpg\";}'),(262,129,'_wp_attached_file','2020/05/IMG_20200321_175223-scaled.jpg'),(263,129,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200321_175223-scaled.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200321_175223-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200321_175223-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200321_175223-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200321_175223-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_175223-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_175223-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:29:\"IMG_20200321_175223-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200321_175223-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1584813145\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200321_175223.jpg\";}'),(264,130,'_wp_attached_file','woocommerce-placeholder.png'),(265,130,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:33:\"woocommerce-placeholder-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-642x335.png\";s:5:\"width\";i:642;s:6:\"height\";i:335;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:{}}}'),(330,142,'_wp_attached_file','2020/05/IMG_20200429_142925-3-scaled.jpg'),(267,94,'_elementor_template_type','wp-page'),(268,94,'_elementor_version','2.9.8'),(269,132,'_elementor_edit_mode','builder'),(270,132,'_elementor_template_type','kit'),(271,132,'_elementor_version','2.9.8'),(272,132,'_elementor_css','a:6:{s:4:\"time\";i:1588434241;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(298,136,'_elementor_edit_mode','builder'),(299,136,'_elementor_template_type','wp-page'),(300,136,'_elementor_version','2.9.8'),(301,136,'_elementor_data','[{\"id\":\"6e878ed7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7543885a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2a5f13f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><!-- wp:image {\\\"id\\\":12,\\\"width\\\":293,\\\"height\\\":220,\\\"sizeSlug\\\":\\\"large\\\"} --><\\/p>\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174621-1024x768.jpg\\\" alt=\\\"\\\" class=\\\"wp-image-12\\\" width=\\\"293\\\" height=\\\"220\\\" scale=\\\"0\\\"><\\/figure>\\n<p><!-- \\/wp:image --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>Laundry in both units<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:columns --><\\/p>\\n<div class=\\\"wp-block-columns\\\"><p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\"><p><!-- wp:image {\\\"id\\\":108,\\\"width\\\":171,\\\"height\\\":144,\\\"sizeSlug\\\":\\\"large\\\"} --><\\/p>\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><a href=\\\"https:\\/\\/www.chicsoaps.com\\\"><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/CHICSOAPS-LOGO-512.jpg\\\" alt=\\\"\\\" class=\\\"wp-image-108\\\" width=\\\"171\\\" height=\\\"144\\\" scale=\\\"0\\\"><\\/a><\\/figure>\\n<p><!-- \\/wp:image --><\\/p><\\/div>\\n<p><!-- \\/wp:column --><\\/p>\\n<p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\"><p><!-- wp:image {\\\"id\\\":109,\\\"width\\\":159,\\\"height\\\":145,\\\"sizeSlug\\\":\\\"large\\\"} --><\\/p>\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><a href=\\\"https:\\/\\/fitatfortyplus.com\\\"><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/logo-REV.png\\\" alt=\\\"\\\" class=\\\"wp-image-109\\\" width=\\\"159\\\" height=\\\"145\\\" scale=\\\"0\\\"><\\/a><\\/figure>\\n<p><!-- \\/wp:image --><\\/p><\\/div>\\n<p><!-- \\/wp:column --><\\/p>\\n<p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\"><p><!-- wp:image {\\\"id\\\":116,\\\"width\\\":134,\\\"height\\\":145,\\\"sizeSlug\\\":\\\"large\\\"} --><\\/p>\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><a href=\\\"https:\\/\\/classerly.com\\\"><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/sm-Logo-Transparent-PNG-1-942x1024.png\\\" alt=\\\"\\\" class=\\\"wp-image-116\\\" width=\\\"134\\\" height=\\\"145\\\" scale=\\\"0\\\"><\\/a><\\/figure>\\n<p><!-- \\/wp:image --><\\/p><\\/div>\\n<p><!-- \\/wp:column --><\\/p><\\/div>\\n<p><!-- \\/wp:columns --><\\/p>\\n<p><!-- wp:list --><\\/p>\\n<ul>\\n<li><strong>UPSTAIRS 3 bedroom $1995 all utilities included<\\/strong><\\/li>\\n<li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:<\\/strong><\\/li>\\n<\\/ul>\\n<p><!-- \\/wp:list --><\\/p>\\n<p><!-- wp:list --><\\/p>\\n<ul>\\n<li><em><span class=\\\"has-inline-color has-vivid-red-color\\\"><strong>UPSTAIRS Rooms 590 all utilities included<\\/strong> <\\/span><\\/em><\\/li>\\n<li><strong><em><span class=\\\"has-inline-color has-vivid-red-color\\\">BASEMENT Rooms 3 bedroom $500 all utilities included<\\/span><\\/em><\\/strong><\\/li>\\n<\\/ul>\\n<p><!-- \\/wp:list --><\\/p>\\n<p><!-- wp:list --><\\/p>\\n<ul>\\n<li>I purchased this home last year. I have redone:<\\/li>\\n<li>plumbing,<\\/li>\\n<li>electrical,<\\/li>\\n<li>furnace, air conditioner with smart thermostat<\\/li>\\n<li>walls,<\\/li>\\n<li>floors,<\\/li>\\n<li>lighting,<\\/li>\\n<li>bathrooms, kitchens,<\\/li>\\n<li>roof,<\\/li>\\n<li>siding,<\\/li>\\n<li>insulation.<\\/li>\\n<li>Exterior lighting.<\\/li>\\n<\\/ul>\\n<p><!-- \\/wp:list --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>The upstairs unit will be $1995 all utilities included.<br>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br>Because it is new the market you have the option of it being furnished or not.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>I am a great landlord and I will treat you as well as I have treated this property!<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:group --><\\/p>\\n<div class=\\\"wp-block-group\\\">\\n<div class=\\\"wp-block-group__inner-container\\\"><p><!-- wp:columns --><\\/p>\\n<div class=\\\"wp-block-columns\\\"><p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\"><\\/div>\\n<p><!-- \\/wp:column --><\\/p>\\n<p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\"><\\/div>\\n<p><!-- \\/wp:column --><\\/p>\\n<p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\"><br><\\/div><\\/div><\\/div><\\/div><div class=\\\"wp-block-group\\\"><div class=\\\"wp-block-group__inner-container\\\">\\n<p><!-- \\/wp:gallery --><\\/p><\\/div>\\n<\\/div>\\n<p><!-- \\/wp:group --><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d8b0bc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":128,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174621-1-scaled.jpg\"},{\"id\":81,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/51l-ksW0cUL._AC_SL1000_.jpg\"},{\"id\":72,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/Resized_20200427_174206.jpg\"},{\"id\":71,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/Resized_20200427_174159.jpg\"},{\"id\":70,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/Resized_20200427_174150.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_153357-scaled.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_152721-scaled.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143458-scaled.jpg\"},{\"id\":35,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143426-scaled.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143436-scaled.jpg\"},{\"id\":37,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143439-scaled.jpg\"},{\"id\":31,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143327-scaled.jpg\"},{\"id\":30,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143320-scaled.jpg\"},{\"id\":29,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143310-scaled.jpg\"},{\"id\":28,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143252-scaled.jpg\"},{\"id\":26,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143217-scaled.jpg\"},{\"id\":25,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143201-scaled.jpg\"},{\"id\":24,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143143-scaled.jpg\"},{\"id\":20,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_142925-scaled.jpg\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfb6503\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"56cffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e538d89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e3425e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6262e95\",\"elType\":\"widget\",\"settings\":{\"address\":\"374 curry avenue, Windsor, Ontario\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(279,94,'_elementor_data','[{\"id\":\"6e878ed7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7543885a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2a5f13f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<!-- wp:image {\\\"id\\\":12,\\\"width\\\":293,\\\"height\\\":220,\\\"sizeSlug\\\":\\\"large\\\"} -->\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174621-1024x768.jpg\\\" alt=\\\"\\\" class=\\\"wp-image-12\\\" width=\\\"293\\\" height=\\\"220\\\"\\/><\\/figure>\\n<!-- \\/wp:image -->\\n\\n<!-- wp:paragraph -->\\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>Laundry in both units<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:columns -->\\n<div class=\\\"wp-block-columns\\\"><!-- wp:column -->\\n<div class=\\\"wp-block-column\\\"><!-- wp:image {\\\"id\\\":108,\\\"width\\\":171,\\\"height\\\":144,\\\"sizeSlug\\\":\\\"large\\\"} -->\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><a href=\\\"https:\\/\\/www.chicsoaps.com\\\"><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/CHICSOAPS-LOGO-512.jpg\\\" alt=\\\"\\\" class=\\\"wp-image-108\\\" width=\\\"171\\\" height=\\\"144\\\"\\/><\\/a><\\/figure>\\n<!-- \\/wp:image --><\\/div>\\n<!-- \\/wp:column -->\\n\\n<!-- wp:column -->\\n<div class=\\\"wp-block-column\\\"><!-- wp:image {\\\"id\\\":109,\\\"width\\\":159,\\\"height\\\":145,\\\"sizeSlug\\\":\\\"large\\\"} -->\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><a href=\\\"https:\\/\\/fitatfortyplus.com\\\"><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/logo-REV.png\\\" alt=\\\"\\\" class=\\\"wp-image-109\\\" width=\\\"159\\\" height=\\\"145\\\"\\/><\\/a><\\/figure>\\n<!-- \\/wp:image --><\\/div>\\n<!-- \\/wp:column -->\\n\\n<!-- wp:column -->\\n<div class=\\\"wp-block-column\\\"><!-- wp:image {\\\"id\\\":116,\\\"width\\\":134,\\\"height\\\":145,\\\"sizeSlug\\\":\\\"large\\\"} -->\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><a href=\\\"https:\\/\\/classerly.com\\\"><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/sm-Logo-Transparent-PNG-1-942x1024.png\\\" alt=\\\"\\\" class=\\\"wp-image-116\\\" width=\\\"134\\\" height=\\\"145\\\"\\/><\\/a><\\/figure>\\n<!-- \\/wp:image --><\\/div>\\n<!-- \\/wp:column --><\\/div>\\n<!-- \\/wp:columns -->\\n\\n<!-- wp:list -->\\n<ul><li><strong>UPSTAIRS 3 bedroom $1995 all utilities included<\\/strong><\\/li><li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:<\\/strong><\\/li><\\/ul>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:list -->\\n<ul><li><em><span class=\\\"has-inline-color has-vivid-red-color\\\"><strong>UPSTAIRS Rooms 590 all utilities included<\\/strong> <\\/span><\\/em><\\/li><li><strong><em><span class=\\\"has-inline-color has-vivid-red-color\\\">BASEMENT Rooms 3 bedroom $500 all utilities included<\\/span><\\/em><\\/strong><\\/li><\\/ul>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:list -->\\n<ul><li>I purchased this home last year. I have redone:<\\/li><li>plumbing,<\\/li><li>electrical,<\\/li><li>furnace, air conditioner with smart thermostat<\\/li><li>walls,<\\/li><li>floors,<\\/li><li>lighting,<\\/li><li>bathrooms, kitchens,<\\/li><li>roof,<\\/li><li>siding,<\\/li><li>insulation.<\\/li><li>Exterior lighting.<\\/li><\\/ul>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:paragraph -->\\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>The upstairs unit will be $1995 all utilities included.<br>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br>Because it is new the market you have the option of it being furnished or not.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>I am a great landlord and I will treat you as well as I have treated this property!<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:group -->\\n<div class=\\\"wp-block-group\\\"><div class=\\\"wp-block-group__inner-container\\\"><!-- wp:columns -->\\n<div class=\\\"wp-block-columns\\\"><!-- wp:column -->\\n<div class=\\\"wp-block-column\\\"><\\/div>\\n<!-- \\/wp:column -->\\n\\n<!-- wp:column -->\\n<div class=\\\"wp-block-column\\\"><\\/div>\\n<!-- \\/wp:column -->\\n\\n<!-- wp:column -->\\n<div class=\\\"wp-block-column\\\"><\\/div>\\n<!-- \\/wp:column --><\\/div>\\n<!-- \\/wp:columns --><\\/div><\\/div>\\n<!-- \\/wp:group -->\\n\\n<!-- wp:group -->\\n<div class=\\\"wp-block-group\\\"><div class=\\\"wp-block-group__inner-container\\\"><!-- wp:gallery {\\\"ids\\\":[125,126,127,128,null]} -->\\n<figure class=\\\"wp-block-gallery columns-3 is-cropped\\\"><ul class=\\\"blocks-gallery-grid\\\"><li class=\\\"blocks-gallery-item\\\"><figure><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174606-1024x768.jpg\\\" alt=\\\"\\\" data-id=\\\"125\\\" data-link=\\\"https:\\/\\/374curry.com\\/homepage\\/img_20200321_174606\\/\\\" class=\\\"wp-image-125\\\"\\/><\\/figure><\\/li><li class=\\\"blocks-gallery-item\\\"><figure><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174555-1024x768.jpg\\\" alt=\\\"\\\" data-id=\\\"126\\\" data-full-url=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174555-scaled.jpg\\\" data-link=\\\"https:\\/\\/374curry.com\\/homepage\\/img_20200321_174555\\/\\\" class=\\\"wp-image-126\\\"\\/><\\/figure><\\/li><li class=\\\"blocks-gallery-item\\\"><figure><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174606-1-1024x768.jpg\\\" alt=\\\"\\\" data-id=\\\"127\\\" data-full-url=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174606-1-scaled.jpg\\\" data-link=\\\"https:\\/\\/374curry.com\\/homepage\\/img_20200321_174606-1\\/\\\" class=\\\"wp-image-127\\\"\\/><\\/figure><\\/li><li class=\\\"blocks-gallery-item\\\"><figure><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174621-1-1024x768.jpg\\\" alt=\\\"\\\" data-id=\\\"128\\\" data-full-url=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174621-1-scaled.jpg\\\" data-link=\\\"https:\\/\\/374curry.com\\/homepage\\/img_20200321_174621-1\\/\\\" class=\\\"wp-image-128\\\"\\/><\\/figure><\\/li><li class=\\\"blocks-gallery-item\\\"><figure><img src=\\\"blob:https:\\/\\/374curry.com\\/304f4b9c-bcf1-4f22-b701-d3b2f3cf7e0e\\\"\\/><\\/figure><\\/li><\\/ul><\\/figure>\\n<!-- \\/wp:gallery --><\\/div><\\/div>\\n<!-- \\/wp:group -->\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d8b0bc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":128,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174621-1-scaled.jpg\"},{\"id\":81,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/51l-ksW0cUL._AC_SL1000_.jpg\"},{\"id\":72,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/Resized_20200427_174206.jpg\"},{\"id\":71,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/Resized_20200427_174159.jpg\"},{\"id\":70,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/Resized_20200427_174150.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_153357-scaled.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_152721-scaled.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143458-scaled.jpg\"},{\"id\":35,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143426-scaled.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143436-scaled.jpg\"},{\"id\":37,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143439-scaled.jpg\"},{\"id\":31,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143327-scaled.jpg\"},{\"id\":30,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143320-scaled.jpg\"},{\"id\":29,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143310-scaled.jpg\"},{\"id\":28,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143252-scaled.jpg\"},{\"id\":26,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143217-scaled.jpg\"},{\"id\":25,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143201-scaled.jpg\"},{\"id\":24,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143143-scaled.jpg\"},{\"id\":20,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_142925-scaled.jpg\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfb6503\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"56cffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e538d89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e3425e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6262e95\",\"elType\":\"widget\",\"settings\":{\"address\":\"374 curry avenue, Windsor, Ontario\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(296,136,'_thumbnail_id','12'),(297,136,'_wp_page_template','fullwidth-template.php'),(280,134,'_thumbnail_id','12'),(281,134,'_wp_page_template','fullwidth-template.php'),(282,134,'_elementor_edit_mode','builder'),(283,134,'_elementor_template_type','wp-page'),(284,134,'_elementor_version','2.9.8'),(285,134,'_elementor_data','[{\"id\":\"6e878ed7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7543885a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2a5f13f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<!-- wp:image {\\\"id\\\":12,\\\"width\\\":293,\\\"height\\\":220,\\\"sizeSlug\\\":\\\"large\\\"} -->\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174621-1024x768.jpg\\\" alt=\\\"\\\" class=\\\"wp-image-12\\\" width=\\\"293\\\" height=\\\"220\\\"\\/><\\/figure>\\n<!-- \\/wp:image -->\\n\\n<!-- wp:paragraph -->\\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>Laundry in both units<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:columns -->\\n<div class=\\\"wp-block-columns\\\"><!-- wp:column -->\\n<div class=\\\"wp-block-column\\\"><!-- wp:image {\\\"id\\\":108,\\\"width\\\":171,\\\"height\\\":144,\\\"sizeSlug\\\":\\\"large\\\"} -->\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><a href=\\\"https:\\/\\/www.chicsoaps.com\\\"><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/CHICSOAPS-LOGO-512.jpg\\\" alt=\\\"\\\" class=\\\"wp-image-108\\\" width=\\\"171\\\" height=\\\"144\\\"\\/><\\/a><\\/figure>\\n<!-- \\/wp:image --><\\/div>\\n<!-- \\/wp:column -->\\n\\n<!-- wp:column -->\\n<div class=\\\"wp-block-column\\\"><!-- wp:image {\\\"id\\\":109,\\\"width\\\":159,\\\"height\\\":145,\\\"sizeSlug\\\":\\\"large\\\"} -->\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><a href=\\\"https:\\/\\/fitatfortyplus.com\\\"><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/logo-REV.png\\\" alt=\\\"\\\" class=\\\"wp-image-109\\\" width=\\\"159\\\" height=\\\"145\\\"\\/><\\/a><\\/figure>\\n<!-- \\/wp:image --><\\/div>\\n<!-- \\/wp:column -->\\n\\n<!-- wp:column -->\\n<div class=\\\"wp-block-column\\\"><!-- wp:image {\\\"id\\\":116,\\\"width\\\":134,\\\"height\\\":145,\\\"sizeSlug\\\":\\\"large\\\"} -->\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><a href=\\\"https:\\/\\/classerly.com\\\"><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/sm-Logo-Transparent-PNG-1-942x1024.png\\\" alt=\\\"\\\" class=\\\"wp-image-116\\\" width=\\\"134\\\" height=\\\"145\\\"\\/><\\/a><\\/figure>\\n<!-- \\/wp:image --><\\/div>\\n<!-- \\/wp:column --><\\/div>\\n<!-- \\/wp:columns -->\\n\\n<!-- wp:list -->\\n<ul><li><strong>UPSTAIRS 3 bedroom $1995 all utilities included<\\/strong><\\/li><li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:<\\/strong><\\/li><\\/ul>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:list -->\\n<ul><li><em><span class=\\\"has-inline-color has-vivid-red-color\\\"><strong>UPSTAIRS Rooms 590 all utilities included<\\/strong> <\\/span><\\/em><\\/li><li><strong><em><span class=\\\"has-inline-color has-vivid-red-color\\\">BASEMENT Rooms 3 bedroom $500 all utilities included<\\/span><\\/em><\\/strong><\\/li><\\/ul>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:list -->\\n<ul><li>I purchased this home last year. I have redone:<\\/li><li>plumbing,<\\/li><li>electrical,<\\/li><li>furnace, air conditioner with smart thermostat<\\/li><li>walls,<\\/li><li>floors,<\\/li><li>lighting,<\\/li><li>bathrooms, kitchens,<\\/li><li>roof,<\\/li><li>siding,<\\/li><li>insulation.<\\/li><li>Exterior lighting.<\\/li><\\/ul>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:paragraph -->\\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>The upstairs unit will be $1995 all utilities included.<br>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br>Because it is new the market you have the option of it being furnished or not.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>I am a great landlord and I will treat you as well as I have treated this property!<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:group -->\\n<div class=\\\"wp-block-group\\\"><div class=\\\"wp-block-group__inner-container\\\"><!-- wp:columns -->\\n<div class=\\\"wp-block-columns\\\"><!-- wp:column -->\\n<div class=\\\"wp-block-column\\\"><\\/div>\\n<!-- \\/wp:column -->\\n\\n<!-- wp:column -->\\n<div class=\\\"wp-block-column\\\"><\\/div>\\n<!-- \\/wp:column -->\\n\\n<!-- wp:column -->\\n<div class=\\\"wp-block-column\\\"><\\/div>\\n<!-- \\/wp:column --><\\/div>\\n<!-- \\/wp:columns --><\\/div><\\/div>\\n<!-- \\/wp:group -->\\n\\n<!-- wp:group -->\\n<div class=\\\"wp-block-group\\\"><div class=\\\"wp-block-group__inner-container\\\"><!-- wp:gallery {\\\"ids\\\":[125,126,127,128,null]} -->\\n<figure class=\\\"wp-block-gallery columns-3 is-cropped\\\"><ul class=\\\"blocks-gallery-grid\\\"><li class=\\\"blocks-gallery-item\\\"><figure><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174606-1024x768.jpg\\\" alt=\\\"\\\" data-id=\\\"125\\\" data-link=\\\"https:\\/\\/374curry.com\\/homepage\\/img_20200321_174606\\/\\\" class=\\\"wp-image-125\\\"\\/><\\/figure><\\/li><li class=\\\"blocks-gallery-item\\\"><figure><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174555-1024x768.jpg\\\" alt=\\\"\\\" data-id=\\\"126\\\" data-full-url=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174555-scaled.jpg\\\" data-link=\\\"https:\\/\\/374curry.com\\/homepage\\/img_20200321_174555\\/\\\" class=\\\"wp-image-126\\\"\\/><\\/figure><\\/li><li class=\\\"blocks-gallery-item\\\"><figure><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174606-1-1024x768.jpg\\\" alt=\\\"\\\" data-id=\\\"127\\\" data-full-url=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174606-1-scaled.jpg\\\" data-link=\\\"https:\\/\\/374curry.com\\/homepage\\/img_20200321_174606-1\\/\\\" class=\\\"wp-image-127\\\"\\/><\\/figure><\\/li><li class=\\\"blocks-gallery-item\\\"><figure><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174621-1-1024x768.jpg\\\" alt=\\\"\\\" data-id=\\\"128\\\" data-full-url=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174621-1-scaled.jpg\\\" data-link=\\\"https:\\/\\/374curry.com\\/homepage\\/img_20200321_174621-1\\/\\\" class=\\\"wp-image-128\\\"\\/><\\/figure><\\/li><li class=\\\"blocks-gallery-item\\\"><figure><img src=\\\"blob:https:\\/\\/374curry.com\\/304f4b9c-bcf1-4f22-b701-d3b2f3cf7e0e\\\"\\/><\\/figure><\\/li><\\/ul><\\/figure>\\n<!-- \\/wp:gallery --><\\/div><\\/div>\\n<!-- \\/wp:group -->\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d8b0bc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":128,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174621-1-scaled.jpg\"},{\"id\":81,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/51l-ksW0cUL._AC_SL1000_.jpg\"},{\"id\":72,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/Resized_20200427_174206.jpg\"},{\"id\":71,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/Resized_20200427_174159.jpg\"},{\"id\":70,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/Resized_20200427_174150.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_153357-scaled.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_152721-scaled.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143458-scaled.jpg\"},{\"id\":35,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143426-scaled.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143436-scaled.jpg\"},{\"id\":37,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143439-scaled.jpg\"},{\"id\":31,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143327-scaled.jpg\"},{\"id\":30,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143320-scaled.jpg\"},{\"id\":29,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143310-scaled.jpg\"},{\"id\":28,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143252-scaled.jpg\"},{\"id\":26,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143217-scaled.jpg\"},{\"id\":25,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143201-scaled.jpg\"},{\"id\":24,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143143-scaled.jpg\"},{\"id\":20,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_142925-scaled.jpg\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfb6503\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"56cffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e538d89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e3425e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6262e95\",\"elType\":\"widget\",\"settings\":{\"address\":\"374 curry avenue, Windsor, Ontario\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(288,135,'_thumbnail_id','12'),(289,135,'_wp_page_template','fullwidth-template.php'),(290,135,'_elementor_edit_mode','builder'),(291,135,'_elementor_template_type','wp-page'),(292,135,'_elementor_version','2.9.8'),(293,135,'_elementor_data','[{\"id\":\"6e878ed7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7543885a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2a5f13f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<!-- wp:image {\\\"id\\\":12,\\\"width\\\":293,\\\"height\\\":220,\\\"sizeSlug\\\":\\\"large\\\"} -->\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174621-1024x768.jpg\\\" alt=\\\"\\\" class=\\\"wp-image-12\\\" width=\\\"293\\\" height=\\\"220\\\"\\/><\\/figure>\\n<!-- \\/wp:image -->\\n\\n<!-- wp:paragraph -->\\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>Laundry in both units<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:columns -->\\n<div class=\\\"wp-block-columns\\\"><!-- wp:column -->\\n<div class=\\\"wp-block-column\\\"><!-- wp:image {\\\"id\\\":108,\\\"width\\\":171,\\\"height\\\":144,\\\"sizeSlug\\\":\\\"large\\\"} -->\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><a href=\\\"https:\\/\\/www.chicsoaps.com\\\"><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/CHICSOAPS-LOGO-512.jpg\\\" alt=\\\"\\\" class=\\\"wp-image-108\\\" width=\\\"171\\\" height=\\\"144\\\"\\/><\\/a><\\/figure>\\n<!-- \\/wp:image --><\\/div>\\n<!-- \\/wp:column -->\\n\\n<!-- wp:column -->\\n<div class=\\\"wp-block-column\\\"><!-- wp:image {\\\"id\\\":109,\\\"width\\\":159,\\\"height\\\":145,\\\"sizeSlug\\\":\\\"large\\\"} -->\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><a href=\\\"https:\\/\\/fitatfortyplus.com\\\"><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/logo-REV.png\\\" alt=\\\"\\\" class=\\\"wp-image-109\\\" width=\\\"159\\\" height=\\\"145\\\"\\/><\\/a><\\/figure>\\n<!-- \\/wp:image --><\\/div>\\n<!-- \\/wp:column -->\\n\\n<!-- wp:column -->\\n<div class=\\\"wp-block-column\\\"><!-- wp:image {\\\"id\\\":116,\\\"width\\\":134,\\\"height\\\":145,\\\"sizeSlug\\\":\\\"large\\\"} -->\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><a href=\\\"https:\\/\\/classerly.com\\\"><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/sm-Logo-Transparent-PNG-1-942x1024.png\\\" alt=\\\"\\\" class=\\\"wp-image-116\\\" width=\\\"134\\\" height=\\\"145\\\"\\/><\\/a><\\/figure>\\n<!-- \\/wp:image --><\\/div>\\n<!-- \\/wp:column --><\\/div>\\n<!-- \\/wp:columns -->\\n\\n<!-- wp:list -->\\n<ul><li><strong>UPSTAIRS 3 bedroom $1995 all utilities included<\\/strong><\\/li><li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:<\\/strong><\\/li><\\/ul>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:list -->\\n<ul><li><em><span class=\\\"has-inline-color has-vivid-red-color\\\"><strong>UPSTAIRS Rooms 590 all utilities included<\\/strong> <\\/span><\\/em><\\/li><li><strong><em><span class=\\\"has-inline-color has-vivid-red-color\\\">BASEMENT Rooms 3 bedroom $500 all utilities included<\\/span><\\/em><\\/strong><\\/li><\\/ul>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:list -->\\n<ul><li>I purchased this home last year. I have redone:<\\/li><li>plumbing,<\\/li><li>electrical,<\\/li><li>furnace, air conditioner with smart thermostat<\\/li><li>walls,<\\/li><li>floors,<\\/li><li>lighting,<\\/li><li>bathrooms, kitchens,<\\/li><li>roof,<\\/li><li>siding,<\\/li><li>insulation.<\\/li><li>Exterior lighting.<\\/li><\\/ul>\\n<!-- \\/wp:list -->\\n\\n<!-- wp:paragraph -->\\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>The upstairs unit will be $1995 all utilities included.<br>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br>Because it is new the market you have the option of it being furnished or not.<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:paragraph -->\\n<p>I am a great landlord and I will treat you as well as I have treated this property!<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:group -->\\n<div class=\\\"wp-block-group\\\"><div class=\\\"wp-block-group__inner-container\\\"><!-- wp:columns -->\\n<div class=\\\"wp-block-columns\\\"><!-- wp:column -->\\n<div class=\\\"wp-block-column\\\"><\\/div>\\n<!-- \\/wp:column -->\\n\\n<!-- wp:column -->\\n<div class=\\\"wp-block-column\\\"><\\/div>\\n<!-- \\/wp:column -->\\n\\n<!-- wp:column -->\\n<div class=\\\"wp-block-column\\\"><\\/div>\\n<!-- \\/wp:column --><\\/div>\\n<!-- \\/wp:columns --><\\/div><\\/div>\\n<!-- \\/wp:group -->\\n\\n<!-- wp:group -->\\n<div class=\\\"wp-block-group\\\"><div class=\\\"wp-block-group__inner-container\\\"><!-- wp:gallery {\\\"ids\\\":[125,126,127,128,null]} -->\\n<figure class=\\\"wp-block-gallery columns-3 is-cropped\\\"><ul class=\\\"blocks-gallery-grid\\\"><li class=\\\"blocks-gallery-item\\\"><figure><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174606-1024x768.jpg\\\" alt=\\\"\\\" data-id=\\\"125\\\" data-link=\\\"https:\\/\\/374curry.com\\/homepage\\/img_20200321_174606\\/\\\" class=\\\"wp-image-125\\\"\\/><\\/figure><\\/li><li class=\\\"blocks-gallery-item\\\"><figure><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174555-1024x768.jpg\\\" alt=\\\"\\\" data-id=\\\"126\\\" data-full-url=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174555-scaled.jpg\\\" data-link=\\\"https:\\/\\/374curry.com\\/homepage\\/img_20200321_174555\\/\\\" class=\\\"wp-image-126\\\"\\/><\\/figure><\\/li><li class=\\\"blocks-gallery-item\\\"><figure><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174606-1-1024x768.jpg\\\" alt=\\\"\\\" data-id=\\\"127\\\" data-full-url=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174606-1-scaled.jpg\\\" data-link=\\\"https:\\/\\/374curry.com\\/homepage\\/img_20200321_174606-1\\/\\\" class=\\\"wp-image-127\\\"\\/><\\/figure><\\/li><li class=\\\"blocks-gallery-item\\\"><figure><img src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174621-1-1024x768.jpg\\\" alt=\\\"\\\" data-id=\\\"128\\\" data-full-url=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174621-1-scaled.jpg\\\" data-link=\\\"https:\\/\\/374curry.com\\/homepage\\/img_20200321_174621-1\\/\\\" class=\\\"wp-image-128\\\"\\/><\\/figure><\\/li><li class=\\\"blocks-gallery-item\\\"><figure><img src=\\\"blob:https:\\/\\/374curry.com\\/304f4b9c-bcf1-4f22-b701-d3b2f3cf7e0e\\\"\\/><\\/figure><\\/li><\\/ul><\\/figure>\\n<!-- \\/wp:gallery --><\\/div><\\/div>\\n<!-- \\/wp:group -->\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d8b0bc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":128,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174621-1-scaled.jpg\"},{\"id\":81,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/51l-ksW0cUL._AC_SL1000_.jpg\"},{\"id\":72,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/Resized_20200427_174206.jpg\"},{\"id\":71,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/Resized_20200427_174159.jpg\"},{\"id\":70,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/Resized_20200427_174150.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_153357-scaled.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_152721-scaled.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143458-scaled.jpg\"},{\"id\":35,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143426-scaled.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143436-scaled.jpg\"},{\"id\":37,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143439-scaled.jpg\"},{\"id\":31,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143327-scaled.jpg\"},{\"id\":30,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143320-scaled.jpg\"},{\"id\":29,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143310-scaled.jpg\"},{\"id\":28,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143252-scaled.jpg\"},{\"id\":26,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143217-scaled.jpg\"},{\"id\":25,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143201-scaled.jpg\"},{\"id\":24,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143143-scaled.jpg\"},{\"id\":20,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_142925-scaled.jpg\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfb6503\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"56cffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e538d89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e3425e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6262e95\",\"elType\":\"widget\",\"settings\":{\"address\":\"374 curry avenue, Windsor, Ontario\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(294,135,'_elementor_controls_usage','a:5:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:1:{s:8:\"carousel\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:7:\"address\";i:1;}}}}}'),(295,135,'_elementor_css','a:6:{s:4:\"time\";i:1588434545;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(302,136,'_elementor_css','a:6:{s:4:\"time\";i:1588434545;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(304,137,'_thumbnail_id','12'),(305,137,'_wp_page_template','fullwidth-template.php'),(306,137,'_elementor_edit_mode','builder'),(307,137,'_elementor_template_type','wp-page'),(308,137,'_elementor_version','2.9.8'),(309,137,'_elementor_data','[{\"id\":\"6e878ed7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7543885a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2a5f13f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><!-- wp:image {\\\"id\\\":12,\\\"width\\\":293,\\\"height\\\":220,\\\"sizeSlug\\\":\\\"large\\\"} --><\\/p>\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><img class=\\\"wp-image-12\\\" src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174621-1024x768.jpg\\\" alt=\\\"\\\" width=\\\"293\\\" height=\\\"220\\\" \\/><\\/figure>\\n<p><!-- \\/wp:image --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>Laundry in both units<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:columns --><\\/p>\\n<div class=\\\"wp-block-columns\\\">\\n<p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\">\\n<p><!-- wp:image {\\\"id\\\":108,\\\"width\\\":171,\\\"height\\\":144,\\\"sizeSlug\\\":\\\"large\\\"} --><\\/p>\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><a href=\\\"https:\\/\\/www.chicsoaps.com\\\"><img class=\\\"wp-image-108\\\" src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/CHICSOAPS-LOGO-512.jpg\\\" alt=\\\"\\\" width=\\\"171\\\" height=\\\"144\\\" \\/><\\/a><\\/figure>\\n<p><!-- \\/wp:image --><\\/p>\\n<\\/div>\\n<p><!-- \\/wp:column --><\\/p>\\n<p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\">\\n<p><!-- wp:image {\\\"id\\\":109,\\\"width\\\":159,\\\"height\\\":145,\\\"sizeSlug\\\":\\\"large\\\"} --><\\/p>\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><a href=\\\"https:\\/\\/fitatfortyplus.com\\\"><img class=\\\"wp-image-109\\\" src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/logo-REV.png\\\" alt=\\\"\\\" width=\\\"159\\\" height=\\\"145\\\" \\/><\\/a><\\/figure>\\n<p><!-- \\/wp:image --><\\/p>\\n<\\/div>\\n<p><!-- \\/wp:column --><\\/p>\\n<p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\">\\n<p><!-- wp:image {\\\"id\\\":116,\\\"width\\\":134,\\\"height\\\":145,\\\"sizeSlug\\\":\\\"large\\\"} --><\\/p>\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><a href=\\\"https:\\/\\/classerly.com\\\"><img class=\\\"wp-image-116\\\" src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/sm-Logo-Transparent-PNG-1-942x1024.png\\\" alt=\\\"\\\" width=\\\"134\\\" height=\\\"145\\\" \\/><\\/a><\\/figure>\\n<p><!-- \\/wp:image --><\\/p>\\n<\\/div>\\n<p><!-- \\/wp:column --><\\/p>\\n<\\/div>\\n<p><!-- \\/wp:columns --><\\/p>\\n<p><!-- wp:list --><\\/p>\\n<ul>\\n<li><strong>UPSTAIRS 3 bedroom $1995 all utilities included<\\/strong><\\/li>\\n<li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:<\\/strong><\\/li>\\n<\\/ul>\\n<p><!-- \\/wp:list --><\\/p>\\n<p><!-- wp:list --><\\/p>\\n<ul>\\n<li><em><span class=\\\"has-inline-color has-vivid-red-color\\\"><strong>UPSTAIRS Rooms 590 all utilities included<\\/strong> <\\/span><\\/em><\\/li>\\n<li><strong><em><span class=\\\"has-inline-color has-vivid-red-color\\\">BASEMENT Rooms 3 bedroom $500 all utilities included<\\/span><\\/em><\\/strong><\\/li>\\n<\\/ul>\\n<p><!-- \\/wp:list --><\\/p>\\n<p><!-- wp:list --><\\/p>\\n<p>I purchased this home last year. I have redone:<\\/p>\\n<ul>\\n<li>plumbing,<\\/li>\\n<li>electrical,<\\/li>\\n<li>furnace, air conditioner with smart thermostat<\\/li>\\n<li>walls,<\\/li>\\n<li>floors,<\\/li>\\n<li>lighting,<\\/li>\\n<li>bathrooms, kitchens,<\\/li>\\n<li>roof,<\\/li>\\n<li>siding,<\\/li>\\n<li>insulation.<\\/li>\\n<li>Exterior lighting.<\\/li>\\n<\\/ul>\\n<p><!-- \\/wp:list --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br \\/>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br \\/>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br \\/>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>The upstairs unit will be $1995 all utilities included.<br \\/>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br \\/>Because it is new the market you have the option of it being furnished or not.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>I am a great landlord and I will treat you as well as I have treated this property!<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:group --><\\/p>\\n<div class=\\\"wp-block-group\\\">\\n<div class=\\\"wp-block-group__inner-container\\\">\\n<p><!-- wp:columns --><\\/p>\\n<div class=\\\"wp-block-columns\\\">\\n<p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\">\\u00a0<\\/div>\\n<p><!-- \\/wp:column --><\\/p>\\n<p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\">\\u00a0<\\/div>\\n<p><!-- \\/wp:column --><\\/p>\\n<p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\">\\u00a0<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<div class=\\\"wp-block-group\\\">\\n<div class=\\\"wp-block-group__inner-container\\\">\\n<p><!-- \\/wp:gallery --><\\/p>\\n<\\/div>\\n<\\/div>\\n<p><!-- \\/wp:group --><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d8b0bc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":128,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174621-1-scaled.jpg\"},{\"id\":81,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/51l-ksW0cUL._AC_SL1000_.jpg\"},{\"id\":72,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/Resized_20200427_174206.jpg\"},{\"id\":71,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/Resized_20200427_174159.jpg\"},{\"id\":70,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/Resized_20200427_174150.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_153357-scaled.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_152721-scaled.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143458-scaled.jpg\"},{\"id\":35,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143426-scaled.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143436-scaled.jpg\"},{\"id\":37,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143439-scaled.jpg\"},{\"id\":31,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143327-scaled.jpg\"},{\"id\":30,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143320-scaled.jpg\"},{\"id\":29,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143310-scaled.jpg\"},{\"id\":28,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143252-scaled.jpg\"},{\"id\":26,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143217-scaled.jpg\"},{\"id\":25,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143201-scaled.jpg\"},{\"id\":24,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143143-scaled.jpg\"},{\"id\":20,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_142925-scaled.jpg\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfb6503\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"56cffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e538d89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e3425e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6262e95\",\"elType\":\"widget\",\"settings\":{\"address\":\"374 curry avenue, Windsor, Ontario\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(310,94,'_elementor_controls_usage','a:5:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:1:{s:8:\"carousel\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:7:\"address\";i:1;}}}}}'),(329,94,'_elementor_css','a:6:{s:4:\"time\";i:1588434907;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(312,138,'_thumbnail_id','12'),(313,138,'_wp_page_template','fullwidth-template.php'),(314,138,'_elementor_edit_mode','builder'),(315,138,'_elementor_template_type','wp-page'),(316,138,'_elementor_version','2.9.8'),(317,138,'_elementor_data','[{\"id\":\"6e878ed7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7543885a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2a5f13f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><!-- wp:image {\\\"id\\\":12,\\\"width\\\":293,\\\"height\\\":220,\\\"sizeSlug\\\":\\\"large\\\"} --><\\/p>\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><img class=\\\"wp-image-12\\\" src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174621-1024x768.jpg\\\" alt=\\\"\\\" width=\\\"293\\\" height=\\\"220\\\" \\/><\\/figure>\\n<p><!-- \\/wp:image --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>Laundry in both units<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:columns --><\\/p>\\n<div class=\\\"wp-block-columns\\\">\\n<p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\">\\n<p><!-- wp:image {\\\"id\\\":108,\\\"width\\\":171,\\\"height\\\":144,\\\"sizeSlug\\\":\\\"large\\\"} --><\\/p>\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><a href=\\\"https:\\/\\/www.chicsoaps.com\\\"><img class=\\\"wp-image-108\\\" src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/CHICSOAPS-LOGO-512.jpg\\\" alt=\\\"\\\" width=\\\"171\\\" height=\\\"144\\\" \\/><\\/a><\\/figure>\\n<p><!-- \\/wp:image --><\\/p>\\n<\\/div>\\n<p><!-- \\/wp:column --><\\/p>\\n<p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\">\\n<p><!-- wp:image {\\\"id\\\":109,\\\"width\\\":159,\\\"height\\\":145,\\\"sizeSlug\\\":\\\"large\\\"} --><\\/p>\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><a href=\\\"https:\\/\\/fitatfortyplus.com\\\"><img class=\\\"wp-image-109\\\" src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/logo-REV.png\\\" alt=\\\"\\\" width=\\\"159\\\" height=\\\"145\\\" \\/><\\/a><\\/figure>\\n<p><!-- \\/wp:image --><\\/p>\\n<\\/div>\\n<p><!-- \\/wp:column --><\\/p>\\n<p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\">\\n<p><!-- wp:image {\\\"id\\\":116,\\\"width\\\":134,\\\"height\\\":145,\\\"sizeSlug\\\":\\\"large\\\"} --><\\/p>\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><a href=\\\"https:\\/\\/classerly.com\\\"><img class=\\\"wp-image-116\\\" src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/sm-Logo-Transparent-PNG-1-942x1024.png\\\" alt=\\\"\\\" width=\\\"134\\\" height=\\\"145\\\" \\/><\\/a><\\/figure>\\n<p><!-- \\/wp:image --><\\/p>\\n<\\/div>\\n<p><!-- \\/wp:column --><\\/p>\\n<\\/div>\\n<p><!-- \\/wp:columns --><\\/p>\\n<p><!-- wp:list --><\\/p>\\n<ul>\\n<li><strong>UPSTAIRS 3 bedroom $1995 all utilities included<\\/strong><\\/li>\\n<li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:<\\/strong><\\/li>\\n<\\/ul>\\n<p><!-- \\/wp:list --><\\/p>\\n<p><!-- wp:list --><\\/p>\\n<ul>\\n<li><em><span class=\\\"has-inline-color has-vivid-red-color\\\"><strong>UPSTAIRS Rooms 590 all utilities included<\\/strong> <\\/span><\\/em><\\/li>\\n<li><strong><em><span class=\\\"has-inline-color has-vivid-red-color\\\">BASEMENT Rooms 3 bedroom $500 all utilities included<\\/span><\\/em><\\/strong><\\/li>\\n<\\/ul>\\n<p><!-- \\/wp:list --><\\/p>\\n<p><!-- wp:list --><\\/p>\\n<p>I purchased this home last year. I have redone:<\\/p>\\n<ul>\\n<li>plumbing,<\\/li>\\n<li>electrical,<\\/li>\\n<li>furnace, air conditioner with smart thermostat<\\/li>\\n<li>walls,<\\/li>\\n<li>floors,<\\/li>\\n<li>lighting,<\\/li>\\n<li>bathrooms, kitchens,<\\/li>\\n<li>roof,<\\/li>\\n<li>siding,<\\/li>\\n<li>insulation.<\\/li>\\n<li>Exterior lighting.<\\/li>\\n<\\/ul>\\n<p><!-- \\/wp:list --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br \\/>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br \\/>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br \\/>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>The upstairs unit will be $1995 all utilities included.<br \\/>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br \\/>Because it is new the market you have the option of it being furnished or not.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>I am a great landlord and I will treat you as well as I have treated this property!<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:group --><\\/p>\\n<div class=\\\"wp-block-group\\\">\\n<div class=\\\"wp-block-group__inner-container\\\">\\n<p><!-- wp:columns --><\\/p>\\n<div class=\\\"wp-block-columns\\\">\\n<p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\">\\u00a0<\\/div>\\n<p><!-- \\/wp:column --><\\/p>\\n<p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\">\\u00a0<\\/div>\\n<p><!-- \\/wp:column --><\\/p>\\n<p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\">\\u00a0<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<div class=\\\"wp-block-group\\\">\\n<div class=\\\"wp-block-group__inner-container\\\">\\n<p><!-- \\/wp:gallery --><\\/p>\\n<\\/div>\\n<\\/div>\\n<p><!-- \\/wp:group --><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d8b0bc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":128,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174621-1-scaled.jpg\"},{\"id\":81,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/51l-ksW0cUL._AC_SL1000_.jpg\"},{\"id\":72,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/Resized_20200427_174206.jpg\"},{\"id\":71,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/Resized_20200427_174159.jpg\"},{\"id\":70,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/Resized_20200427_174150.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_153357-scaled.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_152721-scaled.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143458-scaled.jpg\"},{\"id\":35,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143426-scaled.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143436-scaled.jpg\"},{\"id\":37,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143439-scaled.jpg\"},{\"id\":31,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143327-scaled.jpg\"},{\"id\":30,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143320-scaled.jpg\"},{\"id\":29,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143310-scaled.jpg\"},{\"id\":28,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143252-scaled.jpg\"},{\"id\":26,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143217-scaled.jpg\"},{\"id\":25,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143201-scaled.jpg\"},{\"id\":24,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143143-scaled.jpg\"},{\"id\":20,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_142925-scaled.jpg\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfb6503\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"56cffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e538d89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e3425e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6262e95\",\"elType\":\"widget\",\"settings\":{\"address\":\"374 curry avenue, Windsor, Ontario\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(318,138,'_elementor_controls_usage','a:5:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:1:{s:8:\"carousel\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:7:\"address\";i:1;}}}}}'),(319,138,'_elementor_css','a:6:{s:4:\"time\";i:1588434739;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(320,139,'_thumbnail_id','12'),(321,139,'_wp_page_template','fullwidth-template.php'),(322,139,'_elementor_edit_mode','builder'),(323,139,'_elementor_template_type','wp-page'),(324,139,'_elementor_version','2.9.8'),(325,139,'_elementor_data','[{\"id\":\"6e878ed7\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7543885a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2a5f13f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><!-- wp:image {\\\"id\\\":12,\\\"width\\\":293,\\\"height\\\":220,\\\"sizeSlug\\\":\\\"large\\\"} --><\\/p>\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><img class=\\\"wp-image-12\\\" src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174621-1024x768.jpg\\\" alt=\\\"\\\" width=\\\"293\\\" height=\\\"220\\\" \\/><\\/figure>\\n<p><!-- \\/wp:image --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>Laundry in both units<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:columns --><\\/p>\\n<div class=\\\"wp-block-columns\\\">\\n<p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\">\\n<p><!-- wp:image {\\\"id\\\":108,\\\"width\\\":171,\\\"height\\\":144,\\\"sizeSlug\\\":\\\"large\\\"} --><\\/p>\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><a href=\\\"https:\\/\\/www.chicsoaps.com\\\"><img class=\\\"wp-image-108\\\" src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/CHICSOAPS-LOGO-512.jpg\\\" alt=\\\"\\\" width=\\\"171\\\" height=\\\"144\\\" \\/><\\/a><\\/figure>\\n<p><!-- \\/wp:image --><\\/p>\\n<\\/div>\\n<p><!-- \\/wp:column --><\\/p>\\n<p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\">\\n<p><!-- wp:image {\\\"id\\\":109,\\\"width\\\":159,\\\"height\\\":145,\\\"sizeSlug\\\":\\\"large\\\"} --><\\/p>\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><a href=\\\"https:\\/\\/fitatfortyplus.com\\\"><img class=\\\"wp-image-109\\\" src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/logo-REV.png\\\" alt=\\\"\\\" width=\\\"159\\\" height=\\\"145\\\" \\/><\\/a><\\/figure>\\n<p><!-- \\/wp:image --><\\/p>\\n<\\/div>\\n<p><!-- \\/wp:column --><\\/p>\\n<p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\">\\n<p><!-- wp:image {\\\"id\\\":116,\\\"width\\\":134,\\\"height\\\":145,\\\"sizeSlug\\\":\\\"large\\\"} --><\\/p>\\n<figure class=\\\"wp-block-image size-large is-resized\\\"><a href=\\\"https:\\/\\/classerly.com\\\"><img class=\\\"wp-image-116\\\" src=\\\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/sm-Logo-Transparent-PNG-1-942x1024.png\\\" alt=\\\"\\\" width=\\\"134\\\" height=\\\"145\\\" \\/><\\/a><\\/figure>\\n<p><!-- \\/wp:image --><\\/p>\\n<\\/div>\\n<p><!-- \\/wp:column --><\\/p>\\n<\\/div>\\n<p><!-- \\/wp:columns --><\\/p>\\n<p><!-- wp:list --><\\/p>\\n<ul>\\n<li><strong>UPSTAIRS 3 bedroom $1995 all utilities included<\\/strong><\\/li>\\n<li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:<\\/strong><\\/li>\\n<\\/ul>\\n<p><!-- \\/wp:list --><\\/p>\\n<p><!-- wp:list --><\\/p>\\n<ul>\\n<li><em><span class=\\\"has-inline-color has-vivid-red-color\\\"><strong>UPSTAIRS Rooms 590 all utilities included<\\/strong> <\\/span><\\/em><\\/li>\\n<li><strong><em><span class=\\\"has-inline-color has-vivid-red-color\\\">BASEMENT Rooms 3 bedroom $500 all utilities included<\\/span><\\/em><\\/strong><\\/li>\\n<\\/ul>\\n<p><!-- \\/wp:list --><\\/p>\\n<p><!-- wp:list --><\\/p>\\n<p>I purchased this home last year. I have redone:<\\/p>\\n<ul>\\n<li>plumbing,<\\/li>\\n<li>electrical,<\\/li>\\n<li>furnace, air conditioner with smart thermostat<\\/li>\\n<li>walls,<\\/li>\\n<li>floors,<\\/li>\\n<li>lighting,<\\/li>\\n<li>bathrooms, kitchens,<\\/li>\\n<li>roof,<\\/li>\\n<li>siding,<\\/li>\\n<li>insulation.<\\/li>\\n<li>Exterior lighting.<\\/li>\\n<\\/ul>\\n<p><!-- \\/wp:list --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br \\/>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br \\/>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br \\/>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>The upstairs unit will be $1995 all utilities included.<br \\/>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br \\/>Because it is new the market you have the option of it being furnished or not.<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:paragraph --><\\/p>\\n<p>I am a great landlord and I will treat you as well as I have treated this property!<\\/p>\\n<p><!-- \\/wp:paragraph --><\\/p>\\n<p><!-- wp:group --><\\/p>\\n<div class=\\\"wp-block-group\\\">\\n<div class=\\\"wp-block-group__inner-container\\\">\\n<p><!-- wp:columns --><\\/p>\\n<div class=\\\"wp-block-columns\\\">\\n<p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\">\\u00a0<\\/div>\\n<p><!-- \\/wp:column --><\\/p>\\n<p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\">\\u00a0<\\/div>\\n<p><!-- \\/wp:column --><\\/p>\\n<p><!-- wp:column --><\\/p>\\n<div class=\\\"wp-block-column\\\">\\u00a0<\\/div>\\n<\\/div>\\n<\\/div>\\n<\\/div>\\n<div class=\\\"wp-block-group\\\">\\n<div class=\\\"wp-block-group__inner-container\\\">\\n<p><!-- \\/wp:gallery --><\\/p>\\n<\\/div>\\n<\\/div>\\n<p><!-- \\/wp:group --><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d8b0bc\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":128,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200321_174621-1-scaled.jpg\"},{\"id\":81,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/51l-ksW0cUL._AC_SL1000_.jpg\"},{\"id\":72,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/Resized_20200427_174206.jpg\"},{\"id\":71,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/Resized_20200427_174159.jpg\"},{\"id\":70,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/Resized_20200427_174150.jpg\"},{\"id\":41,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_153357-scaled.jpg\"},{\"id\":40,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_152721-scaled.jpg\"},{\"id\":39,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143458-scaled.jpg\"},{\"id\":35,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143426-scaled.jpg\"},{\"id\":36,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143436-scaled.jpg\"},{\"id\":37,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143439-scaled.jpg\"},{\"id\":31,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143327-scaled.jpg\"},{\"id\":30,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143320-scaled.jpg\"},{\"id\":29,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143310-scaled.jpg\"},{\"id\":28,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143252-scaled.jpg\"},{\"id\":26,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143217-scaled.jpg\"},{\"id\":25,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143201-scaled.jpg\"},{\"id\":24,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_143143-scaled.jpg\"},{\"id\":20,\"url\":\"https:\\/\\/374curry.com\\/wp-content\\/uploads\\/2020\\/05\\/IMG_20200429_142925-scaled.jpg\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dfb6503\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"56cffc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"e538d89\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2e3425e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6262e95\",\"elType\":\"widget\",\"settings\":{\"address\":\"374 curry avenue, Windsor, Ontario\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(326,139,'_elementor_controls_usage','a:5:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:14:\"image-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:22:\"section_image_carousel\";a:1:{s:8:\"carousel\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:7:\"address\";i:1;}}}}}'),(327,139,'_elementor_css','a:6:{s:4:\"time\";i:1588434739;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(331,142,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:40:\"2020/05/IMG_20200429_142925-3-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"IMG_20200429_142925-3-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-3-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"IMG_20200429_142925-3-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:35:\"IMG_20200429_142925-3-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_142925-3-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-3-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"IMG_20200429_142925-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-3-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-3-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_142925-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170565\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"5.58\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"IMG_20200429_142925-3.jpg\";}'),(332,143,'_wp_attached_file','2020/05/IMG_20200429_143032-1-scaled.jpg'),(333,143,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:40:\"2020/05/IMG_20200429_143032-1-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143032-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"IMG_20200429_143032-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143032-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143032-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"IMG_20200429_143032-1-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:35:\"IMG_20200429_143032-1-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143032-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143032-1-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"IMG_20200429_143032-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143032-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143032-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143032-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143032-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143032-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170632\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"5.58\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"IMG_20200429_143032-1.jpg\";}'),(334,145,'_wp_attached_file','2020/05/IMG_20200429_143436-1-scaled.jpg'),(335,145,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:40:\"2020/05/IMG_20200429_143436-1-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143436-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"IMG_20200429_143436-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143436-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143436-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"IMG_20200429_143436-1-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:35:\"IMG_20200429_143436-1-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143436-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143436-1-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"IMG_20200429_143436-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143436-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143436-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143436-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143436-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143436-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170876\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:8:\"0.016667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"IMG_20200429_143436-1.jpg\";}'),(336,146,'_wp_attached_file','2020/05/IMG_20200429_143458-1-scaled.jpg'),(337,146,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:40:\"2020/05/IMG_20200429_143458-1-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143458-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"IMG_20200429_143458-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143458-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143458-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"IMG_20200429_143458-1-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:35:\"IMG_20200429_143458-1-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143458-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143458-1-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"IMG_20200429_143458-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143458-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143458-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143458-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143458-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143458-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170899\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:8:\"0.016667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"IMG_20200429_143458-1.jpg\";}'),(338,149,'wpuf_form_settings','a:48:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:7:\"page_id\";s:0:\"\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:12:\"Submit Query\";s:18:\"submit_button_cond\";a:3:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_logic\";s:3:\"any\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:0:\"\";s:8:\"operator\";s:1:\"=\";s:6:\"option\";s:0:\"\";}}}s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:39:\"Form submission hasn\'t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:3:\"100\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";s:13:\"use_theme_css\";s:10:\"wpuf-style\";s:9:\"quiz_form\";s:2:\"no\";s:22:\"shuffle_question_order\";s:2:\"no\";s:13:\"release_grade\";s:16:\"after_submission\";s:18:\"respondent_can_see\";a:3:{i:0;s:16:\"missed_questions\";i:1;s:15:\"correct_answers\";i:2;s:12:\"point_values\";}s:12:\"total_points\";i:0;s:16:\"enable_multistep\";b:0;s:26:\"multistep_progressbar_type\";s:11:\"progressive\";s:21:\"payment_paypal_images\";s:68:\"https://www.paypalobjects.com/webstatic/mktg/logo/AM_mc_vs_dc_ae.jpg\";s:20:\"payment_paypal_label\";s:6:\"PayPal\";s:20:\"payment_stripe_label\";s:11:\"Credit Card\";s:21:\"payment_stripe_images\";a:4:{i:0;s:4:\"visa\";i:1;s:10:\"mastercard\";i:2;s:4:\"amex\";i:3;s:8:\"discover\";}s:25:\"payment_stripe_deactivate\";s:0:\"\";s:11:\"stripe_mode\";s:4:\"live\";s:14:\"stripe_page_id\";s:0:\"\";s:20:\"stripe_override_keys\";s:0:\"\";s:12:\"stripe_email\";s:0:\"\";s:10:\"stripe_key\";s:0:\"\";s:17:\"stripe_secret_key\";s:0:\"\";s:15:\"stripe_key_test\";s:0:\"\";s:22:\"stripe_secret_key_test\";s:0:\"\";s:20:\"stripe_prefill_email\";s:0:\"\";s:23:\"stripe_user_email_field\";s:0:\"\";s:25:\"payment_paypal_deactivate\";s:0:\"\";s:11:\"paypal_mode\";s:4:\"live\";s:11:\"paypal_type\";s:5:\"_cart\";s:15:\"paypal_override\";s:0:\"\";s:12:\"paypal_email\";s:0:\"\";s:14:\"paypal_page_id\";s:0:\"\";s:20:\"paypal_prefill_email\";s:0:\"\";s:23:\"paypal_user_email_field\";s:0:\"\";}'),(339,149,'notifications','a:1:{i:0;a:14:{s:6:\"active\";s:4:\"true\";s:4:\"type\";s:5:\"email\";s:5:\"smsTo\";s:0:\"\";s:7:\"smsText\";s:45:\"[{form_name}] New Form Submission #{entry_id}\";s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:45:\"[{form_name}] New Form Submission #{entry_id}\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:13:\"{field:email}\";s:7:\"message\";s:12:\"{all_fields}\";s:8:\"fromName\";s:11:\"{site_name}\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"weforms_cond\";a:3:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_logic\";s:3:\"any\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:0:\"\";s:8:\"operator\";s:1:\"=\";s:6:\"option\";s:0:\"\";}}}}}'),(340,149,'integrations','a:0:{}'),(341,154,'wpuf_form_settings','a:48:{s:11:\"redirect_to\";s:4:\"same\";s:7:\"message\";s:64:\"Thanks for contacting us! We will get in touch with you shortly.\";s:7:\"page_id\";s:0:\"\";s:3:\"url\";s:0:\"\";s:11:\"submit_text\";s:12:\"Submit Query\";s:18:\"submit_button_cond\";O:8:\"stdClass\":3:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_logic\";s:3:\"any\";s:10:\"conditions\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"name\";s:0:\"\";s:8:\"operator\";s:1:\"=\";s:6:\"option\";s:0:\"\";}}}s:13:\"schedule_form\";s:5:\"false\";s:14:\"schedule_start\";s:0:\"\";s:12:\"schedule_end\";s:0:\"\";s:18:\"sc_pending_message\";s:39:\"Form submission hasn\'t been started yet\";s:18:\"sc_expired_message\";s:30:\"Form submission is now closed.\";s:13:\"require_login\";s:5:\"false\";s:17:\"req_login_message\";s:36:\"You need to login to submit a query.\";s:13:\"limit_entries\";s:5:\"false\";s:12:\"limit_number\";s:3:\"100\";s:13:\"limit_message\";s:57:\"Sorry, we have reached the maximum number of submissions.\";s:14:\"label_position\";s:5:\"above\";s:13:\"use_theme_css\";s:10:\"wpuf-style\";s:9:\"quiz_form\";s:2:\"no\";s:22:\"shuffle_question_order\";s:2:\"no\";s:13:\"release_grade\";s:16:\"after_submission\";s:18:\"respondent_can_see\";a:3:{i:0;s:16:\"missed_questions\";i:1;s:15:\"correct_answers\";i:2;s:12:\"point_values\";}s:12:\"total_points\";i:0;s:16:\"enable_multistep\";b:0;s:26:\"multistep_progressbar_type\";s:11:\"progressive\";s:21:\"payment_paypal_images\";s:68:\"https://www.paypalobjects.com/webstatic/mktg/logo/AM_mc_vs_dc_ae.jpg\";s:20:\"payment_paypal_label\";s:6:\"PayPal\";s:20:\"payment_stripe_label\";s:11:\"Credit Card\";s:21:\"payment_stripe_images\";a:4:{i:0;s:4:\"visa\";i:1;s:10:\"mastercard\";i:2;s:4:\"amex\";i:3;s:8:\"discover\";}s:25:\"payment_stripe_deactivate\";s:0:\"\";s:11:\"stripe_mode\";s:4:\"live\";s:14:\"stripe_page_id\";s:0:\"\";s:20:\"stripe_override_keys\";s:0:\"\";s:12:\"stripe_email\";s:0:\"\";s:10:\"stripe_key\";s:0:\"\";s:17:\"stripe_secret_key\";s:0:\"\";s:15:\"stripe_key_test\";s:0:\"\";s:22:\"stripe_secret_key_test\";s:0:\"\";s:20:\"stripe_prefill_email\";s:0:\"\";s:23:\"stripe_user_email_field\";s:0:\"\";s:25:\"payment_paypal_deactivate\";s:0:\"\";s:11:\"paypal_mode\";s:4:\"live\";s:11:\"paypal_type\";s:5:\"_cart\";s:15:\"paypal_override\";s:0:\"\";s:12:\"paypal_email\";s:0:\"\";s:14:\"paypal_page_id\";s:0:\"\";s:20:\"paypal_prefill_email\";s:0:\"\";s:23:\"paypal_user_email_field\";s:0:\"\";}'),(342,154,'notifications','a:1:{i:0;a:14:{s:6:\"active\";s:4:\"true\";s:4:\"type\";s:5:\"email\";s:5:\"smsTo\";s:0:\"\";s:7:\"smsText\";s:45:\"[{form_name}] New Form Submission #{entry_id}\";s:4:\"name\";s:18:\"Admin Notification\";s:7:\"subject\";s:45:\"[{form_name}] New Form Submission #{entry_id}\";s:2:\"to\";s:13:\"{admin_email}\";s:7:\"replyTo\";s:13:\"{field:email}\";s:7:\"message\";s:19:\"<p>{all_fields}</p>\";s:8:\"fromName\";s:11:\"{site_name}\";s:11:\"fromAddress\";s:13:\"{admin_email}\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:12:\"weforms_cond\";a:3:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_logic\";s:3:\"any\";s:10:\"conditions\";a:1:{i:0;a:3:{s:4:\"name\";s:0:\"\";s:8:\"operator\";s:1:\"=\";s:6:\"option\";s:0:\"\";}}}}}'),(343,154,'integrations','a:1:{s:5:\"slack\";O:8:\"stdClass\":2:{s:7:\"enabled\";b:0;s:3:\"url\";s:0:\"\";}}'),(344,149,'_weforms_view_count','5267'),(345,154,'_weforms_version','1.4.8'),(346,154,'_weforms_view_count','82'),(386,229,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:605;s:6:\"height\";i:807;s:4:\"file\";s:29:\"2020/07/20200429_143511sm.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"20200429_143511sm-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"20200429_143511sm-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:27:\"20200429_143511sm-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:29:\"20200429_143511sm-605x335.jpg\";s:5:\"width\";i:605;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"20200429_143511sm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"20200429_143511sm-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"20200429_143511sm-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"20200429_143511sm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"20200429_143511sm-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"20200429_143511sm-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G955W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170911\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(385,229,'_wp_attached_file','2020/07/20200429_143511sm.jpg'),(353,211,'_wp_attached_file','2020/05/IMG_20200506_205715-scaled.jpg'),(354,211,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200506_205715-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205715-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200506_205715-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205715-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205715-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200506_205715-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200506_205715-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:29:\"IMG_20200506_205715-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205715-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG_20200506_205715-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205715-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205715-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205715-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205715-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205715-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588798637\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:8:\"0.016667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200506_205715.jpg\";}'),(355,212,'_wp_attached_file','2020/05/IMG_20200506_205728-scaled.jpg'),(356,213,'_wp_attached_file','2020/05/Basement-Layout.png'),(357,213,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1194;s:6:\"height\";i:1691;s:4:\"file\";s:27:\"2020/05/Basement-Layout.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Basement-Layout-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Basement-Layout-723x1024.png\";s:5:\"width\";i:723;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Basement-Layout-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Basement-Layout-768x1088.png\";s:5:\"width\";i:768;s:6:\"height\";i:1088;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"Basement-Layout-1085x1536.png\";s:5:\"width\";i:1085;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:25:\"Basement-Layout-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:27:\"Basement-Layout-642x335.png\";s:5:\"width\";i:642;s:6:\"height\";i:335;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"Basement-Layout-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"Basement-Layout-600x850.png\";s:5:\"width\";i:600;s:6:\"height\";i:850;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"Basement-Layout-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"Basement-Layout-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"Basement-Layout-600x850.png\";s:5:\"width\";i:600;s:6:\"height\";i:850;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"Basement-Layout-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(358,212,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:38:\"2020/05/IMG_20200506_205728-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205728-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200506_205728-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205728-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"IMG_20200506_205728-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200506_205728-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200506_205728-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:29:\"IMG_20200506_205728-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205728-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG_20200506_205728-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205728-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205728-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205728-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205728-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205728-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588798651\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:8:\"0.016667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200506_205728.jpg\";}'),(359,214,'_wp_attached_file','2020/05/IMG_20200506_205758-scaled.jpg'),(360,214,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200506_205758-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205758-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200506_205758-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205758-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205758-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200506_205758-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200506_205758-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:29:\"IMG_20200506_205758-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205758-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG_20200506_205758-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205758-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205758-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205758-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205758-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205758-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588798681\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200506_205758.jpg\";}'),(361,215,'_wp_attached_file','2020/05/IMG_20200506_205815-scaled.jpg'),(362,215,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200506_205815-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205815-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200506_205815-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205815-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205815-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200506_205815-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200506_205815-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:29:\"IMG_20200506_205815-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205815-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG_20200506_205815-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205815-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205815-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205815-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205815-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205815-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588798697\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200506_205815.jpg\";}'),(363,216,'_wp_attached_file','2020/05/IMG_20200506_205832-scaled.jpg'),(364,216,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200506_205832-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205832-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200506_205832-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205832-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205832-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200506_205832-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200506_205832-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:29:\"IMG_20200506_205832-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205832-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG_20200506_205832-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205832-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205832-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205832-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205832-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205832-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588798714\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:8:\"0.016667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200506_205832.jpg\";}'),(365,217,'_wp_attached_file','2020/05/IMG_20200506_205840-scaled.jpg'),(366,217,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200506_205840-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205840-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200506_205840-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205840-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205840-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200506_205840-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200506_205840-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:29:\"IMG_20200506_205840-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205840-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG_20200506_205840-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205840-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205840-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205840-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205840-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_205840-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588798723\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200506_205840.jpg\";}'),(367,218,'_wp_attached_file','2020/05/IMG_20200506_210033-scaled.jpg'),(368,218,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200506_210033-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210033-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200506_210033-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210033-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210033-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200506_210033-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200506_210033-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:29:\"IMG_20200506_210033-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210033-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG_20200506_210033-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210033-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210033-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210033-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210033-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210033-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588798835\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200506_210033.jpg\";}'),(369,219,'_wp_attached_file','2020/05/IMG_20200506_210930-scaled.jpg'),(370,219,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:38:\"2020/05/IMG_20200506_210930-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210930-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200506_210930-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210930-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"IMG_20200506_210930-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200506_210930-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200506_210930-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:29:\"IMG_20200506_210930-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210930-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG_20200506_210930-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210930-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210930-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210930-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210930-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210930-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588799372\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200506_210930.jpg\";}'),(371,220,'_wp_attached_file','2020/05/IMG_20200506_210946-scaled.jpg'),(372,220,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:38:\"2020/05/IMG_20200506_210946-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210946-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200506_210946-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210946-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"IMG_20200506_210946-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200506_210946-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200506_210946-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:29:\"IMG_20200506_210946-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210946-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG_20200506_210946-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210946-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210946-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210946-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210946-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_210946-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588799389\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200506_210946.jpg\";}'),(373,221,'_wp_attached_file','2020/05/IMG_20200506_211006-scaled.jpg'),(374,221,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:38:\"2020/05/IMG_20200506_211006-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_211006-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200506_211006-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_211006-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_211006-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200506_211006-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200506_211006-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:29:\"IMG_20200506_211006-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_211006-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG_20200506_211006-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_211006-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_211006-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_211006-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_211006-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_211006-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588799410\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200506_211006.jpg\";}'),(375,222,'_wp_attached_file','2020/05/IMG_20200506_214337-scaled.jpg'),(376,222,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:38:\"2020/05/IMG_20200506_214337-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_214337-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"IMG_20200506_214337-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_214337-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"IMG_20200506_214337-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"IMG_20200506_214337-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"IMG_20200506_214337-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:29:\"IMG_20200506_214337-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_214337-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"IMG_20200506_214337-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_214337-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_214337-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_214337-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_214337-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"IMG_20200506_214337-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588801417\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"5.58\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:8:\"0.008333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"IMG_20200506_214337.jpg\";}'),(377,223,'_wp_attached_file','2020/05/Resized_20200507_155307.jpg'),(378,223,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:777;s:4:\"file\";s:35:\"2020/05/Resized_20200507_155307.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Resized_20200507_155307-300x146.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Resized_20200507_155307-1024x497.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:497;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Resized_20200507_155307-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"Resized_20200507_155307-768x373.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"Resized_20200507_155307-1536x746.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:746;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:33:\"Resized_20200507_155307-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:35:\"Resized_20200507_155307-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"Resized_20200507_155307-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"Resized_20200507_155307-600x291.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"Resized_20200507_155307-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"Resized_20200507_155307-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"Resized_20200507_155307-600x291.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"Resized_20200507_155307-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(379,224,'_wp_attached_file','2020/05/Basement-Layout-1.png'),(380,224,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1194;s:6:\"height\";i:1691;s:4:\"file\";s:29:\"2020/05/Basement-Layout-1.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Basement-Layout-1-212x300.png\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Basement-Layout-1-723x1024.png\";s:5:\"width\";i:723;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Basement-Layout-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Basement-Layout-1-768x1088.png\";s:5:\"width\";i:768;s:6:\"height\";i:1088;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"Basement-Layout-1-1085x1536.png\";s:5:\"width\";i:1085;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:27:\"Basement-Layout-1-50x50.png\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:29:\"Basement-Layout-1-642x335.png\";s:5:\"width\";i:642;s:6:\"height\";i:335;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"Basement-Layout-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"Basement-Layout-1-600x850.png\";s:5:\"width\";i:600;s:6:\"height\";i:850;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Basement-Layout-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"Basement-Layout-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"Basement-Layout-1-600x850.png\";s:5:\"width\";i:600;s:6:\"height\";i:850;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Basement-Layout-1-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(381,50,'_edit_last','1'),(382,50,'_hide_page_title',''),(383,50,'_hide_title_bar',''),(384,50,'_cover',''),(389,231,'_wp_attached_file','2020/07/20200625_232118sm.jpg'),(390,231,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:605;s:6:\"height\";i:807;s:4:\"file\";s:29:\"2020/07/20200625_232118sm.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"20200625_232118sm-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"20200625_232118sm-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:27:\"20200625_232118sm-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:29:\"20200625_232118sm-605x335.jpg\";s:5:\"width\";i:605;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"20200625_232118sm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"20200625_232118sm-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"20200625_232118sm-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"20200625_232118sm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"20200625_232118sm-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"20200625_232118sm-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G955W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1593127278\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";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:{}}}'),(391,233,'_wp_attached_file','2020/07/20200625_232047sm-1.jpg'),(392,233,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:605;s:6:\"height\";i:807;s:4:\"file\";s:31:\"2020/07/20200625_232047sm-1.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"20200625_232047sm-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"20200625_232047sm-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:29:\"20200625_232047sm-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:31:\"20200625_232047sm-1-605x335.jpg\";s:5:\"width\";i:605;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"20200625_232047sm-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"20200625_232047sm-1-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"20200625_232047sm-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"20200625_232047sm-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"20200625_232047sm-1-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"20200625_232047sm-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G955W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1593127247\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";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:{}}}'),(393,234,'_wp_attached_file','2020/07/20200506_211308sm.jpg'),(394,234,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:605;s:6:\"height\";i:807;s:4:\"file\";s:29:\"2020/07/20200506_211308sm.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"20200506_211308sm-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"20200506_211308sm-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:27:\"20200506_211308sm-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:29:\"20200506_211308sm-605x335.jpg\";s:5:\"width\";i:605;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"20200506_211308sm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"20200506_211308sm-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"20200506_211308sm-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"20200506_211308sm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"20200506_211308sm-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"20200506_211308sm-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G955W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588799588\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(395,235,'_wp_attached_file','2020/07/20200506_211326sm.jpg'),(396,235,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:605;s:6:\"height\";i:807;s:4:\"file\";s:29:\"2020/07/20200506_211326sm.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"20200506_211326sm-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"20200506_211326sm-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:27:\"20200506_211326sm-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:29:\"20200506_211326sm-605x335.jpg\";s:5:\"width\";i:605;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"20200506_211326sm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"20200506_211326sm-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"20200506_211326sm-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"20200506_211326sm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"20200506_211326sm-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"20200506_211326sm-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G955W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588799606\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(397,236,'_wp_attached_file','2020/07/IMG_20200321_174621sm.jpg'),(398,236,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:730;s:6:\"height\";i:548;s:4:\"file\";s:33:\"2020/07/IMG_20200321_174621sm.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_174621sm-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_174621sm-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:31:\"IMG_20200321_174621sm-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_174621sm-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"IMG_20200321_174621sm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_174621sm-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_174621sm-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_174621sm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_174621sm-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20200321_174621sm-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1584812782\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"5.58\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:8:\"0.000506\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(399,48,'_edit_last','1'),(400,48,'_hide_page_title',''),(401,48,'_hide_title_bar',''),(402,48,'_cover',''),(403,239,'_wp_attached_file','2020/07/IMG_20200429_143436sm.jpg'),(404,239,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:924;s:6:\"height\";i:693;s:4:\"file\";s:33:\"2020/07/IMG_20200429_143436sm.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143436sm-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143436sm-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143436sm-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:31:\"IMG_20200429_143436sm-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143436sm-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"IMG_20200429_143436sm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143436sm-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143436sm-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143436sm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143436sm-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"IMG_20200429_143436sm-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:7:\"LYA-L0C\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588170876\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.35\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:8:\"0.016667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(405,242,'_wp_attached_file','2020/08/20200506_211308-scaled.jpg'),(406,242,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2020/08/20200506_211308-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20200506_211308-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20200506_211308-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20200506_211308-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"20200506_211308-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20200506_211308-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20200506_211308-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:25:\"20200506_211308-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:27:\"20200506_211308-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"20200506_211308-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"20200506_211308-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"20200506_211308-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"20200506_211308-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"20200506_211308-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"20200506_211308-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G955W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588799588\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20200506_211308.jpg\";}'),(407,243,'_wp_attached_file','2020/08/20200506_211326-scaled.jpg'),(408,243,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2020/08/20200506_211326-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20200506_211326-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20200506_211326-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20200506_211326-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"20200506_211326-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20200506_211326-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20200506_211326-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:25:\"20200506_211326-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:27:\"20200506_211326-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"20200506_211326-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"20200506_211326-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"20200506_211326-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"20200506_211326-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"20200506_211326-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"20200506_211326-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G955W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588799606\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20200506_211326.jpg\";}'),(409,247,'_wp_attached_file','2020/08/20200731_141415-sm.jpg'),(410,247,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:605;s:6:\"height\";i:807;s:4:\"file\";s:30:\"2020/08/20200731_141415-sm.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"20200731_141415-sm-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"20200731_141415-sm-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:28:\"20200731_141415-sm-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:30:\"20200731_141415-sm-605x335.jpg\";s:5:\"width\";i:605;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"20200731_141415-sm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"20200731_141415-sm-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"20200731_141415-sm-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"20200731_141415-sm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"20200731_141415-sm-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"20200731_141415-sm-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G955W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1596204854\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(411,248,'_wp_attached_file','2020/08/20200731_141421-sm.jpg'),(412,248,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:605;s:6:\"height\";i:807;s:4:\"file\";s:30:\"2020/08/20200731_141421-sm.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"20200731_141421-sm-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"20200731_141421-sm-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:28:\"20200731_141421-sm-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:30:\"20200731_141421-sm-605x335.jpg\";s:5:\"width\";i:605;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"20200731_141421-sm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"20200731_141421-sm-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"20200731_141421-sm-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"20200731_141421-sm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"20200731_141421-sm-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"20200731_141421-sm-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G955W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1596204861\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(413,249,'_wp_attached_file','2020/08/20200731_141634-sm.jpg'),(414,249,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:605;s:6:\"height\";i:807;s:4:\"file\";s:30:\"2020/08/20200731_141634-sm.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"20200731_141634-sm-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"20200731_141634-sm-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:28:\"20200731_141634-sm-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:30:\"20200731_141634-sm-605x335.jpg\";s:5:\"width\";i:605;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"20200731_141634-sm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"20200731_141634-sm-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"20200731_141634-sm-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"20200731_141634-sm-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"20200731_141634-sm-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"20200731_141634-sm-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G955W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1596204994\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(415,250,'_wp_attached_file','2020/08/20200731_141611-scaled.jpg'),(416,250,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2020/08/20200731_141611-scaled.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20200731_141611-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20200731_141611-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20200731_141611-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"20200731_141611-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"20200731_141611-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"20200731_141611-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:25:\"20200731_141611-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:27:\"20200731_141611-642x335.jpg\";s:5:\"width\";i:642;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"20200731_141611-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"20200731_141611-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"20200731_141611-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"20200731_141611-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"20200731_141611-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"20200731_141611-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G955W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1596204971\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:18:\"0.0083333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"20200731_141611.jpg\";}'),(417,252,'_wp_attached_file','2020/08/20200731_141415-sm-1.jpg'),(418,252,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:605;s:6:\"height\";i:807;s:4:\"file\";s:32:\"2020/08/20200731_141415-sm-1.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"20200731_141415-sm-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"20200731_141415-sm-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:30:\"20200731_141415-sm-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:32:\"20200731_141415-sm-1-605x335.jpg\";s:5:\"width\";i:605;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"20200731_141415-sm-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"20200731_141415-sm-1-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"20200731_141415-sm-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"20200731_141415-sm-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"20200731_141415-sm-1-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"20200731_141415-sm-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G955W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1596204854\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(419,253,'_wp_attached_file','2020/08/20200731_141421-sm-1.jpg'),(420,253,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:605;s:6:\"height\";i:807;s:4:\"file\";s:32:\"2020/08/20200731_141421-sm-1.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"20200731_141421-sm-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"20200731_141421-sm-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:30:\"20200731_141421-sm-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:32:\"20200731_141421-sm-1-605x335.jpg\";s:5:\"width\";i:605;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"20200731_141421-sm-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"20200731_141421-sm-1-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"20200731_141421-sm-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"20200731_141421-sm-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"20200731_141421-sm-1-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"20200731_141421-sm-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G955W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1596204861\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(421,254,'_wp_attached_file','2020/08/20200731_141634-sm-1.jpg'),(422,254,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:605;s:6:\"height\";i:807;s:4:\"file\";s:32:\"2020/08/20200731_141634-sm-1.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"20200731_141634-sm-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"20200731_141634-sm-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"hotel_luxury_small_thumb\";a:4:{s:4:\"file\";s:30:\"20200731_141634-sm-1-50x50.jpg\";s:5:\"width\";i:50;s:6:\"height\";i:50;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"hotel_luxury_medium\";a:4:{s:4:\"file\";s:32:\"20200731_141634-sm-1-605x335.jpg\";s:5:\"width\";i:605;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"20200731_141634-sm-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"20200731_141634-sm-1-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"20200731_141634-sm-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"20200731_141634-sm-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"20200731_141634-sm-1-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"20200731_141634-sm-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G955W\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1596204994\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}');
/*!40000 ALTER TABLE `wpjg_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpjg_postmeta` with 333 row(s)
--

--
-- Table structure for table `wpjg_posts`
--

DROP TABLE IF EXISTS `wpjg_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=257 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_posts`
--

LOCK TABLES `wpjg_posts` WRITE;
/*!40000 ALTER TABLE `wpjg_posts` DISABLE KEYS */;
INSERT INTO `wpjg_posts` VALUES (1,1,'2020-05-01 15:29:58','2020-05-01 15:29:58','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2020-05-01 15:29:58','2020-05-01 15:29:58','',0,'https://374curry.com/?p=1',0,'post','',1),(2,1,'2020-05-01 15:29:58','2020-05-01 15:29:58','<!-- wp:paragraph -->\n<p>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:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>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&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>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.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://374curry.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2020-05-01 15:29:58','2020-05-01 15:29:58','',0,'https://374curry.com/?page_id=2',0,'page','',0),(3,1,'2020-05-01 15:29:58','2020-05-01 15:29:58','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: https://374curry.com.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2020-05-01 15:29:58','2020-05-01 15:29:58','',0,'https://374curry.com/?page_id=3',0,'page','',0),(252,1,'2020-08-03 15:58:31','2020-08-03 15:58:31','','20200731_141415-sm-1','','inherit','open','closed','','20200731_141415-sm-1','','','2020-08-03 15:58:31','2020-08-03 15:58:31','',94,'https://374curry.com/wp-content/uploads/2020/08/20200731_141415-sm-1.jpg',0,'attachment','image/jpeg',0),(253,1,'2020-08-03 15:58:44','2020-08-03 15:58:44','','20200731_141421-sm-1','','inherit','open','closed','','20200731_141421-sm-1','','','2020-08-03 15:58:44','2020-08-03 15:58:44','',94,'https://374curry.com/wp-content/uploads/2020/08/20200731_141421-sm-1.jpg',0,'attachment','image/jpeg',0),(254,1,'2020-08-03 15:58:52','2020-08-03 15:58:52','','20200731_141634-sm-1','','inherit','open','closed','','20200731_141634-sm-1','','','2020-08-03 15:58:52','2020-08-03 15:58:52','',94,'https://374curry.com/wp-content/uploads/2020/08/20200731_141634-sm-1.jpg',0,'attachment','image/jpeg',0),(255,1,'2020-08-03 15:58:57','2020-08-03 15:58:57','<!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" class=\"wp-image-12\" width=\"293\" height=\"220\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Laundry in both units</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":108,\"width\":171,\"height\":144,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://www.chicsoaps.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512.jpg\" alt=\"\" class=\"wp-image-108\" width=\"171\" height=\"144\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":109,\"width\":159,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://fitatfortyplus.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/logo-REV.png\" alt=\"\" class=\"wp-image-109\" width=\"159\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":116,\"width\":134,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://classerly.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG-1-942x1024.png\" alt=\"\" class=\"wp-image-116\" width=\"134\" height=\"145\"/></a></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:list -->\n<ul><li><strong><s>UPSTAIRS 3 bedroom $1995 all utilities included</s></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong><s>BASEMENT 3 bedroom $1450 all utilities included or by the room:</s></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><em><span class=\"has-inline-color has-vivid-red-color\"><strong>UPSTAIRS Rooms either $500 (small bedroom) or $595 (large bedroom) all utilities included</strong> </span></em>(one room left)</li><li><strong><em><span class=\"has-inline-color has-vivid-red-color\"><s>BASEMENT Rooms 3 bedroom $500 all utilities included</s></span></em></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>I purchased this home last year. I have redone:</li><li>plumbing,</li><li>electrical,</li><li>furnace, air conditioner with smart thermostat</li><li>walls,</li><li>floors,</li><li>lighting,</li><li>bathrooms, kitchens,</li><li>roof,</li><li>siding,</li><li>insulation.</li><li>Exterior lighting.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This home is a smart home with ecobee thermostat, wemo light switches, video doorbell, and has a google nest included.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a driveway with parking for one car in front of the garage and lots of street parking.<br><br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.<br>All utilities includes, water, electricity, hydro, alarm, tv and high speed internet will be included.<br>Because it is new the market you have the option of it being furnished or not.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[142,72,80,35,37],\"columns\":4} -->\n<figure class=\"wp-block-gallery columns-4 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-3-1024x768.jpg\" alt=\"\" data-id=\"142\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-3-scaled.jpg\" data-link=\"https://374curry.com/homepage/img_20200429_142925-3/\" class=\"wp-image-142\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174206-497x1024.jpg\" alt=\"\" data-id=\"72\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174206.jpg\" data-link=\"https://374curry.com/upstairs-unit/resized_20200427_174206/\" class=\"wp-image-72\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/51h7P69vWL._AC_SL1000_.jpg\" alt=\"\" data-id=\"80\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/51h7P69vWL._AC_SL1000_.jpg\" data-link=\"https://374curry.com/smart-home/51h7p69vwl-_ac_sl1000_/\" class=\"wp-image-80\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143426-1024x768.jpg\" alt=\"\" data-id=\"35\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143426-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143426/\" class=\"wp-image-35\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143439-1024x768.jpg\" alt=\"\" data-id=\"37\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143439-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143439/\" class=\"wp-image-37\"/></figure></li></ul></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:image {\"id\":229,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200429_143511sm.jpg\" alt=\"\" class=\"wp-image-229\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:gallery {\"ids\":[230,231]} -->\n<figure class=\"wp-block-gallery columns-2 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200625_232047sm.jpg\" alt=\"\" data-id=\"230\" data-link=\"https://374curry.com/homepage/20200625_232047sm/\" class=\"wp-image-230\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200625_232118sm.jpg\" alt=\"\" data-id=\"231\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/07/20200625_232118sm.jpg\" data-link=\"https://374curry.com/homepage/20200625_232118sm/\" class=\"wp-image-231\"/></figure></li></ul></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:image {\"id\":252,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/08/20200731_141415-sm-1.jpg\" alt=\"\" class=\"wp-image-252\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":253,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/08/20200731_141421-sm-1.jpg\" alt=\"\" class=\"wp-image-253\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":254,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/08/20200731_141634-sm-1.jpg\" alt=\"\" class=\"wp-image-254\"/></figure>\n<!-- /wp:image -->','374 Curry Avenue- Smart Home','','inherit','closed','closed','','94-revision-v1','','','2020-08-03 15:58:57','2020-08-03 15:58:57','',94,'https://374curry.com/2020/08/03/94-revision-v1/',0,'revision','',0),(247,1,'2020-08-03 15:54:37','2020-08-03 15:54:37','','20200731_141415-sm','','inherit','open','closed','','20200731_141415-sm','','','2020-08-03 15:54:37','2020-08-03 15:54:37','',48,'https://374curry.com/wp-content/uploads/2020/08/20200731_141415-sm.jpg',0,'attachment','image/jpeg',0),(248,1,'2020-08-03 15:54:50','2020-08-03 15:54:50','','20200731_141421-sm','','inherit','open','closed','','20200731_141421-sm','','','2020-08-03 15:54:50','2020-08-03 15:54:50','',48,'https://374curry.com/wp-content/uploads/2020/08/20200731_141421-sm.jpg',0,'attachment','image/jpeg',0),(249,1,'2020-08-03 15:55:28','2020-08-03 15:55:28','','20200731_141634-sm','','inherit','open','closed','','20200731_141634-sm','','','2020-08-03 15:55:28','2020-08-03 15:55:28','',48,'https://374curry.com/wp-content/uploads/2020/08/20200731_141634-sm.jpg',0,'attachment','image/jpeg',0),(250,1,'2020-08-03 15:55:37','2020-08-03 15:55:37','','20200731_141611','','inherit','open','closed','','20200731_141611','','','2020-08-03 15:55:37','2020-08-03 15:55:37','',48,'https://374curry.com/wp-content/uploads/2020/08/20200731_141611.jpg',0,'attachment','image/jpeg',0),(251,1,'2020-08-03 15:55:49','2020-08-03 15:55:49','<!-- wp:image {\"id\":233,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200625_232047sm-1.jpg\" alt=\"\" class=\"wp-image-233\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":231,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200625_232118sm.jpg\" alt=\"\" class=\"wp-image-231\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":239,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/IMG_20200429_143436sm.jpg\" alt=\"\" class=\"wp-image-239\"/><figcaption>Bedroom</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":229,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200429_143511sm.jpg\" alt=\"\" class=\"wp-image-229\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":236,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/IMG_20200321_174621sm.jpg\" alt=\"\" class=\"wp-image-236\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":247,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/08/20200731_141415-sm.jpg\" alt=\"\" class=\"wp-image-247\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":248,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/08/20200731_141421-sm.jpg\" alt=\"\" class=\"wp-image-248\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":250,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/08/20200731_141611-768x1024.jpg\" alt=\"\" class=\"wp-image-250\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":249,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/08/20200731_141634-sm.jpg\" alt=\"\" class=\"wp-image-249\"/></figure>\n<!-- /wp:image -->','Upstairs Unit','','inherit','closed','closed','','48-revision-v1','','','2020-08-03 15:55:49','2020-08-03 15:55:49','',48,'https://374curry.com/2020/08/03/48-revision-v1/',0,'revision','',0),(12,1,'2020-05-01 15:41:44','2020-05-01 15:41:44','','IMG_20200321_174621','','inherit','open','closed','','img_20200321_174621','','','2020-05-01 15:41:44','2020-05-01 15:41:44','',0,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621.jpg',0,'attachment','image/jpeg',0),(13,1,'2020-05-01 15:42:22','2020-05-01 15:42:22','','cropped-IMG_20200321_174621-scaled-1.jpg','','inherit','open','closed','','cropped-img_20200321_174621-scaled-1-jpg','','','2020-05-01 15:42:22','2020-05-01 15:42:22','',0,'https://374curry.com/wp-content/uploads/2020/05/cropped-IMG_20200321_174621-scaled-1.jpg',0,'attachment','image/jpeg',0),(15,1,'2020-05-01 15:50:14','2020-05-01 15:50:14','','cropped-IMG_20200321_174621-scaled-2.jpg','','inherit','open','closed','','cropped-img_20200321_174621-scaled-2-jpg','','','2020-05-01 15:50:14','2020-05-01 15:50:14','',0,'https://374curry.com/wp-content/uploads/2020/05/cropped-IMG_20200321_174621-scaled-2.jpg',0,'attachment','image/jpeg',0),(244,1,'2020-08-03 05:12:39','2020-08-03 05:12:39','<!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" class=\"wp-image-12\" width=\"293\" height=\"220\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Laundry in both units</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":108,\"width\":171,\"height\":144,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://www.chicsoaps.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512.jpg\" alt=\"\" class=\"wp-image-108\" width=\"171\" height=\"144\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":109,\"width\":159,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://fitatfortyplus.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/logo-REV.png\" alt=\"\" class=\"wp-image-109\" width=\"159\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":116,\"width\":134,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://classerly.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG-1-942x1024.png\" alt=\"\" class=\"wp-image-116\" width=\"134\" height=\"145\"/></a></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:list -->\n<ul><li><strong><s>UPSTAIRS 3 bedroom $1995 all utilities included</s></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong><s>BASEMENT 3 bedroom $1450 all utilities included or by the room:</s></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><em><span class=\"has-inline-color has-vivid-red-color\"><strong>UPSTAIRS Rooms either $500 (small bedroom) or $595 (large bedroom) all utilities included</strong> </span></em>(one room left)</li><li><strong><em><span class=\"has-inline-color has-vivid-red-color\"><s>BASEMENT Rooms 3 bedroom $500 all utilities included</s></span></em></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>I purchased this home last year. I have redone:</li><li>plumbing,</li><li>electrical,</li><li>furnace, air conditioner with smart thermostat</li><li>walls,</li><li>floors,</li><li>lighting,</li><li>bathrooms, kitchens,</li><li>roof,</li><li>siding,</li><li>insulation.</li><li>Exterior lighting.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This home is a smart home with ecobee thermostat, wemo light switches, video doorbell, and has a google nest included.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a driveway with parking for one car in front of the garage and lots of street parking.<br><br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.<br>All utilities includes, water, electricity, hydro, alarm, tv and high speed internet will be included.<br>Because it is new the market you have the option of it being furnished or not.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[142,72,80,35,37],\"columns\":4} -->\n<figure class=\"wp-block-gallery columns-4 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-3-1024x768.jpg\" alt=\"\" data-id=\"142\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-3-scaled.jpg\" data-link=\"https://374curry.com/homepage/img_20200429_142925-3/\" class=\"wp-image-142\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174206-497x1024.jpg\" alt=\"\" data-id=\"72\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174206.jpg\" data-link=\"https://374curry.com/upstairs-unit/resized_20200427_174206/\" class=\"wp-image-72\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/51h7P69vWL._AC_SL1000_.jpg\" alt=\"\" data-id=\"80\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/51h7P69vWL._AC_SL1000_.jpg\" data-link=\"https://374curry.com/smart-home/51h7p69vwl-_ac_sl1000_/\" class=\"wp-image-80\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143426-1024x768.jpg\" alt=\"\" data-id=\"35\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143426-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143426/\" class=\"wp-image-35\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143439-1024x768.jpg\" alt=\"\" data-id=\"37\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143439-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143439/\" class=\"wp-image-37\"/></figure></li></ul></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:image {\"id\":229,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200429_143511sm.jpg\" alt=\"\" class=\"wp-image-229\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:gallery {\"ids\":[230,231]} -->\n<figure class=\"wp-block-gallery columns-2 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200625_232047sm.jpg\" alt=\"\" data-id=\"230\" data-link=\"https://374curry.com/homepage/20200625_232047sm/\" class=\"wp-image-230\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200625_232118sm.jpg\" alt=\"\" data-id=\"231\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/07/20200625_232118sm.jpg\" data-link=\"https://374curry.com/homepage/20200625_232118sm/\" class=\"wp-image-231\"/></figure></li></ul></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:image {\"id\":242,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/08/20200506_211308-768x1024.jpg\" alt=\"\" class=\"wp-image-242\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":243,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/08/20200506_211326-768x1024.jpg\" alt=\"\" class=\"wp-image-243\"/></figure>\n<!-- /wp:image -->','374 Curry Avenue- Smart Home','','inherit','closed','closed','','94-revision-v1','','','2020-08-03 05:12:39','2020-08-03 05:12:39','',94,'https://374curry.com/2020/08/03/94-revision-v1/',0,'revision','',0),(243,1,'2020-08-03 05:12:11','2020-08-03 05:12:11','','20200506_211326','','inherit','open','closed','','20200506_211326','','','2020-08-03 05:12:11','2020-08-03 05:12:11','',94,'https://374curry.com/wp-content/uploads/2020/08/20200506_211326.jpg',0,'attachment','image/jpeg',0),(242,1,'2020-08-03 05:11:50','2020-08-03 05:11:50','','20200506_211308','','inherit','open','closed','','20200506_211308','','','2020-08-03 05:11:50','2020-08-03 05:11:50','',94,'https://374curry.com/wp-content/uploads/2020/08/20200506_211308.jpg',0,'attachment','image/jpeg',0),(20,1,'2020-05-01 16:01:59','2020-05-01 16:01:59','','IMG_20200429_142925','','inherit','open','closed','','img_20200429_142925','','','2020-05-01 16:01:59','2020-05-01 16:01:59','',0,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925.jpg',0,'attachment','image/jpeg',0),(21,1,'2020-05-01 16:02:22','2020-05-01 16:02:22','','IMG_20200429_142925','','inherit','open','closed','','img_20200429_142925-2','','','2020-05-01 16:02:22','2020-05-01 16:02:22','',0,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-1.jpg',0,'attachment','image/jpeg',0),(22,1,'2020-05-01 16:02:39','2020-05-01 16:02:39','','IMG_20200429_142958','','inherit','open','closed','','img_20200429_142958','','','2020-05-01 16:02:39','2020-05-01 16:02:39','',0,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142958.jpg',0,'attachment','image/jpeg',0),(23,1,'2020-05-01 16:02:53','2020-05-01 16:02:53','','IMG_20200429_143032','','inherit','open','closed','','img_20200429_143032','','','2020-05-01 16:02:53','2020-05-01 16:02:53','',0,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143032.jpg',0,'attachment','image/jpeg',0),(24,1,'2020-05-01 16:03:08','2020-05-01 16:03:08','','IMG_20200429_143143','','inherit','open','closed','','img_20200429_143143','','','2020-05-01 16:03:08','2020-05-01 16:03:08','',0,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143143.jpg',0,'attachment','image/jpeg',0),(25,1,'2020-05-01 16:03:23','2020-05-01 16:03:23','','IMG_20200429_143201','','inherit','open','closed','','img_20200429_143201','','','2020-05-01 16:03:23','2020-05-01 16:03:23','',0,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143201.jpg',0,'attachment','image/jpeg',0),(26,1,'2020-05-01 16:03:39','2020-05-01 16:03:39','','IMG_20200429_143217','Basement Separate Entrance','inherit','open','closed','','img_20200429_143217','','','2020-05-01 16:42:21','2020-05-01 16:42:21','',0,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143217.jpg',0,'attachment','image/jpeg',0),(27,1,'2020-05-01 16:03:55','2020-05-01 16:03:55','','IMG_20200429_143234','Basement Laundry Room','inherit','open','closed','','img_20200429_143234','','','2020-05-01 16:42:09','2020-05-01 16:42:09','',0,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143234.jpg',0,'attachment','image/jpeg',0),(28,1,'2020-05-01 16:04:07','2020-05-01 16:04:07','','IMG_20200429_143252','Basement Bathroom','inherit','open','closed','','img_20200429_143252','','','2020-05-01 16:41:59','2020-05-01 16:41:59','',0,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143252.jpg',0,'attachment','image/jpeg',0),(29,1,'2020-05-01 16:04:23','2020-05-01 16:04:23','','IMG_20200429_143310','Basement Kitchen','inherit','open','closed','','img_20200429_143310','','','2020-05-01 16:41:52','2020-05-01 16:41:52','',0,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143310.jpg',0,'attachment','image/jpeg',0),(30,1,'2020-05-01 16:04:39','2020-05-01 16:04:39','','IMG_20200429_143320','Basement LLiving Room','inherit','open','closed','','img_20200429_143320','','','2020-05-01 16:41:46','2020-05-01 16:41:46','',0,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143320.jpg',0,'attachment','image/jpeg',0),(31,1,'2020-05-01 16:04:57','2020-05-01 16:04:57','','IMG_20200429_143327','Basement Bedroom and Living Room (bedroom door not yet installed)','inherit','open','closed','','img_20200429_143327','','','2020-05-01 16:41:37','2020-05-01 16:41:37','',0,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143327.jpg',0,'attachment','image/jpeg',0),(32,1,'2020-05-01 16:05:31','2020-05-01 16:05:31','','IMG_20200429_143334','Basement Bedroom','inherit','open','closed','','img_20200429_143334','','','2020-05-01 16:41:02','2020-05-01 16:41:02','',0,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143334.jpg',0,'attachment','image/jpeg',0),(33,1,'2020-05-01 16:05:52','2020-05-01 16:05:52','','IMG_20200429_143340','Basement Bedroom','inherit','open','closed','','img_20200429_143340','','','2020-05-01 16:40:54','2020-05-01 16:40:54','',0,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143340.jpg',0,'attachment','image/jpeg',0),(34,1,'2020-05-01 16:06:10','2020-05-01 16:06:10','','IMG_20200429_143352','Basement Kitchen','inherit','open','closed','','img_20200429_143352','','','2020-05-01 16:40:40','2020-05-01 16:40:40','',0,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143352.jpg',0,'attachment','image/jpeg',0),(35,1,'2020-05-01 16:06:30','2020-05-01 16:06:30','','IMG_20200429_143426','','inherit','open','closed','','img_20200429_143426','','','2020-05-01 16:06:30','2020-05-01 16:06:30','',0,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143426.jpg',0,'attachment','image/jpeg',0),(36,1,'2020-05-01 16:06:53','2020-05-01 16:06:53','','IMG_20200429_143436','','inherit','open','closed','','img_20200429_143436','','','2020-05-01 16:06:53','2020-05-01 16:06:53','',0,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143436.jpg',0,'attachment','image/jpeg',0),(37,1,'2020-05-01 16:07:12','2020-05-01 16:07:12','','IMG_20200429_143439','','inherit','open','closed','','img_20200429_143439','','','2020-05-01 16:07:12','2020-05-01 16:07:12','',0,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143439.jpg',0,'attachment','image/jpeg',0),(38,1,'2020-05-01 16:07:39','2020-05-01 16:07:39','','IMG_20200429_143448','','inherit','open','closed','','img_20200429_143448','','','2020-05-01 16:07:39','2020-05-01 16:07:39','',0,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143448.jpg',0,'attachment','image/jpeg',0),(39,1,'2020-05-01 16:08:10','2020-05-01 16:08:10','','IMG_20200429_143458','','inherit','open','closed','','img_20200429_143458','','','2020-05-01 16:08:10','2020-05-01 16:08:10','',0,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143458.jpg',0,'attachment','image/jpeg',0),(40,1,'2020-05-01 16:08:36','2020-05-01 16:08:36','','IMG_20200429_152721','','inherit','open','closed','','img_20200429_152721','','','2020-05-01 16:08:36','2020-05-01 16:08:36','',0,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_152721.jpg',0,'attachment','image/jpeg',0),(41,1,'2020-05-01 16:08:54','2020-05-01 16:08:54','','IMG_20200429_153357','','inherit','open','closed','','img_20200429_153357','','','2020-05-01 16:08:54','2020-05-01 16:08:54','',0,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_153357.jpg',0,'attachment','image/jpeg',0),(46,1,'2020-05-01 16:24:05','2020-05-01 16:24:05','','cropped-IMG_20200321_174621-scaled-4.jpg','','inherit','closed','closed','','cropped-img_20200321_174621-scaled-3-jpg','','','2020-05-01 16:24:05','2020-05-01 16:24:05','',0,'https://374curry.com/wp-content/uploads/2020/05/cropped-IMG_20200321_174621-scaled-3.jpg',0,'attachment','image/jpeg',0),(48,1,'2020-05-01 16:31:00','2020-05-01 16:31:00','<!-- wp:image {\"id\":233,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200625_232047sm-1.jpg\" alt=\"\" class=\"wp-image-233\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":231,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200625_232118sm.jpg\" alt=\"\" class=\"wp-image-231\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":239,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/IMG_20200429_143436sm.jpg\" alt=\"\" class=\"wp-image-239\"/><figcaption>Bedroom</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":229,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200429_143511sm.jpg\" alt=\"\" class=\"wp-image-229\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":236,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/IMG_20200321_174621sm.jpg\" alt=\"\" class=\"wp-image-236\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":247,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/08/20200731_141415-sm.jpg\" alt=\"\" class=\"wp-image-247\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":248,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/08/20200731_141421-sm.jpg\" alt=\"\" class=\"wp-image-248\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":250,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/08/20200731_141611-768x1024.jpg\" alt=\"\" class=\"wp-image-250\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":249,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/08/20200731_141634-sm.jpg\" alt=\"\" class=\"wp-image-249\"/></figure>\n<!-- /wp:image -->','Upstairs Unit','','publish','closed','closed','','upstairs-unit','','','2020-08-03 15:55:54','2020-08-03 15:55:54','',0,'https://374curry.com/?page_id=48',0,'page','',0),(237,1,'2020-07-27 03:07:36','2020-07-27 03:07:36','<!-- wp:image {\"id\":233,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200625_232047sm-1.jpg\" alt=\"\" class=\"wp-image-233\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":231,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200625_232118sm.jpg\" alt=\"\" class=\"wp-image-231\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":229,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200429_143511sm.jpg\" alt=\"\" class=\"wp-image-229\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":234,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200506_211308sm.jpg\" alt=\"\" class=\"wp-image-234\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":235,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200506_211326sm.jpg\" alt=\"\" class=\"wp-image-235\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":236,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/IMG_20200321_174621sm.jpg\" alt=\"\" class=\"wp-image-236\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Upstairs Unit','','inherit','closed','closed','','48-revision-v1','','','2020-07-27 03:07:36','2020-07-27 03:07:36','',48,'https://374curry.com/2020/07/27/48-revision-v1/',0,'revision','',0),(241,1,'2020-08-03 05:07:10','2020-08-03 05:07:10','<!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" class=\"wp-image-12\" width=\"293\" height=\"220\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Laundry in both units</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":108,\"width\":171,\"height\":144,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://www.chicsoaps.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512.jpg\" alt=\"\" class=\"wp-image-108\" width=\"171\" height=\"144\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":109,\"width\":159,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://fitatfortyplus.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/logo-REV.png\" alt=\"\" class=\"wp-image-109\" width=\"159\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":116,\"width\":134,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://classerly.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG-1-942x1024.png\" alt=\"\" class=\"wp-image-116\" width=\"134\" height=\"145\"/></a></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:list -->\n<ul><li><strong><s>UPSTAIRS 3 bedroom $1995 all utilities included</s></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong><s>BASEMENT 3 bedroom $1450 all utilities included or by the room:</s></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><em><span class=\"has-inline-color has-vivid-red-color\"><strong>UPSTAIRS Rooms either $500 (small bedroom) or $595 (large bedroom) all utilities included</strong> </span></em>(one room left)</li><li><strong><em><span class=\"has-inline-color has-vivid-red-color\"><s>BASEMENT Rooms 3 bedroom $500 all utilities included</s></span></em></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>I purchased this home last year. I have redone:</li><li>plumbing,</li><li>electrical,</li><li>furnace, air conditioner with smart thermostat</li><li>walls,</li><li>floors,</li><li>lighting,</li><li>bathrooms, kitchens,</li><li>roof,</li><li>siding,</li><li>insulation.</li><li>Exterior lighting.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a driveway with parking for one car in front of the garage and lots of street parking.<br><br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.<br>All utilities includes, water, electricity, hydro, alarm, tv and high speed internet will be included.<br>Because it is new the market you have the option of it being furnished or not.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[142,72,80,35,37],\"columns\":4} -->\n<figure class=\"wp-block-gallery columns-4 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-3-1024x768.jpg\" alt=\"\" data-id=\"142\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-3-scaled.jpg\" data-link=\"https://374curry.com/homepage/img_20200429_142925-3/\" class=\"wp-image-142\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174206-497x1024.jpg\" alt=\"\" data-id=\"72\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174206.jpg\" data-link=\"https://374curry.com/upstairs-unit/resized_20200427_174206/\" class=\"wp-image-72\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/51h7P69vWL._AC_SL1000_.jpg\" alt=\"\" data-id=\"80\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/51h7P69vWL._AC_SL1000_.jpg\" data-link=\"https://374curry.com/smart-home/51h7p69vwl-_ac_sl1000_/\" class=\"wp-image-80\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143426-1024x768.jpg\" alt=\"\" data-id=\"35\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143426-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143426/\" class=\"wp-image-35\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143439-1024x768.jpg\" alt=\"\" data-id=\"37\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143439-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143439/\" class=\"wp-image-37\"/></figure></li></ul></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:image {\"id\":229,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200429_143511sm.jpg\" alt=\"\" class=\"wp-image-229\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:gallery {\"ids\":[230,231]} -->\n<figure class=\"wp-block-gallery columns-2 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200625_232047sm.jpg\" alt=\"\" data-id=\"230\" data-link=\"https://374curry.com/homepage/20200625_232047sm/\" class=\"wp-image-230\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200625_232118sm.jpg\" alt=\"\" data-id=\"231\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/07/20200625_232118sm.jpg\" data-link=\"https://374curry.com/homepage/20200625_232118sm/\" class=\"wp-image-231\"/></figure></li></ul></figure>\n<!-- /wp:gallery -->','374 Curry Avenue','','inherit','closed','closed','','94-revision-v1','','','2020-08-03 05:07:10','2020-08-03 05:07:10','',94,'https://374curry.com/2020/08/03/94-revision-v1/',0,'revision','',0),(232,1,'2020-07-27 03:02:45','2020-07-27 03:02:45','<!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" class=\"wp-image-12\" width=\"293\" height=\"220\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Laundry in both units</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":108,\"width\":171,\"height\":144,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://www.chicsoaps.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512.jpg\" alt=\"\" class=\"wp-image-108\" width=\"171\" height=\"144\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":109,\"width\":159,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://fitatfortyplus.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/logo-REV.png\" alt=\"\" class=\"wp-image-109\" width=\"159\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":116,\"width\":134,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://classerly.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG-1-942x1024.png\" alt=\"\" class=\"wp-image-116\" width=\"134\" height=\"145\"/></a></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:list -->\n<ul><li><strong><s>UPSTAIRS 3 bedroom $1995 all utilities included</s></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong><s>BASEMENT 3 bedroom $1450 all utilities included or by the room:</s></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><em><span class=\"has-inline-color has-vivid-red-color\"><strong>UPSTAIRS Rooms 595 all utilities included</strong> </span></em>(one room left)</li><li><strong><em><span class=\"has-inline-color has-vivid-red-color\"><s>BASEMENT Rooms 3 bedroom $500 all utilities included</s></span></em></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>I purchased this home last year. I have redone:</li><li>plumbing,</li><li>electrical,</li><li>furnace, air conditioner with smart thermostat</li><li>walls,</li><li>floors,</li><li>lighting,</li><li>bathrooms, kitchens,</li><li>roof,</li><li>siding,</li><li>insulation.</li><li>Exterior lighting.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.<br>All utilities includes, water, electricity, hydro, alarm, tv and high speed internet will be included.<br>Because it is new the market you have the option of it being furnished or not.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[142,72,80,35,37],\"columns\":4} -->\n<figure class=\"wp-block-gallery columns-4 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-3-1024x768.jpg\" alt=\"\" data-id=\"142\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-3-scaled.jpg\" data-link=\"https://374curry.com/homepage/img_20200429_142925-3/\" class=\"wp-image-142\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174206-497x1024.jpg\" alt=\"\" data-id=\"72\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174206.jpg\" data-link=\"https://374curry.com/upstairs-unit/resized_20200427_174206/\" class=\"wp-image-72\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/51h7P69vWL._AC_SL1000_.jpg\" alt=\"\" data-id=\"80\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/51h7P69vWL._AC_SL1000_.jpg\" data-link=\"https://374curry.com/smart-home/51h7p69vwl-_ac_sl1000_/\" class=\"wp-image-80\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143426-1024x768.jpg\" alt=\"\" data-id=\"35\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143426-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143426/\" class=\"wp-image-35\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143439-1024x768.jpg\" alt=\"\" data-id=\"37\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143439-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143439/\" class=\"wp-image-37\"/></figure></li></ul></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:image {\"id\":229,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200429_143511sm.jpg\" alt=\"\" class=\"wp-image-229\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:gallery {\"ids\":[230,231]} -->\n<figure class=\"wp-block-gallery columns-2 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200625_232047sm.jpg\" alt=\"\" data-id=\"230\" data-link=\"https://374curry.com/homepage/20200625_232047sm/\" class=\"wp-image-230\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200625_232118sm.jpg\" alt=\"\" data-id=\"231\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/07/20200625_232118sm.jpg\" data-link=\"https://374curry.com/homepage/20200625_232118sm/\" class=\"wp-image-231\"/></figure></li></ul></figure>\n<!-- /wp:gallery -->','374 Curry Avenue','','inherit','closed','closed','','94-revision-v1','','','2020-07-27 03:02:45','2020-07-27 03:02:45','',94,'https://374curry.com/2020/07/27/94-revision-v1/',0,'revision','',0),(50,1,'2020-05-01 16:31:00','2020-05-01 16:31:00','<!-- wp:image {\"id\":224,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://i0.wp.com/374curry.com/wp-content/uploads/2020/05/Basement-Layout-1.png?fit=640%2C906&amp;ssl=1\" alt=\"\" class=\"wp-image-224\"/><figcaption>Layout</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":30,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143320-1024x768.jpg\" alt=\"\" class=\"wp-image-30\"/><figcaption>Basement Living Room</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:gallery {\"ids\":[\"30\",\"28\",\"27\",\"26\",222,211,212,214,215,216,217,218,219,220,221,223]} -->\n<figure class=\"wp-block-gallery columns-3 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143320-1024x768.jpg\" alt=\"\" data-id=\"30\" data-link=\"https://374curry.com/img_20200429_143320/\" class=\"wp-image-30\"/><figcaption class=\"blocks-gallery-item__caption\">Basement Living Room</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143252-768x1024.jpg\" alt=\"\" data-id=\"28\" data-link=\"https://374curry.com/img_20200429_143252/\" class=\"wp-image-28\"/><figcaption class=\"blocks-gallery-item__caption\">Basement Bathroom</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143234-768x1024.jpg\" alt=\"\" data-id=\"27\" data-link=\"https://374curry.com/img_20200429_143234/\" class=\"wp-image-27\"/><figcaption class=\"blocks-gallery-item__caption\">Basement Laundry Room</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143217-1024x768.jpg\" alt=\"\" data-id=\"26\" data-link=\"https://374curry.com/img_20200429_143217/\" class=\"wp-image-26\"/><figcaption class=\"blocks-gallery-item__caption\">Basement Separate Entrance</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i0.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_214337-scaled.jpg?fit=640%2C853&amp;ssl=1\" alt=\"\" data-id=\"222\" data-full-url=\"https://i0.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_214337-scaled.jpg?fit=1920%2C2560&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/img_20200506_214337/\" class=\"wp-image-222\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i0.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205715-scaled.jpg?fit=640%2C480&amp;ssl=1\" alt=\"\" data-id=\"211\" data-full-url=\"https://i0.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205715-scaled.jpg?fit=2560%2C1920&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/img_20200506_205715/\" class=\"wp-image-211\"/><figcaption class=\"blocks-gallery-item__caption\">Bedroom 2</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205728-scaled.jpg?fit=640%2C853&amp;ssl=1\" alt=\"\" data-id=\"212\" data-full-url=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205728-scaled.jpg?fit=1920%2C2560&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/img_20200506_205728/\" class=\"wp-image-212\"/><figcaption class=\"blocks-gallery-item__caption\">Bedroom 3 closet</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i0.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205758-scaled.jpg?fit=640%2C480&amp;ssl=1\" alt=\"\" data-id=\"214\" data-full-url=\"https://i0.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205758-scaled.jpg?fit=2560%2C1920&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/img_20200506_205758/\" class=\"wp-image-214\"/><figcaption class=\"blocks-gallery-item__caption\">Bedroom 3</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205815-scaled.jpg?fit=640%2C480&amp;ssl=1\" alt=\"\" data-id=\"215\" data-full-url=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205815-scaled.jpg?fit=2560%2C1920&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/img_20200506_205815/\" class=\"wp-image-215\"/><figcaption class=\"blocks-gallery-item__caption\">Bedroom 3</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i0.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205832-scaled.jpg?fit=640%2C480&amp;ssl=1\" alt=\"\" data-id=\"216\" data-full-url=\"https://i0.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205832-scaled.jpg?fit=2560%2C1920&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/img_20200506_205832/\" class=\"wp-image-216\"/><figcaption class=\"blocks-gallery-item__caption\">Bedroom 2</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205840-scaled.jpg?fit=640%2C480&amp;ssl=1\" alt=\"\" data-id=\"217\" data-full-url=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205840-scaled.jpg?fit=2560%2C1920&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/img_20200506_205840/\" class=\"wp-image-217\"/><figcaption class=\"blocks-gallery-item__caption\">Bedroom 2</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_210033-scaled.jpg?fit=640%2C480&amp;ssl=1\" alt=\"\" data-id=\"218\" data-full-url=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_210033-scaled.jpg?fit=2560%2C1920&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/img_20200506_210033/\" class=\"wp-image-218\"/><figcaption class=\"blocks-gallery-item__caption\">Bedroom 1</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_210930-scaled.jpg?fit=640%2C853&amp;ssl=1\" alt=\"\" data-id=\"219\" data-full-url=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_210930-scaled.jpg?fit=1920%2C2560&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/img_20200506_210930/\" class=\"wp-image-219\"/><figcaption class=\"blocks-gallery-item__caption\">Bathroom</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_210946-scaled.jpg?fit=640%2C853&amp;ssl=1\" alt=\"\" data-id=\"220\" data-full-url=\"https://i1.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_210946-scaled.jpg?fit=1920%2C2560&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/img_20200506_210946/\" class=\"wp-image-220\"/><figcaption class=\"blocks-gallery-item__caption\">Bathroom</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_211006-scaled.jpg?fit=640%2C480&amp;ssl=1\" alt=\"\" data-id=\"221\" data-full-url=\"https://i1.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_211006-scaled.jpg?fit=2560%2C1920&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/img_20200506_211006/\" class=\"wp-image-221\"/><figcaption class=\"blocks-gallery-item__caption\">Kitchen</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/Resized_20200507_155307.jpg?fit=640%2C311&amp;ssl=1\" alt=\"\" data-id=\"223\" data-full-url=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/Resized_20200507_155307.jpg?fit=1600%2C777&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/resized_20200507_155307/\" class=\"wp-image-223\"/><figcaption class=\"blocks-gallery-item__caption\">Kitchen</figcaption></figure></li></ul></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Downstairs Unit','','publish','closed','closed','','downstairs-unit','','','2020-05-08 17:38:57','2020-05-08 17:38:57','',0,'https://374curry.com/?page_id=50',0,'page','',0),(51,1,'2020-05-01 16:31:00','2020-05-01 16:31:00','<!-- wp:image {\"id\":40,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_152721-768x1024.jpg\" alt=\"\" class=\"wp-image-40\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Lots of street parking, as well as driveway and garage with electric door opener.</p>\n<!-- /wp:paragraph -->','Parking','','publish','closed','closed','','parking','','','2020-05-01 16:44:00','2020-05-01 16:44:00','',0,'https://374curry.com/?page_id=51',0,'page','',0),(52,1,'2020-05-01 16:31:00','2020-05-01 16:31:00','<!-- wp:list -->\n<ul><li>water</li><li>electricity</li><li>hydro, </li><li>alarm</li><li>tv </li><li>internet </li></ul>\n<!-- /wp:list -->','Utilities','','publish','closed','closed','','utilities','','','2020-05-01 17:31:26','2020-05-01 17:31:26','',0,'https://374curry.com/?page_id=52',0,'page','',0),(53,1,'2020-05-01 16:31:00','2020-05-01 16:31:00','<!-- wp:paragraph -->\n<p>This is a smart home with Google nest in both units. The google nest will integrate with the door locks, thermostat and other features.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Bedrooms will have smart keyless locks and each resident will have their own separate code</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Home has Alarm system with monitoring included in rent.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://youtu.be/DcUEgzmsmsE\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://youtu.be/DcUEgzmsmsE\n</div></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:video {\"id\":85} -->\n<figure class=\"wp-block-video\"><video autoplay controls src=\"https://374curry.com/wp-content/uploads/2020/05/9f380865f7bad9d6ba9b8f841811e78d.mp4\"></video><figcaption>House controlled by Google Nest</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:image {\"id\":81,\"width\":201,\"height\":234,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/51l-ksW0cUL._AC_SL1000_.jpg\" alt=\"\" class=\"wp-image-81\" width=\"201\" height=\"234\"/><figcaption>On exterior and bedroom doors</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":80,\"width\":201,\"height\":227,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/51h7P69vWL._AC_SL1000_.jpg\" alt=\"\" class=\"wp-image-80\" width=\"201\" height=\"227\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":82,\"width\":296,\"height\":228,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/81NMZl-QgvL._AC_SL1500_-1024x790.jpg\" alt=\"\" class=\"wp-image-82\" width=\"296\" height=\"228\"/></figure>\n<!-- /wp:image -->','Smart Home','','publish','closed','closed','','smart-home','','','2020-05-01 17:29:25','2020-05-01 17:29:25','',0,'https://374curry.com/?page_id=53',0,'page','',0),(54,1,'2020-05-01 16:31:00','2020-05-01 16:31:00','','Home','','publish','closed','closed','','home','','','2020-05-03 16:44:07','2020-05-03 16:44:07','',0,'https://374curry.com/2020/05/01/home/',1,'nav_menu_item','',0),(55,1,'2020-05-01 16:31:00','2020-05-01 16:31:00','','Upstairs Unit','','inherit','closed','closed','','48-revision-v1','','','2020-05-01 16:31:00','2020-05-01 16:31:00','',48,'https://374curry.com/2020/05/01/48-revision-v1/',0,'revision','',0),(56,1,'2020-05-01 16:31:00','2020-05-01 16:31:00','','Downstairs Unit','','inherit','closed','closed','','50-revision-v1','','','2020-05-01 16:31:00','2020-05-01 16:31:00','',50,'https://374curry.com/2020/05/01/50-revision-v1/',0,'revision','',0),(57,1,'2020-05-01 16:31:00','2020-05-01 16:31:00','','Parking','','inherit','closed','closed','','51-revision-v1','','','2020-05-01 16:31:00','2020-05-01 16:31:00','',51,'https://374curry.com/2020/05/01/51-revision-v1/',0,'revision','',0),(58,1,'2020-05-01 16:31:00','2020-05-01 16:31:00','','Utilities','','inherit','closed','closed','','52-revision-v1','','','2020-05-01 16:31:00','2020-05-01 16:31:00','',52,'https://374curry.com/2020/05/01/52-revision-v1/',0,'revision','',0),(59,1,'2020-05-01 16:31:00','2020-05-01 16:31:00','','Smart Home','','inherit','closed','closed','','53-revision-v1','','','2020-05-01 16:31:00','2020-05-01 16:31:00','',53,'https://374curry.com/2020/05/01/53-revision-v1/',0,'revision','',0),(60,1,'2020-05-01 16:31:00','2020-05-01 16:31:00','','Unit 1','','publish','closed','closed','','60','','','2020-05-03 16:44:07','2020-05-03 16:44:07','',0,'https://374curry.com/2020/05/01/60/',2,'nav_menu_item','',0),(61,1,'2020-05-01 16:31:00','2020-05-01 16:31:00','','Unit 2','','publish','closed','closed','','61','','','2020-05-03 16:44:07','2020-05-03 16:44:07','',0,'https://374curry.com/2020/05/01/61/',3,'nav_menu_item','',0),(62,1,'2020-05-01 16:31:00','2020-05-01 16:31:00',' ','','','publish','closed','closed','','62','','','2020-05-03 16:44:07','2020-05-03 16:44:07','',0,'https://374curry.com/2020/05/01/62/',5,'nav_menu_item','',0),(63,1,'2020-05-01 16:31:00','2020-05-01 16:31:00',' ','','','publish','closed','closed','','63','','','2020-05-03 16:44:07','2020-05-03 16:44:07','',0,'https://374curry.com/2020/05/01/63/',4,'nav_menu_item','',0),(64,1,'2020-05-01 16:31:00','2020-05-01 16:31:00',' ','','','publish','closed','closed','','64','','','2020-05-03 16:44:07','2020-05-03 16:44:07','',0,'https://374curry.com/2020/05/01/64/',6,'nav_menu_item','',0),(68,1,'2020-05-01 16:35:54','2020-05-01 16:35:54','<!-- wp:image {\"id\":66,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174636-1024x497.jpg\" alt=\"Living Room\" class=\"wp-image-66\"/></figure>\n<!-- /wp:image -->','Upstairs Unit','','inherit','closed','closed','','48-revision-v1','','','2020-05-01 16:35:54','2020-05-01 16:35:54','',48,'https://374curry.com/2020/05/01/48-revision-v1/',0,'revision','',0),(66,1,'2020-05-01 16:34:41','2020-05-01 16:34:41','','Resized_20200427_174636','','inherit','open','closed','','resized_20200427_174636','','','2020-05-01 16:34:41','2020-05-01 16:34:41','',48,'https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174636.jpg',0,'attachment','image/jpeg',0),(67,1,'2020-05-01 16:34:50','2020-05-01 16:34:50','<!-- wp:image {\"id\":66,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174636-1024x497.jpg\" alt=\"\" class=\"wp-image-66\"/></figure>\n<!-- /wp:image -->','Upstairs Unit','','inherit','closed','closed','','48-revision-v1','','','2020-05-01 16:34:50','2020-05-01 16:34:50','',48,'https://374curry.com/2020/05/01/48-revision-v1/',0,'revision','',0),(69,1,'2020-05-01 16:36:08','2020-05-01 16:36:08','<!-- wp:image {\"id\":66,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174636-1024x497.jpg\" alt=\"Living Room\" class=\"wp-image-66\"/><figcaption>Living Room</figcaption></figure>\n<!-- /wp:image -->','Upstairs Unit','','inherit','closed','closed','','48-revision-v1','','','2020-05-01 16:36:08','2020-05-01 16:36:08','',48,'https://374curry.com/2020/05/01/48-revision-v1/',0,'revision','',0),(70,1,'2020-05-01 16:37:09','2020-05-01 16:37:09','','Resized_20200427_174150','','inherit','open','closed','','resized_20200427_174150','','','2020-05-01 16:37:09','2020-05-01 16:37:09','',48,'https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174150.jpg',0,'attachment','image/jpeg',0),(71,1,'2020-05-01 16:37:11','2020-05-01 16:37:11','','Resized_20200427_174159','','inherit','open','closed','','resized_20200427_174159','','','2020-05-01 16:37:11','2020-05-01 16:37:11','',48,'https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174159.jpg',0,'attachment','image/jpeg',0),(72,1,'2020-05-01 16:37:13','2020-05-01 16:37:13','','Resized_20200427_174206','','inherit','open','closed','','resized_20200427_174206','','','2020-05-01 16:37:13','2020-05-01 16:37:13','',48,'https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174206.jpg',0,'attachment','image/jpeg',0),(73,1,'2020-05-01 16:37:51','2020-05-01 16:37:51','<!-- wp:image {\"id\":66,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174636-1024x497.jpg\" alt=\"Living Room\" class=\"wp-image-66\"/><figcaption>Living Room</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:gallery {\"ids\":[39,38,37,36,35,24,25,21,22,70,71,72]} -->\n<figure class=\"wp-block-gallery columns-3 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143458-1024x768.jpg\" alt=\"\" data-id=\"39\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143458-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143458/\" class=\"wp-image-39\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143448-1024x768.jpg\" alt=\"\" data-id=\"38\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143448-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143448/\" class=\"wp-image-38\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143439-1024x768.jpg\" alt=\"\" data-id=\"37\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143439-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143439/\" class=\"wp-image-37\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143436-1024x768.jpg\" alt=\"\" data-id=\"36\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143436-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143436/\" class=\"wp-image-36\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143426-1024x768.jpg\" alt=\"\" data-id=\"35\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143426-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143426/\" class=\"wp-image-35\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143143-1024x768.jpg\" alt=\"\" data-id=\"24\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143143-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143143/\" class=\"wp-image-24\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143201-1024x768.jpg\" alt=\"\" data-id=\"25\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143201-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143201/\" class=\"wp-image-25\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-1-1024x768.jpg\" alt=\"\" data-id=\"21\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-1-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_142925-2/\" class=\"wp-image-21\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142958-1024x768.jpg\" alt=\"\" data-id=\"22\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142958-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_142958/\" class=\"wp-image-22\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174150-497x1024.jpg\" alt=\"\" data-id=\"70\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174150.jpg\" data-link=\"https://374curry.com/upstairs-unit/resized_20200427_174150/#main\" class=\"wp-image-70\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174159-497x1024.jpg\" alt=\"\" data-id=\"71\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174159.jpg\" data-link=\"https://374curry.com/upstairs-unit/resized_20200427_174159/#main\" class=\"wp-image-71\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174206-497x1024.jpg\" alt=\"\" data-id=\"72\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174206.jpg\" data-link=\"https://374curry.com/upstairs-unit/resized_20200427_174206/#main\" class=\"wp-image-72\"/></figure></li></ul><figcaption class=\"blocks-gallery-caption\">Upstairs Unit - 3 Bedroom</figcaption></figure>\n<!-- /wp:gallery -->','Upstairs Unit','','inherit','closed','closed','','48-revision-v1','','','2020-05-01 16:37:51','2020-05-01 16:37:51','',48,'https://374curry.com/2020/05/01/48-revision-v1/',0,'revision','',0),(74,1,'2020-05-01 16:39:40','2020-05-01 16:39:40','<!-- wp:image {\"id\":30,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143320-1024x768.jpg\" alt=\"\" class=\"wp-image-30\"/><figcaption>Basement Living Room</figcaption></figure>\n<!-- /wp:image -->','Downstairs Unit','','inherit','closed','closed','','50-revision-v1','','','2020-05-01 16:39:40','2020-05-01 16:39:40','',50,'https://374curry.com/2020/05/01/50-revision-v1/',0,'revision','',0),(108,1,'2020-05-01 18:24:34','2020-05-01 18:24:34','','CHICSOAPS-LOGO-512','','inherit','open','closed','','chicsoaps-logo-512','','','2020-05-01 18:24:34','2020-05-01 18:24:34','',0,'https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512.jpg',0,'attachment','image/jpeg',0),(76,1,'2020-05-01 16:42:36','2020-05-01 16:42:36','<!-- wp:image {\"id\":30,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143320-1024x768.jpg\" alt=\"\" class=\"wp-image-30\"/><figcaption>Basement Living Room</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:gallery {\"ids\":[34,33,32,31,30,29,28,27,26]} -->\n<figure class=\"wp-block-gallery columns-3 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143352-1024x768.jpg\" alt=\"\" data-id=\"34\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143352-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143352/\" class=\"wp-image-34\"/><figcaption class=\"blocks-gallery-item__caption\">Basement Kitchen</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143340-1024x768.jpg\" alt=\"\" data-id=\"33\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143340-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143340/\" class=\"wp-image-33\"/><figcaption class=\"blocks-gallery-item__caption\">Basement Bedroom</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143334-1024x768.jpg\" alt=\"\" data-id=\"32\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143334-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143334/\" class=\"wp-image-32\"/><figcaption class=\"blocks-gallery-item__caption\">Basement Bedroom</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143327-1024x768.jpg\" alt=\"\" data-id=\"31\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143327-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143327/\" class=\"wp-image-31\"/><figcaption class=\"blocks-gallery-item__caption\">Basement Bedroom and Living Room (bedroom door not yet installed)</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143320-1024x768.jpg\" alt=\"\" data-id=\"30\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143320-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143320/\" class=\"wp-image-30\"/><figcaption class=\"blocks-gallery-item__caption\">Basement LLiving Room</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143310-1024x768.jpg\" alt=\"\" data-id=\"29\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143310-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143310/\" class=\"wp-image-29\"/><figcaption class=\"blocks-gallery-item__caption\">Basement Kitchen</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143252-768x1024.jpg\" alt=\"\" data-id=\"28\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143252-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143252/\" class=\"wp-image-28\"/><figcaption class=\"blocks-gallery-item__caption\">Basement Bathroom</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143234-768x1024.jpg\" alt=\"\" data-id=\"27\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143234-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143234/\" class=\"wp-image-27\"/><figcaption class=\"blocks-gallery-item__caption\">Basement Laundry Room</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143217-1024x768.jpg\" alt=\"\" data-id=\"26\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143217-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143217/\" class=\"wp-image-26\"/><figcaption class=\"blocks-gallery-item__caption\">Basement Separate Entrance</figcaption></figure></li></ul></figure>\n<!-- /wp:gallery -->','Downstairs Unit','','inherit','closed','closed','','50-revision-v1','','','2020-05-01 16:42:36','2020-05-01 16:42:36','',50,'https://374curry.com/2020/05/01/50-revision-v1/',0,'revision','',0),(77,1,'2020-05-01 16:43:07','2020-05-01 16:43:07','<!-- wp:image {\"id\":40,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_152721-768x1024.jpg\" alt=\"\" class=\"wp-image-40\"/></figure>\n<!-- /wp:image -->','Parking','','inherit','closed','closed','','51-revision-v1','','','2020-05-01 16:43:07','2020-05-01 16:43:07','',51,'https://374curry.com/2020/05/01/51-revision-v1/',0,'revision','',0),(78,1,'2020-05-01 16:44:00','2020-05-01 16:44:00','<!-- wp:image {\"id\":40,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_152721-768x1024.jpg\" alt=\"\" class=\"wp-image-40\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Lots of street parking, as well as driveway and garage with electric door opener.</p>\n<!-- /wp:paragraph -->','Parking','','inherit','closed','closed','','51-revision-v1','','','2020-05-01 16:44:00','2020-05-01 16:44:00','',51,'https://374curry.com/2020/05/01/51-revision-v1/',0,'revision','',0),(233,1,'2020-07-27 03:04:35','2020-07-27 03:04:35','','20200625_232047sm-1','','inherit','open','closed','','20200625_232047sm-1','','','2020-07-27 03:04:35','2020-07-27 03:04:35','',48,'https://374curry.com/wp-content/uploads/2020/07/20200625_232047sm-1.jpg',0,'attachment','image/jpeg',0),(229,1,'2020-07-27 03:01:59','2020-07-27 03:01:59','','20200429_143511sm','','inherit','open','closed','','20200429_143511sm','','','2020-07-27 03:01:59','2020-07-27 03:01:59','',94,'https://374curry.com/wp-content/uploads/2020/07/20200429_143511sm.jpg',0,'attachment','image/jpeg',0),(230,1,'2020-07-27 03:02:21','2020-07-27 03:02:21','','20200625_232047sm','','inherit','open','closed','','20200625_232047sm','','','2020-07-27 03:02:21','2020-07-27 03:02:21','',94,'https://374curry.com/wp-content/uploads/2020/07/20200625_232047sm.jpg',0,'attachment','image/jpeg',0),(231,1,'2020-07-27 03:02:31','2020-07-27 03:02:31','','20200625_232118sm','','inherit','open','closed','','20200625_232118sm','','','2020-07-27 03:02:31','2020-07-27 03:02:31','',94,'https://374curry.com/wp-content/uploads/2020/07/20200625_232118sm.jpg',0,'attachment','image/jpeg',0),(80,1,'2020-05-01 16:47:15','2020-05-01 16:47:15','','51h7P6+9vWL._AC_SL1000_','','inherit','open','closed','','51h7p69vwl-_ac_sl1000_','','','2020-05-01 16:47:15','2020-05-01 16:47:15','',53,'https://374curry.com/wp-content/uploads/2020/05/51h7P69vWL._AC_SL1000_.jpg',0,'attachment','image/jpeg',0),(81,1,'2020-05-01 16:47:17','2020-05-01 16:47:17','','51l-ksW0cUL._AC_SL1000_','','inherit','open','closed','','51l-ksw0cul-_ac_sl1000_','','','2020-05-01 16:47:17','2020-05-01 16:47:17','',53,'https://374curry.com/wp-content/uploads/2020/05/51l-ksW0cUL._AC_SL1000_.jpg',0,'attachment','image/jpeg',0),(82,1,'2020-05-01 16:47:19','2020-05-01 16:47:19','','81NMZl-QgvL._AC_SL1500_','','inherit','open','closed','','81nmzl-qgvl-_ac_sl1500_','','','2020-05-01 16:47:19','2020-05-01 16:47:19','',53,'https://374curry.com/wp-content/uploads/2020/05/81NMZl-QgvL._AC_SL1500_.jpg',0,'attachment','image/jpeg',0),(83,1,'2020-05-01 16:51:18','2020-05-01 16:51:18','','81NMZl-QgvL._AC_SL1500_','','inherit','open','closed','','81nmzl-qgvl-_ac_sl1500_-2','','','2020-05-01 16:51:18','2020-05-01 16:51:18','',53,'https://374curry.com/wp-content/uploads/2020/05/81NMZl-QgvL._AC_SL1500_-1.jpg',0,'attachment','image/jpeg',0),(84,1,'2020-05-01 16:51:48','2020-05-01 16:51:48','<!-- wp:paragraph -->\n<p>This is a smart home with Google nest in both units. The google nest will integrate with the door locks, thermostat and other features.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Bedrooms will have smart keyless locks and each resident will have their own separate code</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":81,\"width\":201,\"height\":234,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/51l-ksW0cUL._AC_SL1000_.jpg\" alt=\"\" class=\"wp-image-81\" width=\"201\" height=\"234\"/><figcaption>On exterior and bedroom doors</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":80,\"width\":201,\"height\":227,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/51h7P69vWL._AC_SL1000_.jpg\" alt=\"\" class=\"wp-image-80\" width=\"201\" height=\"227\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":82,\"width\":296,\"height\":228,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/81NMZl-QgvL._AC_SL1500_-1024x790.jpg\" alt=\"\" class=\"wp-image-82\" width=\"296\" height=\"228\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Smart Home','','inherit','closed','closed','','53-revision-v1','','','2020-05-01 16:51:48','2020-05-01 16:51:48','',53,'https://374curry.com/2020/05/01/53-revision-v1/',0,'revision','',0),(85,1,'2020-05-01 16:56:32','2020-05-01 16:56:32','','9f380865f7bad9d6ba9b8f841811e78d','','inherit','open','closed','','9f380865f7bad9d6ba9b8f841811e78d','','','2020-05-01 16:56:32','2020-05-01 16:56:32','',53,'https://374curry.com/wp-content/uploads/2020/05/9f380865f7bad9d6ba9b8f841811e78d.mp4',0,'attachment','video/mp4',0),(86,1,'2020-05-01 16:57:06','2020-05-01 16:57:06','<!-- wp:paragraph -->\n<p>This is a smart home with Google nest in both units. The google nest will integrate with the door locks, thermostat and other features.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Bedrooms will have smart keyless locks and each resident will have their own separate code</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":85} -->\n<figure class=\"wp-block-video\"><video controls src=\"https://374curry.com/wp-content/uploads/2020/05/9f380865f7bad9d6ba9b8f841811e78d.mp4\"></video><figcaption>House controlled by Google Nest</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:image {\"id\":81,\"width\":201,\"height\":234,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/51l-ksW0cUL._AC_SL1000_.jpg\" alt=\"\" class=\"wp-image-81\" width=\"201\" height=\"234\"/><figcaption>On exterior and bedroom doors</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":80,\"width\":201,\"height\":227,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/51h7P69vWL._AC_SL1000_.jpg\" alt=\"\" class=\"wp-image-80\" width=\"201\" height=\"227\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":82,\"width\":296,\"height\":228,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/81NMZl-QgvL._AC_SL1500_-1024x790.jpg\" alt=\"\" class=\"wp-image-82\" width=\"296\" height=\"228\"/></figure>\n<!-- /wp:image -->','Smart Home','','inherit','closed','closed','','53-revision-v1','','','2020-05-01 16:57:06','2020-05-01 16:57:06','',53,'https://374curry.com/2020/05/01/53-revision-v1/',0,'revision','',0),(89,1,'2020-05-01 16:59:19','2020-05-01 16:59:19','<-----------------------------------------------------------\nMinamaze Created Content Backup\nThis page contains a backup of content created by the Minamaze WordPress Theme. The purpose for the backup is to prevent content loss on theme switch.When a user switches themes this content will still be available to the user when setting up their site on the new theme.\nPlease note the following : \n * Leave this page as private, available only to users with admin privledges.\n * You can delete this page any time and regenerate it from within the Minamaze options menu, General section.\n----------------------------------------------------------->\n\n\n','Minamaze Created Content Backup','','private','closed','closed','','minamaze-created-content-backup','','','2020-05-01 17:00:31','2020-05-01 17:00:31','',0,'https://374curry.com/minamaze-created-content-backup/',0,'page','',0),(234,1,'2020-07-27 03:06:18','2020-07-27 03:06:18','','20200506_211308sm','','inherit','open','closed','','20200506_211308sm','','','2020-07-27 03:06:18','2020-07-27 03:06:18','',48,'https://374curry.com/wp-content/uploads/2020/07/20200506_211308sm.jpg',0,'attachment','image/jpeg',0),(91,1,'2020-05-01 16:59:49','2020-05-01 16:59:49','<-----------------------------------------------------------\nMinamaze Created Content Backup\nThis page contains a backup of content created by the Minamaze WordPress Theme. The purpose for the backup is to prevent content loss on theme switch.When a user switches themes this content will still be available to the user when setting up their site on the new theme.\nPlease note the following : \n * Leave this page as private, available only to users with admin privledges.\n * You can delete this page any time and regenerate it from within the Minamaze options menu, General section.\n----------------------------------------------------------->\n\n\n','Minamaze Created Content Backup','','inherit','closed','closed','','89-revision-v1','','','2020-05-01 16:59:49','2020-05-01 16:59:49','',89,'https://374curry.com/2020/05/01/89-revision-v1/',0,'revision','',0),(235,1,'2020-07-27 03:06:28','2020-07-27 03:06:28','','20200506_211326sm','','inherit','open','closed','','20200506_211326sm','','','2020-07-27 03:06:28','2020-07-27 03:06:28','',48,'https://374curry.com/wp-content/uploads/2020/07/20200506_211326sm.jpg',0,'attachment','image/jpeg',0),(236,1,'2020-07-27 03:07:27','2020-07-27 03:07:27','','IMG_20200321_174621sm','','inherit','open','closed','','img_20200321_174621sm','','','2020-07-27 03:07:27','2020-07-27 03:07:27','',48,'https://374curry.com/wp-content/uploads/2020/07/IMG_20200321_174621sm.jpg',0,'attachment','image/jpeg',0),(239,1,'2020-07-27 03:10:28','2020-07-27 03:10:28','','IMG_20200429_143436sm','','inherit','open','closed','','img_20200429_143436sm','','','2020-07-27 03:10:28','2020-07-27 03:10:28','',48,'https://374curry.com/wp-content/uploads/2020/07/IMG_20200429_143436sm.jpg',0,'attachment','image/jpeg',0),(240,1,'2020-07-27 03:11:08','2020-07-27 03:11:08','<!-- wp:image {\"id\":233,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200625_232047sm-1.jpg\" alt=\"\" class=\"wp-image-233\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":231,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200625_232118sm.jpg\" alt=\"\" class=\"wp-image-231\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":239,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/IMG_20200429_143436sm.jpg\" alt=\"\" class=\"wp-image-239\"/><figcaption>Bedroom</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":229,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200429_143511sm.jpg\" alt=\"\" class=\"wp-image-229\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":234,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200506_211308sm.jpg\" alt=\"\" class=\"wp-image-234\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":235,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200506_211326sm.jpg\" alt=\"\" class=\"wp-image-235\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":236,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/IMG_20200321_174621sm.jpg\" alt=\"\" class=\"wp-image-236\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img alt=\"\"/></figure>\n<!-- /wp:image -->','Upstairs Unit','','inherit','closed','closed','','48-revision-v1','','','2020-07-27 03:11:08','2020-07-27 03:11:08','',48,'https://374curry.com/2020/07/27/48-revision-v1/',0,'revision','',0),(94,1,'2020-05-01 17:12:31','2020-05-01 17:12:31','<!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" class=\"wp-image-12\" width=\"293\" height=\"220\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Laundry in both units</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":108,\"width\":171,\"height\":144,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://www.chicsoaps.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512.jpg\" alt=\"\" class=\"wp-image-108\" width=\"171\" height=\"144\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":109,\"width\":159,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://fitatfortyplus.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/logo-REV.png\" alt=\"\" class=\"wp-image-109\" width=\"159\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":116,\"width\":134,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://classerly.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG-1-942x1024.png\" alt=\"\" class=\"wp-image-116\" width=\"134\" height=\"145\"/></a></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:list -->\n<ul><li><strong><s>UPSTAIRS 3 bedroom $1995 all utilities included</s></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong><s>BASEMENT 3 bedroom $1450 all utilities included or by the room:</s></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><em><span class=\"has-inline-color has-vivid-red-color\"><strong>UPSTAIRS Rooms either $500 (small bedroom) or $595 (large bedroom) all utilities included</strong> </span></em>(one room left)</li><li><strong><em><span class=\"has-inline-color has-vivid-red-color\"><s>BASEMENT Rooms 3 bedroom $500 all utilities included</s></span></em></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>I purchased this home last year. I have redone:</li><li>plumbing,</li><li>electrical,</li><li>furnace, air conditioner with smart thermostat</li><li>walls,</li><li>floors,</li><li>lighting,</li><li>bathrooms, kitchens,</li><li>roof,</li><li>siding,</li><li>insulation.</li><li>Exterior lighting.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This home is a smart home with ecobee thermostat, wemo light switches, video doorbell, and has a google nest included.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a driveway with parking for one car in front of the garage and lots of street parking.<br><br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.<br>All utilities includes, water, electricity, hydro, alarm, tv and high speed internet will be included.<br>Because it is new the market you have the option of it being furnished or not.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[142,72,80,35,37],\"columns\":4} -->\n<figure class=\"wp-block-gallery columns-4 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-3-1024x768.jpg\" alt=\"\" data-id=\"142\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-3-scaled.jpg\" data-link=\"https://374curry.com/homepage/img_20200429_142925-3/\" class=\"wp-image-142\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174206-497x1024.jpg\" alt=\"\" data-id=\"72\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174206.jpg\" data-link=\"https://374curry.com/upstairs-unit/resized_20200427_174206/\" class=\"wp-image-72\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/51h7P69vWL._AC_SL1000_.jpg\" alt=\"\" data-id=\"80\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/51h7P69vWL._AC_SL1000_.jpg\" data-link=\"https://374curry.com/smart-home/51h7p69vwl-_ac_sl1000_/\" class=\"wp-image-80\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143426-1024x768.jpg\" alt=\"\" data-id=\"35\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143426-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143426/\" class=\"wp-image-35\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143439-1024x768.jpg\" alt=\"\" data-id=\"37\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143439-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143439/\" class=\"wp-image-37\"/></figure></li></ul></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:image {\"id\":229,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200429_143511sm.jpg\" alt=\"\" class=\"wp-image-229\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:gallery {\"ids\":[230,231]} -->\n<figure class=\"wp-block-gallery columns-2 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200625_232047sm.jpg\" alt=\"\" data-id=\"230\" data-link=\"https://374curry.com/homepage/20200625_232047sm/\" class=\"wp-image-230\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/07/20200625_232118sm.jpg\" alt=\"\" data-id=\"231\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/07/20200625_232118sm.jpg\" data-link=\"https://374curry.com/homepage/20200625_232118sm/\" class=\"wp-image-231\"/></figure></li></ul></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:image {\"id\":252,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/08/20200731_141415-sm-1.jpg\" alt=\"\" class=\"wp-image-252\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":253,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/08/20200731_141421-sm-1.jpg\" alt=\"\" class=\"wp-image-253\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":254,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/08/20200731_141634-sm-1.jpg\" alt=\"\" class=\"wp-image-254\"/></figure>\n<!-- /wp:image -->','374 Curry Avenue- Smart Home','','publish','closed','closed','','homepage','','','2020-08-03 15:59:00','2020-08-03 15:59:00','',0,'https://374curry.com/?page_id=94',0,'page','',0),(139,1,'2020-05-02 15:54:10','2020-05-02 15:54:10','<p></p>\n\n<!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} -->\n</p>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" width=\"293\" height=\"220\" /></figure>\n<p>\n<!-- /wp:image -->\n\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>Laundry in both units</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":108,\"width\":171,\"height\":144,\"sizeSlug\":\"large\"} -->\n</p>\n<figure><a href=\"https://www.chicsoaps.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512.jpg\" alt=\"\" width=\"171\" height=\"144\" /></a></figure>\n<p>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":109,\"width\":159,\"height\":145,\"sizeSlug\":\"large\"} -->\n</p>\n<figure><a href=\"https://fitatfortyplus.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/logo-REV.png\" alt=\"\" width=\"159\" height=\"145\" /></a></figure>\n<p>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":116,\"width\":134,\"height\":145,\"sizeSlug\":\"large\"} -->\n</p>\n<figure><a href=\"https://classerly.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG-1-942x1024.png\" alt=\"\" width=\"134\" height=\"145\" /></a></figure>\n<p>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<p></p>\n\n<!-- wp:list -->\n</p>\n<ul>\n<li><strong>UPSTAIRS 3 bedroom $1995 all utilities included</strong></li>\n<li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:</strong></li>\n</ul>\n<p>\n<!-- /wp:list -->\n\n<p></p>\n\n<!-- wp:list -->\n</p>\n<ul>\n<li><em><strong>UPSTAIRS Rooms 590 all utilities included</strong> </em></li>\n<li><strong><em>BASEMENT Rooms 3 bedroom $500 all utilities included</em></strong></li>\n</ul>\n<p>\n<!-- /wp:list -->\n\n<p></p>\n\n<!-- wp:list -->\n</p>\n<p>I purchased this home last year. I have redone:</p>\n<ul>\n<li>plumbing,</li>\n<li>electrical,</li>\n<li>furnace, air conditioner with smart thermostat</li>\n<li>walls,</li>\n<li>floors,</li>\n<li>lighting,</li>\n<li>bathrooms, kitchens,</li>\n<li>roof,</li>\n<li>siding,</li>\n<li>insulation.</li>\n<li>Exterior lighting.</li>\n</ul>\n<p>\n<!-- /wp:list -->\n\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br />We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br />Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br />There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>The upstairs unit will be $1995 all utilities included.<br />All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br />Because it is new the market you have the option of it being furnished or not.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n</p>\n \n<p>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n</p>\n \n<p>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n</p>\n \n<p>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:group -->','374 Curry Avenue','','inherit','closed','closed','','94-revision-v1','','','2020-05-02 15:54:10','2020-05-02 15:54:10','',94,'https://374curry.com/2020/05/02/94-revision-v1/',0,'revision','',0),(96,1,'2020-05-01 17:12:31','2020-05-01 17:12:31','','Homepage','','inherit','closed','closed','','94-revision-v1','','','2020-05-01 17:12:31','2020-05-01 17:12:31','',94,'https://374curry.com/2020/05/01/94-revision-v1/',0,'revision','',0),(97,1,'2020-05-01 17:13:58','2020-05-01 17:13:58','<!-- wp:image {\"id\":12,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" class=\"wp-image-12\"/></figure>\n<!-- /wp:image -->','374 Curry Avenue','','inherit','closed','closed','','94-revision-v1','','','2020-05-01 17:13:58','2020-05-01 17:13:58','',94,'https://374curry.com/2020/05/01/94-revision-v1/',0,'revision','',0),(101,1,'2020-05-01 17:22:34','2020-05-01 17:22:34','<!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" class=\"wp-image-12\" width=\"293\" height=\"220\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>UPSTAIRS 3 bedroom $1950 all utilities included</strong></li><li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong>UPSTAIRS Rooms 590 all utilities included</strong> </li><li><strong>BASEMENT Rooms 3 bedroom $500 all utilities included</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>I purchased this home last year. I have redone:</li><li>plumbing,</li><li>electrical,</li><li>furnace, air conditioner with smart thermostat</li><li>walls,</li><li>floors,</li><li>lighting,</li><li>bathrooms, kitchens,</li><li>roof,</li><li>siding,</li><li>insulation.</li><li>Exterior lighting.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The upstairs unit will be $1995 all utilities included.<br>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br>Because it is new the market you have the option of it being furnished or not.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<!-- /wp:paragraph -->','374 Curry Avenue','','inherit','closed','closed','','94-revision-v1','','','2020-05-01 17:22:34','2020-05-01 17:22:34','',94,'https://374curry.com/2020/05/01/94-revision-v1/',0,'revision','',0),(99,1,'2020-05-01 17:16:34','2020-05-01 17:16:34','<!-- wp:paragraph -->\n<p>This is a smart home with Google nest in both units. The google nest will integrate with the door locks, thermostat and other features.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Bedrooms will have smart keyless locks and each resident will have their own separate code</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:video {\"id\":85} -->\n<figure class=\"wp-block-video\"><video autoplay controls src=\"https://374curry.com/wp-content/uploads/2020/05/9f380865f7bad9d6ba9b8f841811e78d.mp4\"></video><figcaption>House controlled by Google Nest</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:image {\"id\":81,\"width\":201,\"height\":234,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/51l-ksW0cUL._AC_SL1000_.jpg\" alt=\"\" class=\"wp-image-81\" width=\"201\" height=\"234\"/><figcaption>On exterior and bedroom doors</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":80,\"width\":201,\"height\":227,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/51h7P69vWL._AC_SL1000_.jpg\" alt=\"\" class=\"wp-image-80\" width=\"201\" height=\"227\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":82,\"width\":296,\"height\":228,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/81NMZl-QgvL._AC_SL1500_-1024x790.jpg\" alt=\"\" class=\"wp-image-82\" width=\"296\" height=\"228\"/></figure>\n<!-- /wp:image -->','Smart Home','','inherit','closed','closed','','53-revision-v1','','','2020-05-01 17:16:34','2020-05-01 17:16:34','',53,'https://374curry.com/2020/05/01/53-revision-v1/',0,'revision','',0),(100,1,'2020-05-01 17:20:34','2020-05-01 17:20:34','<!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" class=\"wp-image-12\" width=\"293\" height=\"220\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>UPSTAIRS 3 bedroom $1950 all utilities included<br>BASEMENT 3 bedroom $1450 all utilities included or by the room:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>UPSTAIRS 590 all utilities included</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>BASEMENT 3 bedroom $500 all utilities included</strong><br>I purchased this home last year. I have redone:<br>plumbing,<br>electrical,<br>furnace, air conditioner with smart thermostat<br>walls,<br>floors,<br>lighting,<br>bathrooms, kitchens,<br>roof,<br>siding,<br>insulation.<br>Exterior lighting.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The upstairs unit will be $1995 all utilities included.<br>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br>Because it is new the market you have the option of it being furnished or not.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<!-- /wp:paragraph -->','374 Curry Avenue','','inherit','closed','closed','','94-revision-v1','','','2020-05-01 17:20:34','2020-05-01 17:20:34','',94,'https://374curry.com/2020/05/01/94-revision-v1/',0,'revision','',0),(102,1,'2020-05-01 17:29:24','2020-05-01 17:29:24','<!-- wp:paragraph -->\n<p>This is a smart home with Google nest in both units. The google nest will integrate with the door locks, thermostat and other features.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Bedrooms will have smart keyless locks and each resident will have their own separate code</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Home has Alarm system with monitoring included in rent.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://youtu.be/DcUEgzmsmsE\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://youtu.be/DcUEgzmsmsE\n</div></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:video {\"id\":85} -->\n<figure class=\"wp-block-video\"><video autoplay controls src=\"https://374curry.com/wp-content/uploads/2020/05/9f380865f7bad9d6ba9b8f841811e78d.mp4\"></video><figcaption>House controlled by Google Nest</figcaption></figure>\n<!-- /wp:video -->\n\n<!-- wp:image {\"id\":81,\"width\":201,\"height\":234,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/51l-ksW0cUL._AC_SL1000_.jpg\" alt=\"\" class=\"wp-image-81\" width=\"201\" height=\"234\"/><figcaption>On exterior and bedroom doors</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":80,\"width\":201,\"height\":227,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/51h7P69vWL._AC_SL1000_.jpg\" alt=\"\" class=\"wp-image-80\" width=\"201\" height=\"227\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":82,\"width\":296,\"height\":228,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/81NMZl-QgvL._AC_SL1500_-1024x790.jpg\" alt=\"\" class=\"wp-image-82\" width=\"296\" height=\"228\"/></figure>\n<!-- /wp:image -->','Smart Home','','inherit','closed','closed','','53-revision-v1','','','2020-05-01 17:29:24','2020-05-01 17:29:24','',53,'https://374curry.com/2020/05/01/53-revision-v1/',0,'revision','',0),(105,1,'2020-05-01 17:32:35','2020-05-01 17:32:35','<!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" class=\"wp-image-12\" width=\"293\" height=\"220\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Laundry in both units</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>UPSTAIRS 3 bedroom $1995 all utilities included</strong></li><li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong>UPSTAIRS Rooms 590 all utilities included</strong> </li><li><strong>BASEMENT Rooms 3 bedroom $500 all utilities included</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>I purchased this home last year. I have redone:</li><li>plumbing,</li><li>electrical,</li><li>furnace, air conditioner with smart thermostat</li><li>walls,</li><li>floors,</li><li>lighting,</li><li>bathrooms, kitchens,</li><li>roof,</li><li>siding,</li><li>insulation.</li><li>Exterior lighting.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The upstairs unit will be $1995 all utilities included.<br>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br>Because it is new the market you have the option of it being furnished or not.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<!-- /wp:paragraph -->','374 Curry Avenue','','inherit','closed','closed','','94-revision-v1','','','2020-05-01 17:32:35','2020-05-01 17:32:35','',94,'https://374curry.com/2020/05/01/94-revision-v1/',0,'revision','',0),(104,1,'2020-05-01 17:31:25','2020-05-01 17:31:25','<!-- wp:list -->\n<ul><li>water</li><li>electricity</li><li>hydro, </li><li>alarm</li><li>tv </li><li>internet </li></ul>\n<!-- /wp:list -->','Utilities','','inherit','closed','closed','','52-revision-v1','','','2020-05-01 17:31:25','2020-05-01 17:31:25','',52,'https://374curry.com/2020/05/01/52-revision-v1/',0,'revision','',0),(109,1,'2020-05-01 18:27:05','2020-05-01 18:27:05','','logo REV','','inherit','open','closed','','logo-rev','','','2020-05-01 18:27:05','2020-05-01 18:27:05','',0,'https://374curry.com/wp-content/uploads/2020/05/logo-REV.png',0,'attachment','image/png',0),(111,1,'2020-05-01 18:28:14','2020-05-01 18:28:14','','logo JPEG','','inherit','open','closed','','logo-jpeg','','','2020-05-01 18:28:14','2020-05-01 18:28:14','',0,'https://374curry.com/wp-content/uploads/2020/05/logo-JPEG.jpg',0,'attachment','image/jpeg',0),(112,1,'2020-05-01 18:28:33','2020-05-01 18:28:33','','Logo Transparent-PNG','','inherit','open','closed','','logo-transparent-png','','','2020-05-01 18:28:33','2020-05-01 18:28:33','',0,'https://374curry.com/wp-content/uploads/2020/05/Logo-Transparent-PNG.png',0,'attachment','image/png',0),(113,1,'2020-05-01 18:29:19','2020-05-01 18:29:19','','sm Logo Transparent-PNG','','inherit','open','closed','','sm-logo-transparent-png','','','2020-05-01 18:29:19','2020-05-01 18:29:19','',0,'https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG.png',0,'attachment','image/png',0),(114,1,'2020-05-01 18:32:01','2020-05-01 18:32:01','<!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" class=\"wp-image-12\" width=\"293\" height=\"220\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Laundry in both units</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>UPSTAIRS 3 bedroom $1995 all utilities included</strong></li><li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong>UPSTAIRS Rooms 590 all utilities included</strong> </li><li><strong>BASEMENT Rooms 3 bedroom $500 all utilities included</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>I purchased this home last year. I have redone:</li><li>plumbing,</li><li>electrical,</li><li>furnace, air conditioner with smart thermostat</li><li>walls,</li><li>floors,</li><li>lighting,</li><li>bathrooms, kitchens,</li><li>roof,</li><li>siding,</li><li>insulation.</li><li>Exterior lighting.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The upstairs unit will be $1995 all utilities included.<br>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br>Because it is new the market you have the option of it being furnished or not.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":108,\"width\":114,\"height\":96,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://chicsoaps.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512.jpg\" alt=\"\" class=\"wp-image-108\" width=\"114\" height=\"96\"/></a></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','374 Curry Avenue','','inherit','closed','closed','','94-revision-v1','','','2020-05-01 18:32:01','2020-05-01 18:32:01','',94,'https://374curry.com/2020/05/01/94-revision-v1/',0,'revision','',0),(118,1,'2020-05-01 18:42:29','2020-05-01 18:42:29','<!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" class=\"wp-image-12\" width=\"293\" height=\"220\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Laundry in both units</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":108,\"width\":171,\"height\":144,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"www.chicsoaps.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512.jpg\" alt=\"\" class=\"wp-image-108\" width=\"171\" height=\"144\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":109,\"width\":159,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"fitatfortyplus.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/logo-REV.png\" alt=\"\" class=\"wp-image-109\" width=\"159\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":116,\"width\":134,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG-1-942x1024.png\" alt=\"\" class=\"wp-image-116\" width=\"134\" height=\"145\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:list -->\n<ul><li><strong>UPSTAIRS 3 bedroom $1995 all utilities included</strong></li><li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong>UPSTAIRS Rooms 590 all utilities included</strong> </li><li><strong>BASEMENT Rooms 3 bedroom $500 all utilities included</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>I purchased this home last year. I have redone:</li><li>plumbing,</li><li>electrical,</li><li>furnace, air conditioner with smart thermostat</li><li>walls,</li><li>floors,</li><li>lighting,</li><li>bathrooms, kitchens,</li><li>roof,</li><li>siding,</li><li>insulation.</li><li>Exterior lighting.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The upstairs unit will be $1995 all utilities included.<br>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br>Because it is new the market you have the option of it being furnished or not.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\"></div></div>\n<!-- /wp:group -->','374 Curry Avenue','','inherit','closed','closed','','94-revision-v1','','','2020-05-01 18:42:29','2020-05-01 18:42:29','',94,'https://374curry.com/2020/05/01/94-revision-v1/',0,'revision','',0),(116,1,'2020-05-01 18:39:17','2020-05-01 18:39:17','','sm Logo Transparent-PNG','','inherit','open','closed','','sm-logo-transparent-png-2','','','2020-05-01 18:39:17','2020-05-01 18:39:17','',94,'https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG-1.png',0,'attachment','image/png',0),(117,1,'2020-05-01 18:39:49','2020-05-01 18:39:49','<!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" class=\"wp-image-12\" width=\"293\" height=\"220\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Laundry in both units</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":108,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><a href=\"www.chicsoaps.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512.jpg\" alt=\"\" class=\"wp-image-108\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":109,\"width\":159,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"fitatfortyplus.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/logo-REV.png\" alt=\"\" class=\"wp-image-109\" width=\"159\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":116,\"width\":134,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG-1-942x1024.png\" alt=\"\" class=\"wp-image-116\" width=\"134\" height=\"145\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:list -->\n<ul><li><strong>UPSTAIRS 3 bedroom $1995 all utilities included</strong></li><li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong>UPSTAIRS Rooms 590 all utilities included</strong> </li><li><strong>BASEMENT Rooms 3 bedroom $500 all utilities included</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>I purchased this home last year. I have redone:</li><li>plumbing,</li><li>electrical,</li><li>furnace, air conditioner with smart thermostat</li><li>walls,</li><li>floors,</li><li>lighting,</li><li>bathrooms, kitchens,</li><li>roof,</li><li>siding,</li><li>insulation.</li><li>Exterior lighting.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The upstairs unit will be $1995 all utilities included.<br>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br>Because it is new the market you have the option of it being furnished or not.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\"></div></div>\n<!-- /wp:group -->','374 Curry Avenue','','inherit','closed','closed','','94-revision-v1','','','2020-05-01 18:39:49','2020-05-01 18:39:49','',94,'https://374curry.com/2020/05/01/94-revision-v1/',0,'revision','',0),(119,1,'2020-05-01 18:43:52','2020-05-01 18:43:52','<!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" class=\"wp-image-12\" width=\"293\" height=\"220\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Laundry in both units</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":108,\"width\":171,\"height\":144,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://www.chicsoaps.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512.jpg\" alt=\"\" class=\"wp-image-108\" width=\"171\" height=\"144\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":109,\"width\":159,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://fitatfortyplus.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/logo-REV.png\" alt=\"\" class=\"wp-image-109\" width=\"159\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":116,\"width\":134,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://classerly.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG-1-942x1024.png\" alt=\"\" class=\"wp-image-116\" width=\"134\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:list -->\n<ul><li><strong>UPSTAIRS 3 bedroom $1995 all utilities included</strong></li><li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong>UPSTAIRS Rooms 590 all utilities included</strong> </li><li><strong>BASEMENT Rooms 3 bedroom $500 all utilities included</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>I purchased this home last year. I have redone:</li><li>plumbing,</li><li>electrical,</li><li>furnace, air conditioner with smart thermostat</li><li>walls,</li><li>floors,</li><li>lighting,</li><li>bathrooms, kitchens,</li><li>roof,</li><li>siding,</li><li>insulation.</li><li>Exterior lighting.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The upstairs unit will be $1995 all utilities included.<br>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br>Because it is new the market you have the option of it being furnished or not.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\"></div></div>\n<!-- /wp:group -->','374 Curry Avenue','','inherit','closed','closed','','94-revision-v1','','','2020-05-01 18:43:52','2020-05-01 18:43:52','',94,'https://374curry.com/2020/05/01/94-revision-v1/',0,'revision','',0),(120,1,'2020-05-02 14:39:12','2020-05-02 14:39:12','<!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" class=\"wp-image-12\" width=\"293\" height=\"220\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Laundry in both units</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":108,\"width\":171,\"height\":144,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://www.chicsoaps.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512.jpg\" alt=\"\" class=\"wp-image-108\" width=\"171\" height=\"144\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":109,\"width\":159,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://fitatfortyplus.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/logo-REV.png\" alt=\"\" class=\"wp-image-109\" width=\"159\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":116,\"width\":134,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://classerly.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG-1-942x1024.png\" alt=\"\" class=\"wp-image-116\" width=\"134\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:list -->\n<ul><li><strong>UPSTAIRS 3 bedroom $1995 all utilities included</strong></li><li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><em><span class=\"has-inline-color has-vivid-red-color\"><strong>UPSTAIRS Rooms 590 all utilities included</strong> </span></em></li><li><strong><em><span class=\"has-inline-color has-vivid-red-color\">BASEMENT Rooms 3 bedroom $500 all utilities included</span></em></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>I purchased this home last year. I have redone:</li><li>plumbing,</li><li>electrical,</li><li>furnace, air conditioner with smart thermostat</li><li>walls,</li><li>floors,</li><li>lighting,</li><li>bathrooms, kitchens,</li><li>roof,</li><li>siding,</li><li>insulation.</li><li>Exterior lighting.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The upstairs unit will be $1995 all utilities included.<br>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br>Because it is new the market you have the option of it being furnished or not.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\"></div></div>\n<!-- /wp:group -->','374 Curry Avenue','','inherit','closed','closed','','94-revision-v1','','','2020-05-02 14:39:12','2020-05-02 14:39:12','',94,'https://374curry.com/2020/05/02/94-revision-v1/',0,'revision','',0),(121,1,'2020-05-02 14:49:32','2020-05-02 14:49:32','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:shortcode -->\n[weforms id=\"154\"]\n<!-- /wp:shortcode -->','Application','','publish','closed','closed','','application','','','2020-05-02 17:21:22','2020-05-02 17:21:22','',0,'https://374curry.com/?page_id=121',0,'page','',0),(201,1,'2020-05-02 17:21:19','2020-05-02 17:21:19','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:shortcode -->\n[weforms id=\"154\"]\n<!-- /wp:shortcode -->','Application','','inherit','closed','closed','','121-revision-v1','','','2020-05-02 17:21:19','2020-05-02 17:21:19','',121,'https://374curry.com/2020/05/02/121-revision-v1/',0,'revision','',0),(122,1,'2020-05-02 14:49:32','2020-05-02 14:49:32','<!-- wp:paragraph -->\n<p>Fill out the OREA application <a href=\"https://www.getwhatyouwant.ca/wp-content/uploads/2012/08/RentalApplicationResidential410.pdf\">here</a> and then send completed form to 374curry@gmail.com</p>\n<!-- /wp:paragraph -->','Application','','inherit','closed','closed','','121-revision-v1','','','2020-05-02 14:49:32','2020-05-02 14:49:32','',121,'https://374curry.com/2020/05/02/121-revision-v1/',0,'revision','',0),(123,1,'2020-05-02 14:55:17','2020-05-02 14:55:17','','Apply','','publish','closed','closed','','apply','','','2020-05-03 16:44:07','2020-05-03 16:44:07','',0,'https://374curry.com/?p=123',7,'nav_menu_item','',0),(132,1,'2020-05-02 15:43:55','2020-05-02 15:43:55','','Default Kit','','publish','closed','closed','','default-kit','','','2020-05-02 15:43:55','2020-05-02 15:43:55','',0,'https://374curry.com/?elementor_library=default-kit',0,'elementor_library','',0),(134,1,'2020-05-02 15:48:14','2020-05-02 15:48:14','<!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} -->\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" width=\"293\" height=\"220\"/></figure>\n<!-- /wp:image -->\n<!-- wp:paragraph -->\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>Laundry in both units</p>\n<!-- /wp:paragraph -->\n<!-- wp:columns -->\n<!-- wp:column -->\n<!-- wp:image {\"id\":108,\"width\":171,\"height\":144,\"sizeSlug\":\"large\"} -->\n<figure><a href=\"https://www.chicsoaps.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512.jpg\" alt=\"\" width=\"171\" height=\"144\"/></a></figure>\n<!-- /wp:image -->\n<!-- /wp:column -->\n<!-- wp:column -->\n<!-- wp:image {\"id\":109,\"width\":159,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure><a href=\"https://fitatfortyplus.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/logo-REV.png\" alt=\"\" width=\"159\" height=\"145\"/></a></figure>\n<!-- /wp:image -->\n<!-- /wp:column -->\n<!-- wp:column -->\n<!-- wp:image {\"id\":116,\"width\":134,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure><a href=\"https://classerly.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG-1-942x1024.png\" alt=\"\" width=\"134\" height=\"145\"/></a></figure>\n<!-- /wp:image -->\n<!-- /wp:column -->\n<!-- /wp:columns -->\n<!-- wp:list -->\n<ul><li><strong>UPSTAIRS 3 bedroom $1995 all utilities included</strong></li><li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:</strong></li></ul>\n<!-- /wp:list -->\n<!-- wp:list -->\n<ul><li><em><strong>UPSTAIRS Rooms 590 all utilities included</strong> </em></li><li><strong><em>BASEMENT Rooms 3 bedroom $500 all utilities included</em></strong></li></ul>\n<!-- /wp:list -->\n<!-- wp:list -->\n<ul><li>I purchased this home last year. I have redone:</li><li>plumbing,</li><li>electrical,</li><li>furnace, air conditioner with smart thermostat</li><li>walls,</li><li>floors,</li><li>lighting,</li><li>bathrooms, kitchens,</li><li>roof,</li><li>siding,</li><li>insulation.</li><li>Exterior lighting.</li></ul>\n<!-- /wp:list -->\n<!-- wp:paragraph -->\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>The upstairs unit will be $1995 all utilities included.<br>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br>Because it is new the market you have the option of it being furnished or not.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<!-- /wp:paragraph -->\n<!-- wp:group -->\n<!-- wp:columns -->\n<!-- wp:column -->\n<!-- /wp:column -->\n<!-- wp:column -->\n<!-- /wp:column -->\n<!-- wp:column -->\n<!-- /wp:column -->\n<!-- /wp:columns -->\n<!-- /wp:group -->\n<!-- wp:group -->\n<!-- wp:gallery {\"ids\":[125,126,127,128,null]} -->\n<figure><ul><li><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174606-1024x768.jpg\" alt=\"\" data-id=\"125\" data-link=\"https://374curry.com/homepage/img_20200321_174606/\"/></figure></li><li><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174555-1024x768.jpg\" alt=\"\" data-id=\"126\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174555-scaled.jpg\" data-link=\"https://374curry.com/homepage/img_20200321_174555/\"/></figure></li><li><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174606-1-1024x768.jpg\" alt=\"\" data-id=\"127\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174606-1-scaled.jpg\" data-link=\"https://374curry.com/homepage/img_20200321_174606-1/\"/></figure></li><li><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1-1024x768.jpg\" alt=\"\" data-id=\"128\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1-scaled.jpg\" data-link=\"https://374curry.com/homepage/img_20200321_174621-1/\"/></figure></li><li><figure><img src=\"blob:https://374curry.com/304f4b9c-bcf1-4f22-b701-d3b2f3cf7e0e\"/></figure></li></ul></figure>\n<!-- /wp:gallery -->\n<!-- /wp:group -->		\n				<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1-150x150.jpg\" alt=\"IMG_20200321_174621-1\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/51l-ksW0cUL._AC_SL1000_-150x150.jpg\" alt=\"51l-ksW0cUL._AC_SL1000_\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174206-150x150.jpg\" alt=\"Resized_20200427_174206\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174159-150x150.jpg\" alt=\"Resized_20200427_174159\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174150-150x150.jpg\" alt=\"Resized_20200427_174150\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_153357-150x150.jpg\" alt=\"IMG_20200429_153357\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_152721-150x150.jpg\" alt=\"IMG_20200429_152721\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143458-150x150.jpg\" alt=\"IMG_20200429_143458\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143426-150x150.jpg\" alt=\"IMG_20200429_143426\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143436-150x150.jpg\" alt=\"IMG_20200429_143436\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143439-150x150.jpg\" alt=\"IMG_20200429_143439\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143327-150x150.jpg\" alt=\"Basement Bedroom and Living Room (bedroom door not yet installed)\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143320-150x150.jpg\" alt=\"Basement LLiving Room\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143310-150x150.jpg\" alt=\"Basement Kitchen\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143252-150x150.jpg\" alt=\"Basement Bathroom\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143217-150x150.jpg\" alt=\"Basement Separate Entrance\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143201-150x150.jpg\" alt=\"IMG_20200429_143201\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143143-150x150.jpg\" alt=\"IMG_20200429_143143\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-150x150.jpg\" alt=\"IMG_20200429_142925\" /></figure>			\n						Previous\n						Next\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=374%20curry%20avenue%2C%20Windsor%2C%20Ontario&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"374 curry avenue, Windsor, Ontario\"></iframe>','374 Curry Avenue','','inherit','closed','closed','','94-revision-v1','','','2020-05-02 15:48:14','2020-05-02 15:48:14','',94,'https://374curry.com/2020/05/02/94-revision-v1/',0,'revision','',0),(125,1,'2020-05-02 15:03:06','2020-05-02 15:03:06','','IMG_20200321_174606','','inherit','open','closed','','img_20200321_174606','','','2020-05-02 15:03:06','2020-05-02 15:03:06','',94,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174606.jpg',0,'attachment','image/jpeg',0),(126,1,'2020-05-02 15:04:15','2020-05-02 15:04:15','','IMG_20200321_174555','','inherit','open','closed','','img_20200321_174555','','','2020-05-02 15:04:15','2020-05-02 15:04:15','',94,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174555.jpg',0,'attachment','image/jpeg',0),(127,1,'2020-05-02 15:04:31','2020-05-02 15:04:31','','IMG_20200321_174606-1','','inherit','open','closed','','img_20200321_174606-1','','','2020-05-02 15:04:31','2020-05-02 15:04:31','',94,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174606-1.jpg',0,'attachment','image/jpeg',0),(128,1,'2020-05-02 15:04:51','2020-05-02 15:04:51','','IMG_20200321_174621-1','','inherit','open','closed','','img_20200321_174621-1','','','2020-05-02 15:04:51','2020-05-02 15:04:51','',94,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1.jpg',0,'attachment','image/jpeg',0),(129,1,'2020-05-02 15:05:06','2020-05-02 15:05:06','','IMG_20200321_175223','','inherit','open','closed','','img_20200321_175223','','','2020-05-02 15:05:06','2020-05-02 15:05:06','',94,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_175223.jpg',0,'attachment','image/jpeg',0),(130,1,'2020-05-02 15:41:42','2020-05-02 15:41:42','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2020-05-02 15:41:42','2020-05-02 15:41:42','',0,'https://374curry.com/wp-content/uploads/2020/05/woocommerce-placeholder.png',0,'attachment','image/png',0),(131,1,'2020-05-02 15:43:23','2020-05-02 15:43:23','<!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" class=\"wp-image-12\" width=\"293\" height=\"220\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Laundry in both units</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":108,\"width\":171,\"height\":144,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://www.chicsoaps.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512.jpg\" alt=\"\" class=\"wp-image-108\" width=\"171\" height=\"144\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":109,\"width\":159,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://fitatfortyplus.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/logo-REV.png\" alt=\"\" class=\"wp-image-109\" width=\"159\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":116,\"width\":134,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://classerly.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG-1-942x1024.png\" alt=\"\" class=\"wp-image-116\" width=\"134\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:list -->\n<ul><li><strong>UPSTAIRS 3 bedroom $1995 all utilities included</strong></li><li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><em><span class=\"has-inline-color has-vivid-red-color\"><strong>UPSTAIRS Rooms 590 all utilities included</strong> </span></em></li><li><strong><em><span class=\"has-inline-color has-vivid-red-color\">BASEMENT Rooms 3 bedroom $500 all utilities included</span></em></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>I purchased this home last year. I have redone:</li><li>plumbing,</li><li>electrical,</li><li>furnace, air conditioner with smart thermostat</li><li>walls,</li><li>floors,</li><li>lighting,</li><li>bathrooms, kitchens,</li><li>roof,</li><li>siding,</li><li>insulation.</li><li>Exterior lighting.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The upstairs unit will be $1995 all utilities included.<br>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br>Because it is new the market you have the option of it being furnished or not.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\"><!-- wp:gallery {\"ids\":[125,126,127,128,null]} -->\n<figure class=\"wp-block-gallery columns-3 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174606-1024x768.jpg\" alt=\"\" data-id=\"125\" data-link=\"https://374curry.com/homepage/img_20200321_174606/\" class=\"wp-image-125\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174555-1024x768.jpg\" alt=\"\" data-id=\"126\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174555-scaled.jpg\" data-link=\"https://374curry.com/homepage/img_20200321_174555/\" class=\"wp-image-126\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174606-1-1024x768.jpg\" alt=\"\" data-id=\"127\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174606-1-scaled.jpg\" data-link=\"https://374curry.com/homepage/img_20200321_174606-1/\" class=\"wp-image-127\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1-1024x768.jpg\" alt=\"\" data-id=\"128\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1-scaled.jpg\" data-link=\"https://374curry.com/homepage/img_20200321_174621-1/\" class=\"wp-image-128\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"blob:https://374curry.com/304f4b9c-bcf1-4f22-b701-d3b2f3cf7e0e\"/></figure></li></ul></figure>\n<!-- /wp:gallery --></div></div>\n<!-- /wp:group -->','374 Curry Avenue','','inherit','closed','closed','','94-revision-v1','','','2020-05-02 15:43:23','2020-05-02 15:43:23','',94,'https://374curry.com/2020/05/02/94-revision-v1/',0,'revision','',0),(138,1,'2020-05-02 15:52:54','2020-05-02 15:52:54','<p></p>\n\n<!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} -->\n</p>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" width=\"293\" height=\"220\" /></figure>\n<p>\n<!-- /wp:image -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>Laundry in both units</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":108,\"width\":171,\"height\":144,\"sizeSlug\":\"large\"} -->\n</p>\n<figure><a href=\"https://www.chicsoaps.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512.jpg\" alt=\"\" width=\"171\" height=\"144\" /></a></figure>\n<p>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":109,\"width\":159,\"height\":145,\"sizeSlug\":\"large\"} -->\n</p>\n<figure><a href=\"https://fitatfortyplus.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/logo-REV.png\" alt=\"\" width=\"159\" height=\"145\" /></a></figure>\n<p>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":116,\"width\":134,\"height\":145,\"sizeSlug\":\"large\"} -->\n</p>\n<figure><a href=\"https://classerly.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG-1-942x1024.png\" alt=\"\" width=\"134\" height=\"145\" /></a></figure>\n<p>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<p></p>\n<p></p>\n\n<!-- wp:list -->\n</p>\n<ul>\n<li><strong>UPSTAIRS 3 bedroom $1995 all utilities included</strong></li>\n<li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:</strong></li>\n</ul>\n<p>\n<!-- /wp:list -->\n\n<p></p>\n<p></p>\n\n<!-- wp:list -->\n</p>\n<ul>\n<li><em><strong>UPSTAIRS Rooms 590 all utilities included</strong> </em></li>\n<li><strong><em>BASEMENT Rooms 3 bedroom $500 all utilities included</em></strong></li>\n</ul>\n<p>\n<!-- /wp:list -->\n\n<p></p>\n<p></p>\n\n<!-- wp:list -->\n</p>\n<p>I purchased this home last year. I have redone:</p>\n<ul>\n<li>plumbing,</li>\n<li>electrical,</li>\n<li>furnace, air conditioner with smart thermostat</li>\n<li>walls,</li>\n<li>floors,</li>\n<li>lighting,</li>\n<li>bathrooms, kitchens,</li>\n<li>roof,</li>\n<li>siding,</li>\n<li>insulation.</li>\n<li>Exterior lighting.</li>\n</ul>\n<p>\n<!-- /wp:list -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br />We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br />Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br />There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>The upstairs unit will be $1995 all utilities included.<br />All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br />Because it is new the market you have the option of it being furnished or not.</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:paragraph -->\n</p>\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<p>\n<!-- /wp:paragraph -->\n\n<p></p>\n<p></p>\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n</p>\n \n<p>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n</p>\n \n<p>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n</p>\n \n<p>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:group -->','374 Curry Avenue','','inherit','closed','closed','','94-revision-v1','','','2020-05-02 15:52:54','2020-05-02 15:52:54','',94,'https://374curry.com/2020/05/02/94-revision-v1/',0,'revision','',0),(136,1,'2020-05-02 15:50:38','2020-05-02 15:50:38','<p><!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} --></p>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" width=\"293\" height=\"220\" scale=\"0\"></figure>\n<p><!-- /wp:image --></p>\n<p><!-- wp:paragraph --></p>\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>Laundry in both units</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:columns --></p>\n<p><!-- wp:column --></p>\n<p><!-- wp:image {\"id\":108,\"width\":171,\"height\":144,\"sizeSlug\":\"large\"} --></p>\n<figure><a href=\"https://www.chicsoaps.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512.jpg\" alt=\"\" width=\"171\" height=\"144\" scale=\"0\"></a></figure>\n<p><!-- /wp:image --></p>\n<p><!-- /wp:column --></p>\n<p><!-- wp:column --></p>\n<p><!-- wp:image {\"id\":109,\"width\":159,\"height\":145,\"sizeSlug\":\"large\"} --></p>\n<figure><a href=\"https://fitatfortyplus.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/logo-REV.png\" alt=\"\" width=\"159\" height=\"145\" scale=\"0\"></a></figure>\n<p><!-- /wp:image --></p>\n<p><!-- /wp:column --></p>\n<p><!-- wp:column --></p>\n<p><!-- wp:image {\"id\":116,\"width\":134,\"height\":145,\"sizeSlug\":\"large\"} --></p>\n<figure><a href=\"https://classerly.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG-1-942x1024.png\" alt=\"\" width=\"134\" height=\"145\" scale=\"0\"></a></figure>\n<p><!-- /wp:image --></p>\n<p><!-- /wp:column --></p>\n<p><!-- /wp:columns --></p>\n<p><!-- wp:list --></p>\n<ul>\n<li><strong>UPSTAIRS 3 bedroom $1995 all utilities included</strong></li>\n<li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:</strong></li>\n</ul>\n<p><!-- /wp:list --></p>\n<p><!-- wp:list --></p>\n<ul>\n<li><em><strong>UPSTAIRS Rooms 590 all utilities included</strong> </em></li>\n<li><strong><em>BASEMENT Rooms 3 bedroom $500 all utilities included</em></strong></li>\n</ul>\n<p><!-- /wp:list --></p>\n<p><!-- wp:list --></p>\n<ul>\n<li>I purchased this home last year. I have redone:</li>\n<li>plumbing,</li>\n<li>electrical,</li>\n<li>furnace, air conditioner with smart thermostat</li>\n<li>walls,</li>\n<li>floors,</li>\n<li>lighting,</li>\n<li>bathrooms, kitchens,</li>\n<li>roof,</li>\n<li>siding,</li>\n<li>insulation.</li>\n<li>Exterior lighting.</li>\n</ul>\n<p><!-- /wp:list --></p>\n<p><!-- wp:paragraph --></p>\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>The upstairs unit will be $1995 all utilities included.<br>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br>Because it is new the market you have the option of it being furnished or not.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:group --></p>\n<p><!-- wp:columns --></p>\n<p><!-- wp:column --></p>\n<p><!-- /wp:column --></p>\n<p><!-- wp:column --></p>\n<p><!-- /wp:column --></p>\n<p><!-- wp:column --></p>\n<br>\n<p><!-- /wp:gallery --></p>\n<p><!-- /wp:group --></p>		\n				<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1-150x150.jpg\" alt=\"IMG_20200321_174621-1\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/51l-ksW0cUL._AC_SL1000_-150x150.jpg\" alt=\"51l-ksW0cUL._AC_SL1000_\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174206-150x150.jpg\" alt=\"Resized_20200427_174206\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174159-150x150.jpg\" alt=\"Resized_20200427_174159\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174150-150x150.jpg\" alt=\"Resized_20200427_174150\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_153357-150x150.jpg\" alt=\"IMG_20200429_153357\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_152721-150x150.jpg\" alt=\"IMG_20200429_152721\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143458-150x150.jpg\" alt=\"IMG_20200429_143458\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143426-150x150.jpg\" alt=\"IMG_20200429_143426\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143436-150x150.jpg\" alt=\"IMG_20200429_143436\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143439-150x150.jpg\" alt=\"IMG_20200429_143439\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143327-150x150.jpg\" alt=\"Basement Bedroom and Living Room (bedroom door not yet installed)\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143320-150x150.jpg\" alt=\"Basement LLiving Room\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143310-150x150.jpg\" alt=\"Basement Kitchen\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143252-150x150.jpg\" alt=\"Basement Bathroom\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143217-150x150.jpg\" alt=\"Basement Separate Entrance\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143201-150x150.jpg\" alt=\"IMG_20200429_143201\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143143-150x150.jpg\" alt=\"IMG_20200429_143143\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-150x150.jpg\" alt=\"IMG_20200429_142925\" /></figure>			\n						Previous\n						Next\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=374%20curry%20avenue%2C%20Windsor%2C%20Ontario&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"374 curry avenue, Windsor, Ontario\"></iframe>','374 Curry Avenue','','inherit','closed','closed','','94-revision-v1','','','2020-05-02 15:50:38','2020-05-02 15:50:38','',94,'https://374curry.com/2020/05/02/94-revision-v1/',0,'revision','',0),(135,1,'2020-05-02 15:49:35','2020-05-02 15:49:35','<!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} -->\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" width=\"293\" height=\"220\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Laundry in both units</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":108,\"width\":171,\"height\":144,\"sizeSlug\":\"large\"} -->\n<figure><a href=\"https://www.chicsoaps.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512.jpg\" alt=\"\" width=\"171\" height=\"144\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":109,\"width\":159,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure><a href=\"https://fitatfortyplus.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/logo-REV.png\" alt=\"\" width=\"159\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":116,\"width\":134,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure><a href=\"https://classerly.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG-1-942x1024.png\" alt=\"\" width=\"134\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:list -->\n<ul><li><strong>UPSTAIRS 3 bedroom $1995 all utilities included</strong></li><li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><em><strong>UPSTAIRS Rooms 590 all utilities included</strong> </em></li><li><strong><em>BASEMENT Rooms 3 bedroom $500 all utilities included</em></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>I purchased this home last year. I have redone:</li><li>plumbing,</li><li>electrical,</li><li>furnace, air conditioner with smart thermostat</li><li>walls,</li><li>floors,</li><li>lighting,</li><li>bathrooms, kitchens,</li><li>roof,</li><li>siding,</li><li>insulation.</li><li>Exterior lighting.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The upstairs unit will be $1995 all utilities included.<br>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br>Because it is new the market you have the option of it being furnished or not.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column /-->\n\n<!-- wp:column /-->\n\n<!-- wp:column /--></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\"><!-- wp:gallery {\"ids\":[125,126,127,128,null]} -->\n<figure><ul><li><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174606-1024x768.jpg\" alt=\"\" data-id=\"125\" data-link=\"https://374curry.com/homepage/img_20200321_174606/\"/></figure></li><li><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174555-1024x768.jpg\" alt=\"\" data-id=\"126\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174555-scaled.jpg\" data-link=\"https://374curry.com/homepage/img_20200321_174555/\"/></figure></li><li><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174606-1-1024x768.jpg\" alt=\"\" data-id=\"127\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174606-1-scaled.jpg\" data-link=\"https://374curry.com/homepage/img_20200321_174606-1/\"/></figure></li><li><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1-1024x768.jpg\" alt=\"\" data-id=\"128\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1-scaled.jpg\" data-link=\"https://374curry.com/homepage/img_20200321_174621-1/\"/></figure></li><li><figure><img src=\"blob:https://374curry.com/304f4b9c-bcf1-4f22-b701-d3b2f3cf7e0e\"/></figure></li></ul></figure>\n<!-- /wp:gallery --></div></div>\n<!-- /wp:group -->\n\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1-150x150.jpg\" alt=\"IMG_20200321_174621-1\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/51l-ksW0cUL._AC_SL1000_-150x150.jpg\" alt=\"51l-ksW0cUL._AC_SL1000_\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174206-150x150.jpg\" alt=\"Resized_20200427_174206\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174159-150x150.jpg\" alt=\"Resized_20200427_174159\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174150-150x150.jpg\" alt=\"Resized_20200427_174150\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_153357-150x150.jpg\" alt=\"IMG_20200429_153357\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_152721-150x150.jpg\" alt=\"IMG_20200429_152721\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143458-150x150.jpg\" alt=\"IMG_20200429_143458\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143426-150x150.jpg\" alt=\"IMG_20200429_143426\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143436-150x150.jpg\" alt=\"IMG_20200429_143436\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143439-150x150.jpg\" alt=\"IMG_20200429_143439\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143327-150x150.jpg\" alt=\"Basement Bedroom and Living Room (bedroom door not yet installed)\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143320-150x150.jpg\" alt=\"Basement LLiving Room\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143310-150x150.jpg\" alt=\"Basement Kitchen\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143252-150x150.jpg\" alt=\"Basement Bathroom\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143217-150x150.jpg\" alt=\"Basement Separate Entrance\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143201-150x150.jpg\" alt=\"IMG_20200429_143201\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143143-150x150.jpg\" alt=\"IMG_20200429_143143\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-150x150.jpg\" alt=\"IMG_20200429_142925\"></figure>\n<p>						Previous<br>\n						Next<br>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=374%20curry%20avenue%2C%20Windsor%2C%20Ontario&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"374 curry avenue, Windsor, Ontario\"></iframe></p>','374 Curry Avenue','','inherit','closed','closed','','94-revision-v1','','','2020-05-02 15:49:35','2020-05-02 15:49:35','',94,'https://374curry.com/2020/05/02/94-revision-v1/',0,'revision','',0),(137,1,'2020-05-02 15:52:08','2020-05-02 15:52:08','<p><!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} --></p>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" width=\"293\" height=\"220\" /></figure>\n<p><!-- /wp:image --></p>\n<p><!-- wp:paragraph --></p>\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>Laundry in both units</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:columns --></p>\n<p><!-- wp:column --></p>\n<p><!-- wp:image {\"id\":108,\"width\":171,\"height\":144,\"sizeSlug\":\"large\"} --></p>\n<figure><a href=\"https://www.chicsoaps.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512.jpg\" alt=\"\" width=\"171\" height=\"144\" /></a></figure>\n<p><!-- /wp:image --></p>\n<p><!-- /wp:column --></p>\n<p><!-- wp:column --></p>\n<p><!-- wp:image {\"id\":109,\"width\":159,\"height\":145,\"sizeSlug\":\"large\"} --></p>\n<figure><a href=\"https://fitatfortyplus.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/logo-REV.png\" alt=\"\" width=\"159\" height=\"145\" /></a></figure>\n<p><!-- /wp:image --></p>\n<p><!-- /wp:column --></p>\n<p><!-- wp:column --></p>\n<p><!-- wp:image {\"id\":116,\"width\":134,\"height\":145,\"sizeSlug\":\"large\"} --></p>\n<figure><a href=\"https://classerly.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG-1-942x1024.png\" alt=\"\" width=\"134\" height=\"145\" /></a></figure>\n<p><!-- /wp:image --></p>\n<p><!-- /wp:column --></p>\n<p><!-- /wp:columns --></p>\n<p><!-- wp:list --></p>\n<ul>\n<li><strong>UPSTAIRS 3 bedroom $1995 all utilities included</strong></li>\n<li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:</strong></li>\n</ul>\n<p><!-- /wp:list --></p>\n<p><!-- wp:list --></p>\n<ul>\n<li><em><strong>UPSTAIRS Rooms 590 all utilities included</strong> </em></li>\n<li><strong><em>BASEMENT Rooms 3 bedroom $500 all utilities included</em></strong></li>\n</ul>\n<p><!-- /wp:list --></p>\n<p><!-- wp:list --></p>\n<p>I purchased this home last year. I have redone:</p>\n<ul>\n<li>plumbing,</li>\n<li>electrical,</li>\n<li>furnace, air conditioner with smart thermostat</li>\n<li>walls,</li>\n<li>floors,</li>\n<li>lighting,</li>\n<li>bathrooms, kitchens,</li>\n<li>roof,</li>\n<li>siding,</li>\n<li>insulation.</li>\n<li>Exterior lighting.</li>\n</ul>\n<p><!-- /wp:list --></p>\n<p><!-- wp:paragraph --></p>\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br />We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br />Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br />There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>The upstairs unit will be $1995 all utilities included.<br />All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br />Because it is new the market you have the option of it being furnished or not.</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:group --></p>\n<p><!-- wp:columns --></p>\n<p><!-- wp:column --></p>\n \n<p><!-- /wp:column --></p>\n<p><!-- wp:column --></p>\n \n<p><!-- /wp:column --></p>\n<p><!-- wp:column --></p>\n \n<p><!-- /wp:gallery --></p>\n<p><!-- /wp:group --></p>		\n				<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1-150x150.jpg\" alt=\"IMG_20200321_174621-1\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/51l-ksW0cUL._AC_SL1000_-150x150.jpg\" alt=\"51l-ksW0cUL._AC_SL1000_\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174206-150x150.jpg\" alt=\"Resized_20200427_174206\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174159-150x150.jpg\" alt=\"Resized_20200427_174159\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174150-150x150.jpg\" alt=\"Resized_20200427_174150\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_153357-150x150.jpg\" alt=\"IMG_20200429_153357\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_152721-150x150.jpg\" alt=\"IMG_20200429_152721\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143458-150x150.jpg\" alt=\"IMG_20200429_143458\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143426-150x150.jpg\" alt=\"IMG_20200429_143426\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143436-150x150.jpg\" alt=\"IMG_20200429_143436\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143439-150x150.jpg\" alt=\"IMG_20200429_143439\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143327-150x150.jpg\" alt=\"Basement Bedroom and Living Room (bedroom door not yet installed)\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143320-150x150.jpg\" alt=\"Basement LLiving Room\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143310-150x150.jpg\" alt=\"Basement Kitchen\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143252-150x150.jpg\" alt=\"Basement Bathroom\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143217-150x150.jpg\" alt=\"Basement Separate Entrance\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143201-150x150.jpg\" alt=\"IMG_20200429_143201\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143143-150x150.jpg\" alt=\"IMG_20200429_143143\" /></figure><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-150x150.jpg\" alt=\"IMG_20200429_142925\" /></figure>			\n						Previous\n						Next\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=374%20curry%20avenue%2C%20Windsor%2C%20Ontario&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"374 curry avenue, Windsor, Ontario\"></iframe>','374 Curry Avenue','','inherit','closed','closed','','94-revision-v1','','','2020-05-02 15:52:08','2020-05-02 15:52:08','',94,'https://374curry.com/2020/05/02/94-revision-v1/',0,'revision','',0),(144,1,'2020-05-02 16:01:16','2020-05-02 16:01:16','<!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" class=\"wp-image-12\" width=\"293\" height=\"220\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Laundry in both units</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":108,\"width\":171,\"height\":144,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://www.chicsoaps.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512.jpg\" alt=\"\" class=\"wp-image-108\" width=\"171\" height=\"144\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":109,\"width\":159,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://fitatfortyplus.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/logo-REV.png\" alt=\"\" class=\"wp-image-109\" width=\"159\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":116,\"width\":134,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://classerly.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG-1-942x1024.png\" alt=\"\" class=\"wp-image-116\" width=\"134\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:list -->\n<ul><li><strong>UPSTAIRS 3 bedroom $1995 all utilities included</strong></li><li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><em><span class=\"has-inline-color has-vivid-red-color\"><strong>UPSTAIRS Rooms 590 all utilities included</strong> </span></em></li><li><strong><em><span class=\"has-inline-color has-vivid-red-color\">BASEMENT Rooms 3 bedroom $500 all utilities included</span></em></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>I purchased this home last year. I have redone:</li><li>plumbing,</li><li>electrical,</li><li>furnace, air conditioner with smart thermostat</li><li>walls,</li><li>floors,</li><li>lighting,</li><li>bathrooms, kitchens,</li><li>roof,</li><li>siding,</li><li>insulation.</li><li>Exterior lighting.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The upstairs unit will be $1995 all utilities included.<br>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br>Because it is new the market you have the option of it being furnished or not.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:jetpack/slideshow {\"autoplay\":true,\"ids\":[142,null,null,null],\"sizeSlug\":\"medium\"} -->\n<div class=\"wp-block-jetpack-slideshow aligncenter\" data-autoplay=\"true\" data-delay=\"3\" data-effect=\"slide\"><div class=\"wp-block-jetpack-slideshow_container swiper-container\"><ul class=\"wp-block-jetpack-slideshow_swiper-wrapper swiper-wrapper\"><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-142\" data-id=\"142\" src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-3-1024x768.jpg\"/></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide is-transient\"><figure><img class=\"wp-block-jetpack-slideshow_image wp-image-undefined\" src=\"blob:https://374curry.com/8e681c53-3785-4875-ab78-891e5035f2a1\"/><span class=\"components-spinner\"></span></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide is-transient\"><figure><img class=\"wp-block-jetpack-slideshow_image wp-image-undefined\" src=\"blob:https://374curry.com/980ad1d1-9f54-4cf8-ae5e-55ceafe44c98\"/><span class=\"components-spinner\"></span></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide is-transient\"><figure><img class=\"wp-block-jetpack-slideshow_image wp-image-undefined\" src=\"blob:https://374curry.com/fde33f7e-ae84-48f9-bd4e-96c4c76c60ee\"/><span class=\"components-spinner\"></span></figure></li></ul><a class=\"wp-block-jetpack-slideshow_button-prev swiper-button-prev swiper-button-white\" role=\"button\"></a><a class=\"wp-block-jetpack-slideshow_button-next swiper-button-next swiper-button-white\" role=\"button\"></a><a aria-label=\"Pause Slideshow\" class=\"wp-block-jetpack-slideshow_button-pause\" role=\"button\"></a><div class=\"wp-block-jetpack-slideshow_pagination swiper-pagination swiper-pagination-white\"></div></div></div>\n<!-- /wp:jetpack/slideshow -->','374 Curry Avenue','','inherit','closed','closed','','94-revision-v1','','','2020-05-02 16:01:16','2020-05-02 16:01:16','',94,'https://374curry.com/2020/05/02/94-revision-v1/',0,'revision','',0),(141,1,'2020-05-02 15:57:02','2020-05-02 15:57:02','<!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" class=\"wp-image-12\" width=\"293\" height=\"220\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Laundry in both units</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":108,\"width\":171,\"height\":144,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://www.chicsoaps.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512.jpg\" alt=\"\" class=\"wp-image-108\" width=\"171\" height=\"144\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":109,\"width\":159,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://fitatfortyplus.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/logo-REV.png\" alt=\"\" class=\"wp-image-109\" width=\"159\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":116,\"width\":134,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://classerly.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG-1-942x1024.png\" alt=\"\" class=\"wp-image-116\" width=\"134\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:list -->\n<ul><li><strong>UPSTAIRS 3 bedroom $1995 all utilities included</strong></li><li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><em><span class=\"has-inline-color has-vivid-red-color\"><strong>UPSTAIRS Rooms 590 all utilities included</strong> </span></em></li><li><strong><em><span class=\"has-inline-color has-vivid-red-color\">BASEMENT Rooms 3 bedroom $500 all utilities included</span></em></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>I purchased this home last year. I have redone:</li><li>plumbing,</li><li>electrical,</li><li>furnace, air conditioner with smart thermostat</li><li>walls,</li><li>floors,</li><li>lighting,</li><li>bathrooms, kitchens,</li><li>roof,</li><li>siding,</li><li>insulation.</li><li>Exterior lighting.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The upstairs unit will be $1995 all utilities included.<br>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br>Because it is new the market you have the option of it being furnished or not.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\"><!-- wp:gallery {\"ids\":[125,126,127,128,null]} -->\n<figure class=\"wp-block-gallery columns-3 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174606-1024x768.jpg\" alt=\"\" data-id=\"125\" data-link=\"https://374curry.com/homepage/img_20200321_174606/\" class=\"wp-image-125\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174555-1024x768.jpg\" alt=\"\" data-id=\"126\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174555-scaled.jpg\" data-link=\"https://374curry.com/homepage/img_20200321_174555/\" class=\"wp-image-126\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174606-1-1024x768.jpg\" alt=\"\" data-id=\"127\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174606-1-scaled.jpg\" data-link=\"https://374curry.com/homepage/img_20200321_174606-1/\" class=\"wp-image-127\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1-1024x768.jpg\" alt=\"\" data-id=\"128\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1-scaled.jpg\" data-link=\"https://374curry.com/homepage/img_20200321_174621-1/\" class=\"wp-image-128\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"blob:https://374curry.com/304f4b9c-bcf1-4f22-b701-d3b2f3cf7e0e\"/></figure></li></ul></figure>\n<!-- /wp:gallery --></div></div>\n<!-- /wp:group -->','374 Curry Avenue','','inherit','closed','closed','','94-revision-v1','','','2020-05-02 15:57:02','2020-05-02 15:57:02','',94,'https://374curry.com/2020/05/02/94-revision-v1/',0,'revision','',0),(140,1,'2020-05-02 15:55:07','2020-05-02 15:55:07','<!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} -->\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" width=\"293\" height=\"220\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Laundry in both units</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":108,\"width\":171,\"height\":144,\"sizeSlug\":\"large\"} -->\n<figure><a href=\"https://www.chicsoaps.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512.jpg\" alt=\"\" width=\"171\" height=\"144\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":109,\"width\":159,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure><a href=\"https://fitatfortyplus.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/logo-REV.png\" alt=\"\" width=\"159\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":116,\"width\":134,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure><a href=\"https://classerly.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG-1-942x1024.png\" alt=\"\" width=\"134\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:list -->\n<ul><li><strong>UPSTAIRS 3 bedroom $1995 all utilities included</strong></li><li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><em><strong>UPSTAIRS Rooms 590 all utilities included</strong> </em></li><li><strong><em>BASEMENT Rooms 3 bedroom $500 all utilities included</em></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>I purchased this home last year. I have redone:</li><li>plumbing,</li><li>electrical,</li><li>furnace, air conditioner with smart thermostat</li><li>walls,</li><li>floors,</li><li>lighting,</li><li>bathrooms, kitchens,</li><li>roof,</li><li>siding,</li><li>insulation.</li><li>Exterior lighting.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The upstairs unit will be $1995 all utilities included.<br>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br>Because it is new the market you have the option of it being furnished or not.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column /-->\n\n<!-- wp:column /-->\n\n<!-- wp:column /--></div>\n<!-- /wp:columns --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\"><!-- wp:gallery {\"ids\":[125,126,127,128,null]} -->\n<figure><ul><li><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174606-1024x768.jpg\" alt=\"\" data-id=\"125\" data-link=\"https://374curry.com/homepage/img_20200321_174606/\"/></figure></li><li><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174555-1024x768.jpg\" alt=\"\" data-id=\"126\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174555-scaled.jpg\" data-link=\"https://374curry.com/homepage/img_20200321_174555/\"/></figure></li><li><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174606-1-1024x768.jpg\" alt=\"\" data-id=\"127\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174606-1-scaled.jpg\" data-link=\"https://374curry.com/homepage/img_20200321_174606-1/\"/></figure></li><li><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1-1024x768.jpg\" alt=\"\" data-id=\"128\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1-scaled.jpg\" data-link=\"https://374curry.com/homepage/img_20200321_174621-1/\"/></figure></li><li><figure><img src=\"blob:https://374curry.com/304f4b9c-bcf1-4f22-b701-d3b2f3cf7e0e\"/></figure></li></ul></figure>\n<!-- /wp:gallery --></div></div>\n<!-- /wp:group -->\n\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1-150x150.jpg\" alt=\"IMG_20200321_174621-1\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/51l-ksW0cUL._AC_SL1000_-150x150.jpg\" alt=\"51l-ksW0cUL._AC_SL1000_\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174206-150x150.jpg\" alt=\"Resized_20200427_174206\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174159-150x150.jpg\" alt=\"Resized_20200427_174159\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174150-150x150.jpg\" alt=\"Resized_20200427_174150\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_153357-150x150.jpg\" alt=\"IMG_20200429_153357\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_152721-150x150.jpg\" alt=\"IMG_20200429_152721\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143458-150x150.jpg\" alt=\"IMG_20200429_143458\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143426-150x150.jpg\" alt=\"IMG_20200429_143426\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143436-150x150.jpg\" alt=\"IMG_20200429_143436\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143439-150x150.jpg\" alt=\"IMG_20200429_143439\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143327-150x150.jpg\" alt=\"Basement Bedroom and Living Room (bedroom door not yet installed)\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143320-150x150.jpg\" alt=\"Basement LLiving Room\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143310-150x150.jpg\" alt=\"Basement Kitchen\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143252-150x150.jpg\" alt=\"Basement Bathroom\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143217-150x150.jpg\" alt=\"Basement Separate Entrance\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143201-150x150.jpg\" alt=\"IMG_20200429_143201\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143143-150x150.jpg\" alt=\"IMG_20200429_143143\"></figure>\n<figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-150x150.jpg\" alt=\"IMG_20200429_142925\"></figure>\n<p>						Previous<br>\n						Next<br>\n			<iframe frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"https://maps.google.com/maps?q=374%20curry%20avenue%2C%20Windsor%2C%20Ontario&amp;t=m&amp;z=10&amp;output=embed&amp;iwloc=near\" aria-label=\"374 curry avenue, Windsor, Ontario\"></iframe></p>','374 Curry Avenue','','inherit','closed','closed','','94-revision-v1','','','2020-05-02 15:55:07','2020-05-02 15:55:07','',94,'https://374curry.com/2020/05/02/94-revision-v1/',0,'revision','',0),(142,1,'2020-05-02 16:00:55','2020-05-02 16:00:55','','IMG_20200429_142925-3','','inherit','open','closed','','img_20200429_142925-3','','','2020-05-02 16:00:55','2020-05-02 16:00:55','',94,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-3.jpg',0,'attachment','image/jpeg',0),(143,1,'2020-05-02 16:01:10','2020-05-02 16:01:10','','IMG_20200429_143032-1','','inherit','open','closed','','img_20200429_143032-1','','','2020-05-02 16:01:10','2020-05-02 16:01:10','',94,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143032-1.jpg',0,'attachment','image/jpeg',0),(145,1,'2020-05-02 16:01:46','2020-05-02 16:01:46','','IMG_20200429_143436-1','','inherit','open','closed','','img_20200429_143436-1','','','2020-05-02 16:01:46','2020-05-02 16:01:46','',94,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143436-1.jpg',0,'attachment','image/jpeg',0),(146,1,'2020-05-02 16:02:22','2020-05-02 16:02:22','','IMG_20200429_143458-1','','inherit','open','closed','','img_20200429_143458-1','','','2020-05-02 16:02:22','2020-05-02 16:02:22','',94,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143458-1.jpg',0,'attachment','image/jpeg',0),(154,1,'2020-05-02 16:18:02','2020-05-02 16:18:02','','Application','','publish','closed','closed','','blank-form','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',0,'https://374curry.com/2020/05/02/blank-form/',0,'wpuf_contact_form','',0),(155,1,'2020-05-02 16:26:00','2020-05-02 16:26:00','a:20:{s:8:\"template\";s:10:\"name_field\";s:4:\"name\";s:15:\"name_7503024510\";s:5:\"label\";s:4:\"Name\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:6:\"inline\";s:3:\"yes\";s:9:\"hide_subs\";b:0;s:2:\"id\";i:155;s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}}','','','publish','closed','closed','','155','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/155/',0,'wpuf_input','',0),(156,1,'2020-05-02 16:26:00','2020-05-02 16:26:00','a:15:{s:8:\"template\";s:13:\"email_address\";s:4:\"name\";s:13:\"email_address\";s:5:\"label\";s:13:\"Email Address\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";s:0:\"\";s:2:\"id\";i:156;s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}}','','','publish','closed','closed','','156','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/156/',1,'wpuf_input','',0),(157,1,'2020-05-02 16:26:00','2020-05-02 16:26:00','a:17:{s:8:\"template\";s:10:\"date_field\";s:4:\"name\";s:20:\"desired_move_in_date\";s:5:\"label\";s:20:\"Desired Move in Date\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:6:\"format\";s:8:\"dd/mm/yy\";s:4:\"time\";s:0:\"\";s:15:\"is_publish_time\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:157;}','','','publish','closed','closed','','157','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/157/',2,'wpuf_input','',0),(158,1,'2020-05-02 16:26:00','2020-05-02 16:26:00','a:16:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:5:\"phone\";s:5:\"label\";s:5:\"Phone\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:158;}','','','publish','closed','closed','','158','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/158/',3,'wpuf_input','',0),(159,1,'2020-05-02 16:31:01','2020-05-02 16:31:01','a:18:{s:8:\"template\";s:14:\"textarea_field\";s:4:\"name\";s:25:\"current_residence_address\";s:5:\"label\";s:25:\"Current Residence Address\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:4:\"rich\";s:2:\"no\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:159;}','','','publish','closed','closed','','159','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/159/',4,'wpuf_input','',0),(160,1,'2020-05-02 16:31:01','2020-05-02 16:31:01','a:16:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:30:\"how_long_at_current_residence_\";s:5:\"label\";s:30:\"How long at current residence?\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:160;}','','','publish','closed','closed','','160','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/160/',5,'wpuf_input','',0),(161,1,'2020-05-02 16:31:01','2020-05-02 16:31:01','a:16:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:34:\"monthly_rent_at_previous_residence\";s:5:\"label\";s:34:\"Monthly Rent at Previous Residence\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:161;}','','','publish','closed','closed','','161','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/161/',11,'wpuf_input','',0),(162,1,'2020-05-02 16:31:01','2020-05-02 16:31:01','a:16:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:33:\"current_residence_landlord_s_name\";s:5:\"label\";s:33:\"Current Residence Landlord\'s Name\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:162;}','','','publish','closed','closed','','162','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/162/',6,'wpuf_input','',0),(163,1,'2020-05-02 16:31:01','2020-05-02 16:31:01','a:16:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:41:\"current_residence_landlord_contact_number\";s:5:\"label\";s:41:\"Current Residence Landlord Contact Number\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:163;}','','','publish','closed','closed','','163','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/163/',7,'wpuf_input','',0),(148,1,'2020-05-02 16:08:49','2020-05-02 16:08:49','<p>\n	<label>Email address: \n		<input type=\"email\" name=\"EMAIL\" placeholder=\"Your email address\" required />\n</label>\n</p>\n\n<p>\n	<input type=\"submit\" value=\"Sign up\" />\n</p>','Contact','','publish','closed','closed','','contact','','','2020-05-02 16:08:49','2020-05-02 16:08:49','',0,'https://374curry.com/mc4wp-form/contact/',0,'mc4wp-form','',0),(149,1,'2020-05-02 16:12:53','2020-05-02 16:12:53','','Contact Form','','publish','closed','closed','','contact-form','','','2020-05-02 16:12:53','2020-05-02 16:12:53','',0,'https://374curry.com/2020/05/02/contact-form/',0,'wpuf_contact_form','',0),(150,1,'2020-05-02 16:12:54','2020-05-02 16:12:54','a:20:{s:8:\"template\";s:10:\"name_field\";s:4:\"name\";s:4:\"name\";s:5:\"label\";s:4:\"Name\";s:8:\"required\";s:3:\"yes\";s:2:\"id\";i:0;s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"is_new\";b:1;s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:6:\"inline\";s:3:\"yes\";s:9:\"hide_subs\";b:0;}','','','publish','closed','closed','','150','','','2020-05-02 16:12:54','2020-05-02 16:12:54','',149,'https://374curry.com/2020/05/02/150/',0,'wpuf_input','',0),(151,1,'2020-05-02 16:12:54','2020-05-02 16:12:54','a:15:{s:8:\"template\";s:13:\"email_address\";s:4:\"name\";s:5:\"email\";s:5:\"label\";s:13:\"Email Address\";s:8:\"required\";s:3:\"yes\";s:2:\"id\";i:0;s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"is_new\";b:1;s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:9:\"duplicate\";s:0:\"\";}','','','publish','closed','closed','','151','','','2020-05-02 16:12:54','2020-05-02 16:12:54','',149,'https://374curry.com/2020/05/02/151/',1,'wpuf_input','',0),(152,1,'2020-05-02 16:12:54','2020-05-02 16:12:54','a:18:{s:8:\"template\";s:14:\"textarea_field\";s:4:\"name\";s:7:\"message\";s:5:\"label\";s:7:\"Message\";s:8:\"required\";s:3:\"yes\";s:2:\"id\";i:0;s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:6:\"is_new\";b:1;s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:4:\"rich\";s:2:\"no\";}','','','publish','closed','closed','','152','','','2020-05-02 16:12:54','2020-05-02 16:12:54','',149,'https://374curry.com/2020/05/02/152/',2,'wpuf_input','',0),(153,1,'2020-05-02 16:15:50','2020-05-02 16:15:50','<!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" class=\"wp-image-12\" width=\"293\" height=\"220\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Laundry in both units</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":108,\"width\":171,\"height\":144,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://www.chicsoaps.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512.jpg\" alt=\"\" class=\"wp-image-108\" width=\"171\" height=\"144\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":109,\"width\":159,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://fitatfortyplus.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/logo-REV.png\" alt=\"\" class=\"wp-image-109\" width=\"159\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":116,\"width\":134,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://classerly.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG-1-942x1024.png\" alt=\"\" class=\"wp-image-116\" width=\"134\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:list -->\n<ul><li><strong>UPSTAIRS 3 bedroom $1995 all utilities included</strong></li><li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><em><span class=\"has-inline-color has-vivid-red-color\"><strong>UPSTAIRS Rooms 590 all utilities included</strong> </span></em></li><li><strong><em><span class=\"has-inline-color has-vivid-red-color\">BASEMENT Rooms 3 bedroom $500 all utilities included</span></em></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>I purchased this home last year. I have redone:</li><li>plumbing,</li><li>electrical,</li><li>furnace, air conditioner with smart thermostat</li><li>walls,</li><li>floors,</li><li>lighting,</li><li>bathrooms, kitchens,</li><li>roof,</li><li>siding,</li><li>insulation.</li><li>Exterior lighting.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The upstairs unit will be $1995 all utilities included.<br>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br>Because it is new the market you have the option of it being furnished or not.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[142,72,80,35,37],\"columns\":4} -->\n<figure class=\"wp-block-gallery columns-4 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-3-1024x768.jpg\" alt=\"\" data-id=\"142\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-3-scaled.jpg\" data-link=\"https://374curry.com/homepage/img_20200429_142925-3/\" class=\"wp-image-142\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174206-497x1024.jpg\" alt=\"\" data-id=\"72\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174206.jpg\" data-link=\"https://374curry.com/upstairs-unit/resized_20200427_174206/\" class=\"wp-image-72\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/51h7P69vWL._AC_SL1000_.jpg\" alt=\"\" data-id=\"80\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/51h7P69vWL._AC_SL1000_.jpg\" data-link=\"https://374curry.com/smart-home/51h7p69vwl-_ac_sl1000_/\" class=\"wp-image-80\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143426-1024x768.jpg\" alt=\"\" data-id=\"35\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143426-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143426/\" class=\"wp-image-35\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143439-1024x768.jpg\" alt=\"\" data-id=\"37\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143439-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143439/\" class=\"wp-image-37\"/></figure></li></ul></figure>\n<!-- /wp:gallery -->','374 Curry Avenue','','inherit','closed','closed','','94-revision-v1','','','2020-05-02 16:15:50','2020-05-02 16:15:50','',94,'https://374curry.com/2020/05/02/94-revision-v1/',0,'revision','',0),(164,1,'2020-05-02 16:31:01','2020-05-02 16:31:01','a:18:{s:8:\"template\";s:14:\"textarea_field\";s:4:\"name\";s:36:\"reason_for_leaving_current_residence\";s:5:\"label\";s:36:\"Reason for Leaving Current Residence\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:4:\"rich\";s:2:\"no\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:164;}','','','publish','closed','closed','','164','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/164/',8,'wpuf_input','',0),(165,1,'2020-05-02 16:38:03','2020-05-02 16:38:03','a:16:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:38:\"monthly_rent_at_current_residence_copy\";s:5:\"label\";s:33:\"Monthly Rent at Current Residence\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:165;}','','','publish','closed','closed','','165','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/165/',9,'wpuf_input','',0),(166,1,'2020-05-02 16:38:03','2020-05-02 16:38:03','a:18:{s:8:\"template\";s:14:\"textarea_field\";s:4:\"name\";s:26:\"previous_residence_address\";s:5:\"label\";s:26:\"Previous Residence Address\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:4:\"rich\";s:2:\"no\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:166;}','','','publish','closed','closed','','166','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/166/',10,'wpuf_input','',0),(167,1,'2020-05-02 16:38:03','2020-05-02 16:38:03','a:16:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:31:\"how_long_at_previous_residence_\";s:5:\"label\";s:31:\"How long at previous residence?\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:167;}','','','publish','closed','closed','','167','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/167/',12,'wpuf_input','',0),(168,1,'2020-05-02 16:38:03','2020-05-02 16:38:03','a:16:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:34:\"previous_residence_landlord_s_name\";s:5:\"label\";s:34:\"Previous Residence Landlord\'s Name\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:168;}','','','publish','closed','closed','','168','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/168/',13,'wpuf_input','',0),(169,1,'2020-05-02 16:38:03','2020-05-02 16:38:03','a:17:{s:8:\"template\";s:11:\"radio_field\";s:4:\"name\";s:51:\"have_you_ever_been_evicted_from_a_rental_residence_\";s:5:\"label\";s:51:\"Have you ever been evicted from a rental residence?\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:169;}','','','publish','closed','closed','','169','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/169/',15,'wpuf_input','',0),(171,1,'2020-05-02 16:38:03','2020-05-02 16:38:03','a:16:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:42:\"previous_residence_landlord_contact_number\";s:5:\"label\";s:42:\"Previous Residence Landlord Contact Number\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:171;}','','','publish','closed','closed','','171','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/171/',14,'wpuf_input','',0),(172,1,'2020-05-02 16:48:40','2020-05-02 16:48:40','a:17:{s:8:\"template\";s:11:\"radio_field\";s:4:\"name\";s:66:\"have_you_missed_two_or_more_rental_payments_in_the_past_12_months_\";s:5:\"label\";s:66:\"Have you missed two or more rental payments in the past 12 months?\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:172;}','','','publish','closed','closed','','172','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/172/',16,'wpuf_input','',0),(173,1,'2020-05-02 16:48:40','2020-05-02 16:48:40','a:17:{s:8:\"template\";s:11:\"radio_field\";s:4:\"name\";s:43:\"have_you_ever_refused_to_pay_rent_when_due_\";s:5:\"label\";s:43:\"Have you ever refused to pay rent when due?\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:173;}','','','publish','closed','closed','','173','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/173/',17,'wpuf_input','',0),(174,1,'2020-05-02 16:48:40','2020-05-02 16:48:40','a:18:{s:8:\"template\";s:14:\"textarea_field\";s:4:\"name\";s:75:\"if_you_have_answered_yes_to_any_of_the_previous_3_questions__please_explain\";s:5:\"label\";s:75:\"If you have answered yes to any of the previous 3 questions, please explain\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:4:\"rich\";s:2:\"no\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:174;}','','','publish','closed','closed','','174','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/174/',18,'wpuf_input','',0),(175,1,'2020-05-02 16:48:40','2020-05-02 16:48:40','a:17:{s:8:\"template\";s:15:\"multiple_select\";s:4:\"name\";s:71:\"employment__select_all_that_apply__ctl___click_to_select_more_than_one_\";s:5:\"label\";s:71:\"Employment (Select all that apply) Ctl + click to select more than one \";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:8:\"selected\";a:0:{}s:7:\"options\";a:6:{s:9:\"full-time\";s:9:\"Full-time\";s:9:\"part-time\";s:9:\"Part-time\";s:7:\"student\";s:7:\"Student\";s:10:\"unemployed\";s:10:\"Unemployed\";s:7:\"retired\";s:7:\"Retired\";s:5:\"other\";s:5:\"Other\";}s:5:\"first\";s:14:\"— Select —\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:175;}','','','publish','closed','closed','','175','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/175/',19,'wpuf_input','',0),(203,1,'2020-05-02 17:41:48','2020-05-02 17:41:48','','hotel-luxury','','publish','closed','closed','','hotel-luxury','','','2020-05-02 17:42:59','2020-05-02 17:42:59','',0,'https://374curry.com/2020/05/02/hotel-luxury/',0,'custom_css','',0),(177,1,'2020-05-02 17:03:55','2020-05-02 17:03:55','a:20:{s:8:\"template\";s:10:\"name_field\";s:4:\"name\";s:10:\"supervisor\";s:5:\"label\";s:10:\"Supervisor\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:6:\"inline\";s:3:\"yes\";s:9:\"hide_subs\";b:0;s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:177;}','','','publish','closed','closed','','177','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/177/',24,'wpuf_input','',0),(178,1,'2020-05-02 17:03:55','2020-05-02 17:03:55','a:16:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:14:\"your_job_title\";s:5:\"label\";s:14:\"Your Job Title\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:178;}','','','publish','closed','closed','','178','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/178/',25,'wpuf_input','',0),(179,1,'2020-05-02 17:03:55','2020-05-02 17:03:55','a:16:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:10:\"date_hired\";s:5:\"label\";s:10:\"Date Hired\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:179;}','','','publish','closed','closed','','179','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/179/',26,'wpuf_input','',0),(180,1,'2020-05-02 17:03:55','2020-05-02 17:03:55','a:16:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:14:\"monthly_income\";s:5:\"label\";s:14:\"Monthly Income\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:180;}','','','publish','closed','closed','','180','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/180/',27,'wpuf_input','',0),(181,1,'2020-05-02 17:03:55','2020-05-02 17:03:55','a:17:{s:8:\"template\";s:11:\"radio_field\";s:4:\"name\";s:53:\"have_you_declared_bankruptcy_in_the_past_seven_years_\";s:5:\"label\";s:53:\"Have you declared bankruptcy in the past seven years?\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:181;}','','','publish','closed','closed','','181','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/181/',28,'wpuf_input','',0),(182,1,'2020-05-02 17:03:55','2020-05-02 17:03:55','a:17:{s:8:\"template\";s:11:\"radio_field\";s:4:\"name\";s:33:\"do_you_consent_to_a_credit_check_\";s:5:\"label\";s:33:\"Do you consent to a credit check?\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:182;}','','','publish','closed','closed','','182','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/182/',29,'wpuf_input','',0),(183,1,'2020-05-02 17:03:55','2020-05-02 17:03:55','a:18:{s:8:\"template\";s:14:\"textarea_field\";s:4:\"name\";s:83:\"is_there_anything_that_we_may_find_in_our_credit_check_that_you_want_to_comment_on_\";s:5:\"label\";s:83:\"Is there anything that we may find in our credit check that you want to comment on?\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:4:\"rows\";i:5;s:4:\"cols\";i:25;s:4:\"rich\";s:2:\"no\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:183;}','','','publish','closed','closed','','183','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/183/',30,'wpuf_input','',0),(184,1,'2020-05-02 17:03:55','2020-05-02 17:03:55','a:17:{s:8:\"template\";s:11:\"radio_field\";s:4:\"name\";s:36:\"do_you_have_a_guarantor_if_required_\";s:5:\"label\";s:36:\"Do you have a guarantor if required?\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:3:\"_no\";s:3:\" No\";}s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:184;}','','','publish','closed','closed','','184','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/184/',31,'wpuf_input','',0),(185,1,'2020-05-02 17:03:55','2020-05-02 17:03:55','a:20:{s:8:\"template\";s:10:\"name_field\";s:4:\"name\";s:18:\"name_of_guarantor_\";s:5:\"label\";s:18:\"Name of Guarantor?\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:6:\"format\";s:10:\"first-last\";s:10:\"first_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:5:\"First\";}s:11:\"middle_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:6:\"Middle\";}s:9:\"last_name\";a:3:{s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:3:\"sub\";s:4:\"Last\";}s:6:\"inline\";s:3:\"yes\";s:9:\"hide_subs\";b:0;s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:185;}','','','publish','closed','closed','','185','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/185/',32,'wpuf_input','',0),(186,1,'2020-05-02 17:03:55','2020-05-02 17:03:55','a:16:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:32:\"relationship_of_guarantor_to_you\";s:5:\"label\";s:32:\"Relationship of Guarantor to You\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:186;}','','','publish','closed','closed','','186','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/186/',33,'wpuf_input','',0),(187,1,'2020-05-02 17:03:55','2020-05-02 17:03:55','a:17:{s:8:\"template\";s:15:\"multiple_select\";s:4:\"name\";s:69:\"accommodation_arrangement_sought_ctl___click_to_select_more_than_one_\";s:5:\"label\";s:69:\"Accommodation Arrangement Sought Ctl + click to select more than one \";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:8:\"selected\";a:0:{}s:7:\"options\";a:4:{s:28:\"upstairs_unit_bedroom_($590)\";s:28:\"Upstairs Unit Bedroom ($590)\";s:30:\"downstairs_unit_bedroom_($490)\";s:30:\"Downstairs Unit Bedroom ($490)\";s:28:\"entire_upstairs_unit_($1995)\";s:28:\"Entire Upstairs Unit ($1995)\";s:29:\"entire_downstairs_unit_(1450)\";s:29:\"Entire Downstairs Unit (1450)\";}s:5:\"first\";s:14:\"— Select —\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:187;}','','','publish','closed','closed','','187','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/187/',34,'wpuf_input','',0),(188,1,'2020-05-02 17:03:55','2020-05-02 17:03:55','a:17:{s:8:\"template\";s:11:\"radio_field\";s:4:\"name\";s:17:\"do_you_have_pets_\";s:5:\"label\";s:17:\"Do you have pets?\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:2:{s:3:\"yes\";s:3:\"Yes\";s:2:\"no\";s:2:\"No\";}s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:188;}','','','publish','closed','closed','','188','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/188/',35,'wpuf_input','',0),(189,1,'2020-05-02 17:03:55','2020-05-02 17:03:55','a:17:{s:8:\"template\";s:11:\"radio_field\";s:4:\"name\";s:96:\"i_acknowledge_there_is_no_smoking_of_any_kind_within_25_feet_of_the_building_nor_in_the_building\";s:5:\"label\";s:96:\"I acknowledge there is no smoking of any kind within 25 feet of the building nor in the building\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:2:{s:40:\"yes,_i_acknowledge_the_no_smoking_policy\";s:40:\"Yes, I acknowledge the no smoking policy\";s:36:\"no,_i_do_not_acknowledge_this_policy\";s:36:\"No, I do not acknowledge this policy\";}s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:189;}','','','publish','closed','closed','','189','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/189/',36,'wpuf_input','',0),(190,1,'2020-05-02 17:03:55','2020-05-02 17:03:55','a:17:{s:8:\"template\";s:11:\"radio_field\";s:4:\"name\";s:60:\"i_am_renting_by_the_room_and_i_need_the_room_to_be_furnished\";s:5:\"label\";s:60:\"I am renting by the room and I need the room to be furnished\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:2:{s:36:\"yes,_i_need_the_room_to_be_furnished\";s:36:\"Yes, I need the room to be furnished\";s:34:\"no,_i_am_bringing_my_own_furniture\";s:34:\"No, I am bringing my own furniture\";}s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:190;}','','','publish','closed','closed','','190','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/190/',37,'wpuf_input','',0),(191,1,'2020-05-02 17:18:07','2020-05-02 17:18:07','a:17:{s:8:\"template\";s:11:\"radio_field\";s:4:\"name\";s:62:\"if_you_are_a_student_are_you_a_full_time_or_part_time_student_\";s:5:\"label\";s:62:\"If you are a student are you a Full time or Part time student?\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:2:{s:9:\"full_time\";s:9:\"Full time\";s:9:\"part_time\";s:9:\"Part time\";}s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:191;}','','','publish','closed','closed','','191','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/191/',20,'wpuf_input','',0),(192,1,'2020-05-02 17:18:07','2020-05-02 17:18:07','a:16:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:54:\"if_you_are_a_student_what_program_are_you_enrolled_in_\";s:5:\"label\";s:54:\"If you are a student what program are you enrolled in?\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:192;}','','','publish','closed','closed','','192','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/192/',21,'wpuf_input','',0),(193,1,'2020-05-02 17:18:07','2020-05-02 17:18:07','a:17:{s:8:\"template\";s:15:\"multiple_select\";s:4:\"name\";s:90:\"if_you_are_a_student__which_year_are_you_enrolled_in__ctl___click_to_select_more_than_one_\";s:5:\"label\";s:90:\"If you are a student, which year are you enrolled in? Ctl + click to select more than one \";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:8:\"selected\";a:0:{}s:7:\"options\";a:6:{s:10:\"first_year\";s:10:\"First Year\";s:11:\"second_year\";s:11:\"Second Year\";s:10:\"third_year\";s:10:\"Third Year\";s:11:\"fourth_year\";s:11:\"Fourth Year\";s:16:\"graduate_student\";s:16:\"Graduate Student\";s:37:\"professional_program_ie_law,_medicine\";s:37:\"Professional Program ie Law, Medicine\";}s:5:\"first\";s:14:\"— Select —\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:193;}','','','publish','closed','closed','','193','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/193/',22,'wpuf_input','',0),(194,1,'2020-05-02 17:18:07','2020-05-02 17:18:07','a:16:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:26:\"current_employer_copy_copy\";s:5:\"label\";s:16:\"Current Employer\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:194;}','','','publish','closed','closed','','194','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/194/',23,'wpuf_input','',0),(195,1,'2020-05-02 17:18:07','2020-05-02 17:18:07','a:17:{s:8:\"template\";s:11:\"radio_field\";s:4:\"name\";s:51:\"do_you_have_an_automobile_and_require_parking__copy\";s:5:\"label\";s:46:\"Do you have an automobile and require parking?\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:2:{s:19:\"yes,_i_need_parking\";s:19:\"Yes, I need parking\";s:25:\"no,_i_do_not_need_parking\";s:25:\"No, I do not need parking\";}s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:195;}','','','publish','closed','closed','','195','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/195/',38,'wpuf_input','',0),(196,1,'2020-05-02 17:18:07','2020-05-02 17:18:07','a:17:{s:8:\"template\";s:11:\"radio_field\";s:4:\"name\";s:318:\"i_authorize_the_landlord_to_verify_all_references_and_facts__including_but_not_limited_to_current_and_previous_landlords__employers_and_personal_references__i_understand_that_incomplete_or_incorrect_information_provided_in_the_application_may_cause_a_delay_in_processing_or_may_result_in_the_denial_of_the_application_\";s:5:\"label\";s:318:\"I authorize the landlord to verify all references and facts, including but not limited to current and previous landlords, employers and personal references. I understand that incomplete or incorrect information provided in the application may cause a delay in processing or may result in the denial of the application.\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:2:{s:29:\"yes,_i_make_this_ahtorization\";s:29:\"Yes, I make this ahtorization\";s:44:\"no,_i_do_not_wish_to_make_this_authorization\";s:44:\"No, I do not wish to make this authorization\";}s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:196;}','','','publish','closed','closed','','196','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/196/',39,'wpuf_input','',0),(197,1,'2020-05-02 17:18:07','2020-05-02 17:18:07','a:17:{s:8:\"template\";s:11:\"radio_field\";s:4:\"name\";s:349:\"i_declare_that_the_information_i_have_provided_is_true_and_correct__and_that_it_contains_no_misrepresentations__if_misrepresentations_are_found_after_a_residential_lease_agreement_is_entered_into_between_the_landlord_and_applicant__the_landlord_shall_have_the_option_to_terminate_the_residential_lease_agreement_and_seek_all_available_remedies__copy\";s:5:\"label\";s:344:\"I declare that the information I have provided is true and correct, and that it contains no misrepresentations. If misrepresentations are found after a residential lease agreement is entered into between the Landlord and Applicant, the Landlord shall have the option to terminate the residential lease agreement and seek all available remedies.\";s:8:\"required\";s:2:\"no\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:8:\"selected\";s:0:\"\";s:6:\"inline\";s:2:\"no\";s:7:\"options\";a:2:{s:28:\"yes,_i_make_this_declaration\";s:28:\"Yes, I make this declaration\";s:42:\"no,_i_do_not_wish_to_make_this_declaration\";s:42:\"No, I do not wish to make this declaration\";}s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:197;}','','','publish','closed','closed','','197','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/197/',40,'wpuf_input','',0),(198,1,'2020-05-02 17:18:07','2020-05-02 17:18:07','a:16:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:9:\"signature\";s:5:\"label\";s:9:\"Signature\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:198;}','','','publish','closed','closed','','198','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/198/',41,'wpuf_input','',0),(199,1,'2020-05-02 17:18:07','2020-05-02 17:18:07','a:16:{s:8:\"template\";s:10:\"text_field\";s:4:\"name\";s:17:\"date_of_signature\";s:5:\"label\";s:17:\"Date of Signature\";s:8:\"required\";s:3:\"yes\";s:5:\"width\";s:5:\"large\";s:3:\"css\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"size\";i:40;s:4:\"help\";s:0:\"\";s:7:\"is_meta\";s:3:\"yes\";s:9:\"wpuf_cond\";a:5:{s:16:\"condition_status\";s:2:\"no\";s:10:\"cond_field\";a:0:{}s:13:\"cond_operator\";a:1:{i:0;s:1:\"=\";}s:11:\"cond_option\";a:1:{i:0;s:10:\"- select -\";}s:10:\"cond_logic\";s:3:\"all\";}s:16:\"word_restriction\";s:0:\"\";s:9:\"duplicate\";s:0:\"\";s:7:\"dynamic\";a:2:{s:6:\"status\";b:0;s:10:\"param_name\";s:0:\"\";}s:2:\"id\";i:199;}','','','publish','closed','closed','','199','','','2020-05-03 16:42:10','2020-05-03 16:42:10','',154,'https://374curry.com/2020/05/02/199/',42,'wpuf_input','',0),(204,1,'2020-05-02 17:41:48','2020-05-02 17:41:48','.page-breadcrumb {display: none;}','hotel-luxury','','inherit','closed','closed','','203-revision-v1','','','2020-05-02 17:41:48','2020-05-02 17:41:48','',203,'https://374curry.com/2020/05/02/203-revision-v1/',0,'revision','',0),(206,1,'2020-05-02 17:42:28','2020-05-02 17:42:28','.page-breadcrumb {display:none}','hotel-luxury','','inherit','closed','closed','','203-revision-v1','','','2020-05-02 17:42:28','2020-05-02 17:42:28','',203,'https://374curry.com/2020/05/02/203-revision-v1/',0,'revision','',0),(256,1,'2020-09-27 16:37:33','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2020-09-27 16:37:33','0000-00-00 00:00:00','',0,'https://374curry.com/?p=256',0,'post','',0),(208,1,'2020-05-02 17:42:59','2020-05-02 17:42:59','','hotel-luxury','','inherit','closed','closed','','203-revision-v1','','','2020-05-02 17:42:59','2020-05-02 17:42:59','',203,'https://374curry.com/2020/05/02/203-revision-v1/',0,'revision','',0),(209,1,'2020-05-03 16:01:03','2020-05-03 16:01:03','<!-- wp:image {\"id\":12,\"width\":293,\"height\":220,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200321_174621-1024x768.jpg\" alt=\"\" class=\"wp-image-12\" width=\"293\" height=\"220\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>This house has two separate units and will be perfect for a small family, grad students or professional students. only 1 unrelated resident per room, no exceptions. Don\'t ask to put more people in...we seek a quality experience for our tenants and ourselves. It is currently under construction to be completed prior to June 1, 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Laundry in both units</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":108,\"width\":171,\"height\":144,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://www.chicsoaps.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/CHICSOAPS-LOGO-512.jpg\" alt=\"\" class=\"wp-image-108\" width=\"171\" height=\"144\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":109,\"width\":159,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://fitatfortyplus.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/logo-REV.png\" alt=\"\" class=\"wp-image-109\" width=\"159\" height=\"145\"/></a></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":116,\"width\":134,\"height\":145,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><a href=\"https://classerly.com\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/sm-Logo-Transparent-PNG-1-942x1024.png\" alt=\"\" class=\"wp-image-116\" width=\"134\" height=\"145\"/></a></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:list -->\n<ul><li><strong><s>UPSTAIRS 3 bedroom $1995 all utilities included</s></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><strong>BASEMENT 3 bedroom $1450 all utilities included or by the room:</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li><em><span class=\"has-inline-color has-vivid-red-color\"><strong>UPSTAIRS Rooms 590 all utilities included</strong> </span></em>(one room left)</li><li><strong><em><span class=\"has-inline-color has-vivid-red-color\">BASEMENT Rooms 3 bedroom $500 all utilities included</span></em></strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>I purchased this home last year. I have redone:</li><li>plumbing,</li><li>electrical,</li><li>furnace, air conditioner with smart thermostat</li><li>walls,</li><li>floors,</li><li>lighting,</li><li>bathrooms, kitchens,</li><li>roof,</li><li>siding,</li><li>insulation.</li><li>Exterior lighting.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The entry doors have electronic locks and if you are renting as a student we will include an electronic lock on your bedroom.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The common areas ie kitchen, living room and bathroom will be cleaned every other week.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All appliances are brand new stainless steel. It will be completed by June 1st. We started June 2019!. We have done this place as a place that someone would like for a home.<br>We will be very selective with the tenants. We have done this home as one that we would live in and not just built it to be rented to the first offer. We want you to be happy here and treat the place like a home.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a big back yard with new fencing. All new bathroom and kitchen cabinets. Laundry machines in both units.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is also a garage with parking for one car but we have not done any work on it. We will start the garage after we have tenants. There is a driveway with parking for one car in front of the garage and lots of street parking.<br>Our next project will be to do a deck with barbeque and to relandscape the front of the house, but again that\'s after we have tenants.<br>There is a basement unit that will go for $1450 with all utilities included. This is not your typical basement unit. We have waterproofed the basement with 2 sump pumps. We have removed all of the drop tile ceilings and put in drywall, levelled all of the floors and redrywalled and insulated every room.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The upstairs unit will be $1995 all utilities included.<br>All utilities includes, water, electricity, hydro, alarm, tv and internet will be included.<br>Because it is new the market you have the option of it being furnished or not.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I am a great landlord and I will treat you as well as I have treated this property!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:gallery {\"ids\":[142,72,80,35,37],\"columns\":4} -->\n<figure class=\"wp-block-gallery columns-4 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-3-1024x768.jpg\" alt=\"\" data-id=\"142\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_142925-3-scaled.jpg\" data-link=\"https://374curry.com/homepage/img_20200429_142925-3/\" class=\"wp-image-142\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174206-497x1024.jpg\" alt=\"\" data-id=\"72\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/Resized_20200427_174206.jpg\" data-link=\"https://374curry.com/upstairs-unit/resized_20200427_174206/\" class=\"wp-image-72\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/51h7P69vWL._AC_SL1000_.jpg\" alt=\"\" data-id=\"80\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/51h7P69vWL._AC_SL1000_.jpg\" data-link=\"https://374curry.com/smart-home/51h7p69vwl-_ac_sl1000_/\" class=\"wp-image-80\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143426-1024x768.jpg\" alt=\"\" data-id=\"35\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143426-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143426/\" class=\"wp-image-35\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143439-1024x768.jpg\" alt=\"\" data-id=\"37\" data-full-url=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143439-scaled.jpg\" data-link=\"https://374curry.com/img_20200429_143439/\" class=\"wp-image-37\"/></figure></li></ul></figure>\n<!-- /wp:gallery -->','374 Curry Avenue','','inherit','closed','closed','','94-revision-v1','','','2020-05-03 16:01:03','2020-05-03 16:01:03','',94,'https://374curry.com/2020/05/03/94-revision-v1/',0,'revision','',0),(211,1,'2020-05-08 17:19:11','2020-05-08 17:19:11','','IMG_20200506_205715','','inherit','open','closed','','img_20200506_205715','','','2020-05-08 17:19:11','2020-05-08 17:19:11','',50,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200506_205715.jpg',0,'attachment','image/jpeg',0),(212,1,'2020-05-08 17:19:32','2020-05-08 17:19:32','','IMG_20200506_205728','','inherit','open','closed','','img_20200506_205728','','','2020-05-08 17:19:32','2020-05-08 17:19:32','',50,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200506_205728.jpg',0,'attachment','image/jpeg',0),(213,1,'2020-05-08 17:19:34','2020-05-08 17:19:34','','Basement-Layout','','inherit','open','closed','','basement-layout','','','2020-05-08 17:19:34','2020-05-08 17:19:34','',50,'https://374curry.com/wp-content/uploads/2020/05/Basement-Layout.png',0,'attachment','image/png',0),(214,1,'2020-05-08 17:20:01','2020-05-08 17:20:01','','IMG_20200506_205758','','inherit','open','closed','','img_20200506_205758','','','2020-05-08 17:20:01','2020-05-08 17:20:01','',50,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200506_205758.jpg',0,'attachment','image/jpeg',0),(215,1,'2020-05-08 17:20:26','2020-05-08 17:20:26','','IMG_20200506_205815','','inherit','open','closed','','img_20200506_205815','','','2020-05-08 17:20:26','2020-05-08 17:20:26','',50,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200506_205815.jpg',0,'attachment','image/jpeg',0),(216,1,'2020-05-08 17:20:51','2020-05-08 17:20:51','','IMG_20200506_205832','','inherit','open','closed','','img_20200506_205832','','','2020-05-08 17:20:51','2020-05-08 17:20:51','',50,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200506_205832.jpg',0,'attachment','image/jpeg',0),(217,1,'2020-05-08 17:21:12','2020-05-08 17:21:12','','IMG_20200506_205840','','inherit','open','closed','','img_20200506_205840','','','2020-05-08 17:21:12','2020-05-08 17:21:12','',50,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200506_205840.jpg',0,'attachment','image/jpeg',0),(218,1,'2020-05-08 17:21:48','2020-05-08 17:21:48','','IMG_20200506_210033','','inherit','open','closed','','img_20200506_210033','','','2020-05-08 17:21:48','2020-05-08 17:21:48','',50,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200506_210033.jpg',0,'attachment','image/jpeg',0),(219,1,'2020-05-08 17:22:16','2020-05-08 17:22:16','','IMG_20200506_210930','','inherit','open','closed','','img_20200506_210930','','','2020-05-08 17:22:16','2020-05-08 17:22:16','',50,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200506_210930.jpg',0,'attachment','image/jpeg',0),(220,1,'2020-05-08 17:22:37','2020-05-08 17:22:37','','IMG_20200506_210946','','inherit','open','closed','','img_20200506_210946','','','2020-05-08 17:22:37','2020-05-08 17:22:37','',50,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200506_210946.jpg',0,'attachment','image/jpeg',0),(221,1,'2020-05-08 17:23:03','2020-05-08 17:23:03','','IMG_20200506_211006','','inherit','open','closed','','img_20200506_211006','','','2020-05-08 17:23:03','2020-05-08 17:23:03','',50,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200506_211006.jpg',0,'attachment','image/jpeg',0),(222,1,'2020-05-08 17:23:27','2020-05-08 17:23:27','','IMG_20200506_214337','','inherit','open','closed','','img_20200506_214337','','','2020-05-08 17:23:27','2020-05-08 17:23:27','',50,'https://374curry.com/wp-content/uploads/2020/05/IMG_20200506_214337.jpg',0,'attachment','image/jpeg',0),(223,1,'2020-05-08 17:23:58','2020-05-08 17:23:58','','Resized_20200507_155307','','inherit','open','closed','','resized_20200507_155307','','','2020-05-08 17:23:58','2020-05-08 17:23:58','',50,'https://374curry.com/wp-content/uploads/2020/05/Resized_20200507_155307.jpg',0,'attachment','image/jpeg',0),(224,1,'2020-05-08 17:38:23','2020-05-08 17:38:23','','Basement-Layout-1','','inherit','open','closed','','basement-layout-1','','','2020-05-08 17:38:23','2020-05-08 17:38:23','',50,'https://374curry.com/wp-content/uploads/2020/05/Basement-Layout-1.png',0,'attachment','image/png',0),(225,1,'2020-05-08 17:38:54','2020-05-08 17:38:54','<!-- wp:image {\"id\":224,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://i0.wp.com/374curry.com/wp-content/uploads/2020/05/Basement-Layout-1.png?fit=640%2C906&amp;ssl=1\" alt=\"\" class=\"wp-image-224\"/><figcaption>Layout</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":30,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143320-1024x768.jpg\" alt=\"\" class=\"wp-image-30\"/><figcaption>Basement Living Room</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:gallery {\"ids\":[\"30\",\"28\",\"27\",\"26\",222,211,212,214,215,216,217,218,219,220,221,223]} -->\n<figure class=\"wp-block-gallery columns-3 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143320-1024x768.jpg\" alt=\"\" data-id=\"30\" data-link=\"https://374curry.com/img_20200429_143320/\" class=\"wp-image-30\"/><figcaption class=\"blocks-gallery-item__caption\">Basement Living Room</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143252-768x1024.jpg\" alt=\"\" data-id=\"28\" data-link=\"https://374curry.com/img_20200429_143252/\" class=\"wp-image-28\"/><figcaption class=\"blocks-gallery-item__caption\">Basement Bathroom</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143234-768x1024.jpg\" alt=\"\" data-id=\"27\" data-link=\"https://374curry.com/img_20200429_143234/\" class=\"wp-image-27\"/><figcaption class=\"blocks-gallery-item__caption\">Basement Laundry Room</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://374curry.com/wp-content/uploads/2020/05/IMG_20200429_143217-1024x768.jpg\" alt=\"\" data-id=\"26\" data-link=\"https://374curry.com/img_20200429_143217/\" class=\"wp-image-26\"/><figcaption class=\"blocks-gallery-item__caption\">Basement Separate Entrance</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i0.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_214337-scaled.jpg?fit=640%2C853&amp;ssl=1\" alt=\"\" data-id=\"222\" data-full-url=\"https://i0.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_214337-scaled.jpg?fit=1920%2C2560&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/img_20200506_214337/\" class=\"wp-image-222\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i0.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205715-scaled.jpg?fit=640%2C480&amp;ssl=1\" alt=\"\" data-id=\"211\" data-full-url=\"https://i0.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205715-scaled.jpg?fit=2560%2C1920&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/img_20200506_205715/\" class=\"wp-image-211\"/><figcaption class=\"blocks-gallery-item__caption\">Bedroom 2</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205728-scaled.jpg?fit=640%2C853&amp;ssl=1\" alt=\"\" data-id=\"212\" data-full-url=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205728-scaled.jpg?fit=1920%2C2560&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/img_20200506_205728/\" class=\"wp-image-212\"/><figcaption class=\"blocks-gallery-item__caption\">Bedroom 3 closet</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i0.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205758-scaled.jpg?fit=640%2C480&amp;ssl=1\" alt=\"\" data-id=\"214\" data-full-url=\"https://i0.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205758-scaled.jpg?fit=2560%2C1920&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/img_20200506_205758/\" class=\"wp-image-214\"/><figcaption class=\"blocks-gallery-item__caption\">Bedroom 3</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205815-scaled.jpg?fit=640%2C480&amp;ssl=1\" alt=\"\" data-id=\"215\" data-full-url=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205815-scaled.jpg?fit=2560%2C1920&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/img_20200506_205815/\" class=\"wp-image-215\"/><figcaption class=\"blocks-gallery-item__caption\">Bedroom 3</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i0.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205832-scaled.jpg?fit=640%2C480&amp;ssl=1\" alt=\"\" data-id=\"216\" data-full-url=\"https://i0.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205832-scaled.jpg?fit=2560%2C1920&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/img_20200506_205832/\" class=\"wp-image-216\"/><figcaption class=\"blocks-gallery-item__caption\">Bedroom 2</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205840-scaled.jpg?fit=640%2C480&amp;ssl=1\" alt=\"\" data-id=\"217\" data-full-url=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_205840-scaled.jpg?fit=2560%2C1920&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/img_20200506_205840/\" class=\"wp-image-217\"/><figcaption class=\"blocks-gallery-item__caption\">Bedroom 2</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_210033-scaled.jpg?fit=640%2C480&amp;ssl=1\" alt=\"\" data-id=\"218\" data-full-url=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_210033-scaled.jpg?fit=2560%2C1920&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/img_20200506_210033/\" class=\"wp-image-218\"/><figcaption class=\"blocks-gallery-item__caption\">Bedroom 1</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_210930-scaled.jpg?fit=640%2C853&amp;ssl=1\" alt=\"\" data-id=\"219\" data-full-url=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_210930-scaled.jpg?fit=1920%2C2560&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/img_20200506_210930/\" class=\"wp-image-219\"/><figcaption class=\"blocks-gallery-item__caption\">Bathroom</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_210946-scaled.jpg?fit=640%2C853&amp;ssl=1\" alt=\"\" data-id=\"220\" data-full-url=\"https://i1.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_210946-scaled.jpg?fit=1920%2C2560&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/img_20200506_210946/\" class=\"wp-image-220\"/><figcaption class=\"blocks-gallery-item__caption\">Bathroom</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_211006-scaled.jpg?fit=640%2C480&amp;ssl=1\" alt=\"\" data-id=\"221\" data-full-url=\"https://i1.wp.com/374curry.com/wp-content/uploads/2020/05/IMG_20200506_211006-scaled.jpg?fit=2560%2C1920&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/img_20200506_211006/\" class=\"wp-image-221\"/><figcaption class=\"blocks-gallery-item__caption\">Kitchen</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/Resized_20200507_155307.jpg?fit=640%2C311&amp;ssl=1\" alt=\"\" data-id=\"223\" data-full-url=\"https://i2.wp.com/374curry.com/wp-content/uploads/2020/05/Resized_20200507_155307.jpg?fit=1600%2C777&amp;ssl=1\" data-link=\"https://374curry.com/downstairs-unit/resized_20200507_155307/\" class=\"wp-image-223\"/><figcaption class=\"blocks-gallery-item__caption\">Kitchen</figcaption></figure></li></ul></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Downstairs Unit','','inherit','closed','closed','','50-revision-v1','','','2020-05-08 17:38:54','2020-05-08 17:38:54','',50,'https://374curry.com/2020/05/08/50-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wpjg_posts` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpjg_posts` with 206 row(s)
--

--
-- Table structure for table `wpjg_term_relationships`
--

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

--
-- Dumping data for table `wpjg_term_relationships`
--

LOCK TABLES `wpjg_term_relationships` WRITE;
/*!40000 ALTER TABLE `wpjg_term_relationships` DISABLE KEYS */;
INSERT INTO `wpjg_term_relationships` VALUES (1,1,0),(54,3,0),(60,3,0),(61,3,0),(62,3,0),(63,3,0),(64,3,0),(123,3,0);
/*!40000 ALTER TABLE `wpjg_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpjg_term_relationships` with 8 row(s)
--

--
-- Table structure for table `wpjg_term_taxonomy`
--

DROP TABLE IF EXISTS `wpjg_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_term_taxonomy`
--

LOCK TABLES `wpjg_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpjg_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpjg_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'nav_menu','',0,0),(3,3,'nav_menu','',0,7),(4,4,'product_type','',0,0),(5,5,'product_type','',0,0),(6,6,'product_type','',0,0),(7,7,'product_type','',0,0),(8,8,'product_visibility','',0,0),(9,9,'product_visibility','',0,0),(10,10,'product_visibility','',0,0),(11,11,'product_visibility','',0,0),(12,12,'product_visibility','',0,0),(13,13,'product_visibility','',0,0),(14,14,'product_visibility','',0,0),(15,15,'product_visibility','',0,0),(16,16,'product_visibility','',0,0),(17,17,'product_cat','',0,0);
/*!40000 ALTER TABLE `wpjg_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpjg_term_taxonomy` with 17 row(s)
--

--
-- Table structure for table `wpjg_termmeta`
--

DROP TABLE IF EXISTS `wpjg_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_termmeta`
--

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

-- Dumped table `wpjg_termmeta` with 0 row(s)
--

--
-- Table structure for table `wpjg_terms`
--

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

--
-- Dumping data for table `wpjg_terms`
--

LOCK TABLES `wpjg_terms` WRITE;
/*!40000 ALTER TABLE `wpjg_terms` DISABLE KEYS */;
INSERT INTO `wpjg_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Upstairs 3bed','upstairs-3bed',0),(3,'Main menu','main-menu',0),(4,'simple','simple',0),(5,'grouped','grouped',0),(6,'variable','variable',0),(7,'external','external',0),(8,'exclude-from-search','exclude-from-search',0),(9,'exclude-from-catalog','exclude-from-catalog',0),(10,'featured','featured',0),(11,'outofstock','outofstock',0),(12,'rated-1','rated-1',0),(13,'rated-2','rated-2',0),(14,'rated-3','rated-3',0),(15,'rated-4','rated-4',0),(16,'rated-5','rated-5',0),(17,'Uncategorized','uncategorized',0);
/*!40000 ALTER TABLE `wpjg_terms` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpjg_terms` with 17 row(s)
--

--
-- Table structure for table `wpjg_usermeta`
--

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

--
-- Dumping data for table `wpjg_usermeta`
--

LOCK TABLES `wpjg_usermeta` WRITE;
/*!40000 ALTER TABLE `wpjg_usermeta` DISABLE KEYS */;
INSERT INTO `wpjg_usermeta` VALUES (1,1,'nickname','irinamarchenkova'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wpjg_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wpjg_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"6146f68e2344fe40dbaa6e17df5593f2258400b4c99cd60962a8e093a2bbadb7\";a:4:{s:10:\"expiration\";i:1601397446;s:2:\"ip\";s:11:\"99.227.49.9\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36\";s:5:\"login\";i:1601224646;}}'),(17,1,'bglibDashboardOrder','1'),(27,1,'jetpack_tracks_wpcom_id','185294096'),(19,1,'wpjg_dashboard_quick_press_last_post_id','256'),(20,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"99.227.49.0\";}'),(21,1,'boldgrid_dismissed_admin_notices','a:2:{s:2:\"id\";s:13:\"bg-key-prompt\";s:9:\"timestamp\";i:1588347265;}'),(22,1,'wpjg_user-settings','libraryContent=browse&editor=tinymce'),(23,1,'wpjg_user-settings-time','1588434553'),(24,1,'nav_menu_recently_edited','3'),(25,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\";}'),(26,1,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(28,1,'jetpack_tracks_anon_id','jetpack:k8phCUI0ryD1Z7CoTuJr/1Gd'),(29,1,'wc_last_active','1601164800'),(30,1,'tribe_setDefaultNavMenuBoxes','1'),(31,1,'_order_count','0'),(37,1,'dismissed_install_notice','1'),(36,1,'_woocommerce_tracks_anon_id','woo:KUGq1mwNzjt86gmeVzlXDyfS');
/*!40000 ALTER TABLE `wpjg_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpjg_usermeta` with 32 row(s)
--

--
-- Table structure for table `wpjg_users`
--

DROP TABLE IF EXISTS `wpjg_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_users`
--

LOCK TABLES `wpjg_users` WRITE;
/*!40000 ALTER TABLE `wpjg_users` DISABLE KEYS */;
INSERT INTO `wpjg_users` VALUES (1,'irinamarchenkova','$P$B1JtLRjjwwLtuMa1/Fz.EzSjETMFVJ1','irinamarchenkova','374curry@gmail.com','https://374curry.com','2020-05-01 15:29:58','',0,'irinamarchenkova');
/*!40000 ALTER TABLE `wpjg_users` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpjg_users` with 1 row(s)
--

--
-- Table structure for table `wpjg_wc_admin_note_actions`
--

DROP TABLE IF EXISTS `wpjg_wc_admin_note_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_wc_admin_note_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `note_id` bigint(20) unsigned NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `query` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_primary` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`action_id`),
  KEY `note_id` (`note_id`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_wc_admin_note_actions`
--

LOCK TABLES `wpjg_wc_admin_note_actions` WRITE;
/*!40000 ALTER TABLE `wpjg_wc_admin_note_actions` DISABLE KEYS */;
INSERT INTO `wpjg_wc_admin_note_actions` VALUES (10,9,'open-marketing-hub','Open marketing hub','https://374curry.com/wp-admin/admin.php?page=wc-admin&path=/marketing','actioned',0),(3,3,'add-a-product','Add a product','https://374curry.com/wp-admin/post-new.php?post_type=product','actioned',1),(4,4,'connect','Connect','?page=wc-addons&section=helper','actioned',0),(5,5,'learn-more','Learn more','https://woocommerce.com/mobile/','actioned',0),(9,8,'yes-please','Yes please!','https://woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&amp;id=13860df971&amp;SIGNUPPAGE=plugin','actioned',0),(8,7,'tracking-opt-in','Activate usage tracking','','actioned',1),(11,10,'share-feedback','Share feedback','https://automattic.survey.fm/new-onboarding-survey','actioned',0),(12,11,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox','actioned',0),(13,12,'home-screen-feedback-share-feedback','Share feedback','https://automattic.survey.fm/home-screen-survey','actioned',0);
/*!40000 ALTER TABLE `wpjg_wc_admin_note_actions` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpjg_wc_admin_note_actions` with 9 row(s)
--

--
-- Table structure for table `wpjg_wc_admin_notes`
--

DROP TABLE IF EXISTS `wpjg_wc_admin_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_wc_admin_notes` (
  `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `locale` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `title` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `icon` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'info',
  `content_data` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_reminder` datetime DEFAULT NULL,
  `is_snoozable` tinyint(1) NOT NULL DEFAULT 0,
  `layout` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `image` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`note_id`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_wc_admin_notes`
--

LOCK TABLES `wpjg_wc_admin_notes` WRITE;
/*!40000 ALTER TABLE `wpjg_wc_admin_notes` DISABLE KEYS */;
INSERT INTO `wpjg_wc_admin_notes` VALUES (10,'wc-admin-store-notice-giving-feedback-2','info','en_US','Give feedback','Now that you’ve chosen us as a partner, our goal is to make sure we\'re providing the right tools to meet your needs. We\'re looking forward to having your feedback on the store setup experience so we can improve it in the future.','info','{}','unactioned','woocommerce-admin','2020-07-27 17:10:52',NULL,0,'plain','',0),(9,'wc-admin-marketing-intro','info','en_US','Connect with your audience','Grow your customer base and increase your sales with marketing tools built for WooCommerce.','info','{}','unactioned','woocommerce-admin','2020-07-27 17:10:52',NULL,0,'plain','',0),(3,'wc-admin-add-first-product','info','en_US','Add your first product','Grow your revenue by adding products to your store. Add products manually, import from a sheet, or migrate from another platform.','product','{}','unactioned','woocommerce-admin','2020-05-02 15:41:59',NULL,0,'',NULL,0),(4,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','info','{}','unactioned','woocommerce-admin','2020-05-02 15:42:00',NULL,0,'',NULL,0),(5,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.','phone','{}','unactioned','woocommerce-admin','2020-05-10 17:21:15',NULL,0,'',NULL,0),(8,'wc-admin-onboarding-email-marketing','info','en_US','Tips, product updates, and inspiration','We\'re here for you - get tips, product updates and inspiration straight to your email box','info','{}','unactioned','woocommerce-admin','2020-07-27 17:10:52',NULL,0,'plain','',0),(7,'wc-admin-usage-tracking-opt-in','info','en_US','Help WooCommerce improve with usage tracking','Gathering usage data allows us to improve WooCommerce. Your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the <a href=\"https://374curry.com/wp-admin/admin.php?page=wc-settings&#038;tab=advanced&#038;section=woocommerce_com\" target=\"_blank\">Settings</a> and choose to stop sharing data. <a href=\"https://woocommerce.com/usage-tracking\" target=\"_blank\">Read more</a> about what data we collect.','info','{}','unactioned','woocommerce-admin','2020-05-15 17:52:42',NULL,0,'',NULL,0),(11,'wc-admin-real-time-order-alerts','info','en_US','Get real-time order alerts anywhere','Get notifications about store activity, including new orders and product reviews directly on your mobile devices with the Woo app.','info','{}','unactioned','woocommerce-admin','2020-08-06 17:19:15',NULL,0,'plain','',0),(12,'wc-admin-home-screen-feedback','info','en_US','Help us improve the WooCommerce Home screen','We\'d love your input to shape the future of the WooCommerce Home screen together. Feel free to share any feedback, ideas or suggestions that you have.','info','{}','unactioned','woocommerce-admin','2020-08-08 17:20:22',NULL,0,'plain','',0);
/*!40000 ALTER TABLE `wpjg_wc_admin_notes` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpjg_wc_admin_notes` with 9 row(s)
--

--
-- Table structure for table `wpjg_wc_category_lookup`
--

DROP TABLE IF EXISTS `wpjg_wc_category_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_wc_category_lookup` (
  `category_tree_id` bigint(20) unsigned NOT NULL,
  `category_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`category_tree_id`,`category_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_wc_category_lookup`
--

LOCK TABLES `wpjg_wc_category_lookup` WRITE;
/*!40000 ALTER TABLE `wpjg_wc_category_lookup` DISABLE KEYS */;
INSERT INTO `wpjg_wc_category_lookup` VALUES (17,17);
/*!40000 ALTER TABLE `wpjg_wc_category_lookup` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpjg_wc_category_lookup` with 1 row(s)
--

--
-- Table structure for table `wpjg_wc_customer_lookup`
--

DROP TABLE IF EXISTS `wpjg_wc_customer_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_wc_customer_lookup` (
  `customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `username` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `first_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `date_last_active` timestamp NULL DEFAULT NULL,
  `date_registered` timestamp NULL DEFAULT NULL,
  `country` char(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `postcode` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `city` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `state` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`customer_id`),
  UNIQUE KEY `user_id` (`user_id`),
  KEY `email` (`email`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_wc_customer_lookup`
--

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

-- Dumped table `wpjg_wc_customer_lookup` with 0 row(s)
--

--
-- Table structure for table `wpjg_wc_download_log`
--

DROP TABLE IF EXISTS `wpjg_wc_download_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_wc_download_log` (
  `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `permission_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip_address` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_wc_download_log`
--

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

-- Dumped table `wpjg_wc_download_log` with 0 row(s)
--

--
-- Table structure for table `wpjg_wc_order_coupon_lookup`
--

DROP TABLE IF EXISTS `wpjg_wc_order_coupon_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_wc_order_coupon_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `coupon_id` bigint(20) unsigned NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `discount_amount` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_id`,`coupon_id`),
  KEY `coupon_id` (`coupon_id`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_wc_order_coupon_lookup`
--

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

-- Dumped table `wpjg_wc_order_coupon_lookup` with 0 row(s)
--

--
-- Table structure for table `wpjg_wc_order_product_lookup`
--

DROP TABLE IF EXISTS `wpjg_wc_order_product_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_wc_order_product_lookup` (
  `order_item_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `variation_id` bigint(20) unsigned NOT NULL,
  `customer_id` bigint(20) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `product_qty` int(11) NOT NULL,
  `product_net_revenue` double NOT NULL DEFAULT 0,
  `product_gross_revenue` double NOT NULL DEFAULT 0,
  `coupon_amount` double NOT NULL DEFAULT 0,
  `tax_amount` double NOT NULL DEFAULT 0,
  `shipping_amount` double NOT NULL DEFAULT 0,
  `shipping_tax_amount` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`),
  KEY `product_id` (`product_id`),
  KEY `customer_id` (`customer_id`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_wc_order_product_lookup`
--

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

-- Dumped table `wpjg_wc_order_product_lookup` with 0 row(s)
--

--
-- Table structure for table `wpjg_wc_order_stats`
--

DROP TABLE IF EXISTS `wpjg_wc_order_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_wc_order_stats` (
  `order_id` bigint(20) unsigned NOT NULL,
  `parent_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `num_items_sold` int(11) NOT NULL DEFAULT 0,
  `total_sales` double NOT NULL DEFAULT 0,
  `tax_total` double NOT NULL DEFAULT 0,
  `shipping_total` double NOT NULL DEFAULT 0,
  `net_total` double NOT NULL DEFAULT 0,
  `returning_customer` tinyint(1) DEFAULT NULL,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `customer_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_id`),
  KEY `date_created` (`date_created`),
  KEY `customer_id` (`customer_id`),
  KEY `status` (`status`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_wc_order_stats`
--

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

-- Dumped table `wpjg_wc_order_stats` with 0 row(s)
--

--
-- Table structure for table `wpjg_wc_order_tax_lookup`
--

DROP TABLE IF EXISTS `wpjg_wc_order_tax_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_wc_order_tax_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `shipping_tax` double NOT NULL DEFAULT 0,
  `order_tax` double NOT NULL DEFAULT 0,
  `total_tax` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_id`,`tax_rate_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_wc_order_tax_lookup`
--

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

-- Dumped table `wpjg_wc_order_tax_lookup` with 0 row(s)
--

--
-- Table structure for table `wpjg_wc_product_meta_lookup`
--

DROP TABLE IF EXISTS `wpjg_wc_product_meta_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_wc_product_meta_lookup` (
  `product_id` bigint(20) NOT NULL,
  `sku` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  `virtual` tinyint(1) DEFAULT 0,
  `downloadable` tinyint(1) DEFAULT 0,
  `min_price` decimal(19,4) DEFAULT NULL,
  `max_price` decimal(19,4) DEFAULT NULL,
  `onsale` tinyint(1) DEFAULT 0,
  `stock_quantity` double DEFAULT NULL,
  `stock_status` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT 'instock',
  `rating_count` bigint(20) DEFAULT 0,
  `average_rating` decimal(3,2) DEFAULT 0.00,
  `total_sales` bigint(20) DEFAULT 0,
  `tax_status` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT 'taxable',
  `tax_class` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  PRIMARY KEY (`product_id`),
  KEY `virtual` (`virtual`),
  KEY `downloadable` (`downloadable`),
  KEY `stock_status` (`stock_status`),
  KEY `stock_quantity` (`stock_quantity`),
  KEY `onsale` (`onsale`),
  KEY `min_max_price` (`min_price`,`max_price`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_wc_product_meta_lookup`
--

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

-- Dumped table `wpjg_wc_product_meta_lookup` with 0 row(s)
--

--
-- Table structure for table `wpjg_wc_reserved_stock`
--

DROP TABLE IF EXISTS `wpjg_wc_reserved_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_wc_reserved_stock` (
  `order_id` bigint(20) NOT NULL,
  `product_id` bigint(20) NOT NULL,
  `stock_quantity` double NOT NULL DEFAULT 0,
  `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`order_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_wc_reserved_stock`
--

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

-- Dumped table `wpjg_wc_reserved_stock` with 0 row(s)
--

--
-- Table structure for table `wpjg_wc_tax_rate_classes`
--

DROP TABLE IF EXISTS `wpjg_wc_tax_rate_classes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_wc_tax_rate_classes` (
  `tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_class_id`),
  UNIQUE KEY `slug` (`slug`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_wc_tax_rate_classes`
--

LOCK TABLES `wpjg_wc_tax_rate_classes` WRITE;
/*!40000 ALTER TABLE `wpjg_wc_tax_rate_classes` DISABLE KEYS */;
INSERT INTO `wpjg_wc_tax_rate_classes` VALUES (1,'Reduced rate','reduced-rate'),(2,'Zero rate','zero-rate');
/*!40000 ALTER TABLE `wpjg_wc_tax_rate_classes` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpjg_wc_tax_rate_classes` with 2 row(s)
--

--
-- Table structure for table `wpjg_wc_webhooks`
--

DROP TABLE IF EXISTS `wpjg_wc_webhooks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_wc_webhooks` (
  `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `delivery_url` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `secret` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `topic` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `api_version` smallint(4) NOT NULL,
  `failure_count` smallint(10) NOT NULL DEFAULT 0,
  `pending_delivery` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`webhook_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_wc_webhooks`
--

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

-- Dumped table `wpjg_wc_webhooks` with 0 row(s)
--

--
-- Table structure for table `wpjg_weforms_entries`
--

DROP TABLE IF EXISTS `wpjg_weforms_entries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_weforms_entries` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) unsigned DEFAULT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip` int(11) unsigned DEFAULT NULL,
  `user_device` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `referer` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT 'publish',
  `created_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM AUTO_INCREMENT=65 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_weforms_entries`
--

LOCK TABLES `wpjg_weforms_entries` WRITE;
/*!40000 ALTER TABLE `wpjg_weforms_entries` DISABLE KEYS */;
INSERT INTO `wpjg_weforms_entries` VALUES (1,136,1,1675833609,'Google Chrome/Windows','https://374curry.com/','publish','2020-05-02 15:33:25'),(2,149,0,1176126769,'Apple Safari/MAC OS','https://374curry.com/','publish','2020-05-02 16:21:47'),(3,149,1,1675833609,'Google Chrome/Windows','https://374curry.com/','publish','2020-05-02 16:22:02'),(4,154,0,3496140312,'Apple Safari/MAC OS','https://374curry.com/application/','publish','2020-05-02 17:37:54'),(5,149,0,3496140312,'Apple Safari/MAC OS','https://374curry.com/application/','publish','2020-05-02 17:38:22'),(6,149,0,412230741,'Unknown/MAC OS','https://374curry.com/','publish','2020-05-03 22:11:14'),(7,149,0,412230741,'Unknown/MAC OS','https://374curry.com/','publish','2020-05-05 01:04:20'),(8,149,0,406413316,'Unknown/MAC OS','https://374curry.com/','publish','2020-05-06 02:22:59'),(9,149,0,2667753095,'Unknown/MAC OS','https://374curry.com/','publish','2020-05-06 14:37:18'),(10,154,0,412230667,'Apple Safari/MAC OS','https://374curry.com/application/','publish','2020-05-06 18:00:53'),(11,154,0,2667753095,'Apple Safari/MAC OS','https://374curry.com/application/','publish','2020-05-07 01:03:06'),(12,149,0,1176184329,'Google Chrome/Linux','https://374curry.com/','publish','2020-05-08 21:01:49'),(13,149,0,3346524545,'Apple Safari/MAC OS','https://374curry.com/upstairs-unit/','publish','2020-05-16 00:42:04'),(14,154,0,1210563516,'Google Chrome/Linux','https://374curry.com/application/','publish','2020-05-18 17:34:01'),(15,154,0,3478199791,'Google Chrome/MAC OS','https://374curry.com/application/','publish','2020-05-25 16:07:12'),(16,149,0,412232570,'Google Chrome/Linux','https://374curry.com/','publish','2020-05-27 21:54:50'),(17,154,0,1178012236,'Google Chrome/Windows','https://374curry.com/application/','publish','2020-05-28 17:30:22'),(18,149,0,406425427,'Google Chrome/Unknown','https://374curry.com/?utm_campaign=kijiji_vdp&utm_medium=referral&utm_source=kijiji','publish','2020-05-30 06:50:52'),(19,154,0,1768987080,'Google Chrome/Linux','https://374curry.com/application/','publish','2020-06-02 10:14:34'),(20,149,0,646856650,'Apple Safari/MAC OS','https://374curry.com/?utm_campaign=kijiji_vdp&utm_medium=referral&utm_source=kijiji','publish','2020-06-05 15:15:39'),(21,154,0,646856650,'Apple Safari/MAC OS','https://374curry.com/application/','publish','2020-06-05 18:46:26'),(22,149,0,1833329689,'Google Chrome/Linux','https://374curry.com/','publish','2020-07-19 23:01:59'),(23,149,0,3355043488,'Google Chrome/Linux','https://374curry.com/','publish','2020-07-21 00:28:58'),(24,149,0,3118228941,'Google Chrome/Linux','https://374curry.com/','publish','2020-07-22 10:13:47'),(25,149,0,3118228936,'Google Chrome/Linux','https://374curry.com/','publish','2020-07-22 18:15:41'),(26,149,0,3346524571,'Unknown/MAC OS','https://374curry.com/','publish','2020-07-27 03:59:54'),(27,149,0,1833329701,'Google Chrome/Linux','https://374curry.com/','publish','2020-08-01 15:54:18'),(28,149,0,1676215279,'Unknown/MAC OS','https://374curry.com/','publish','2020-08-04 00:59:45'),(29,149,0,1676247871,'Google Chrome/Linux','https://374curry.com/','publish','2020-08-04 02:39:24'),(30,149,0,3517667471,'Apple Safari/MAC OS','https://374curry.com/','publish','2020-08-04 14:12:58'),(31,149,0,1806953542,'Google Chrome/Linux','https://374curry.com/','publish','2020-08-04 14:21:26'),(32,149,0,406452803,'Unknown/MAC OS','https://374curry.com/','publish','2020-08-04 15:20:01'),(33,149,0,3118228870,'Google Chrome/Linux','https://374curry.com/','publish','2020-08-06 06:08:49'),(34,149,0,3521223431,'Google Chrome/Linux','https://374curry.com/','publish','2020-08-06 06:38:59'),(35,149,0,3118228878,'Google Chrome/Linux','https://374curry.com/','publish','2020-08-07 09:55:25'),(36,149,0,3638380230,'Google Chrome/Windows','https://374curry.com/','publish','2020-08-07 17:57:38'),(37,149,0,1096743181,'Google Chrome/Linux','https://374curry.com/','publish','2020-08-08 16:12:34'),(38,149,0,1096743337,'Google Chrome/Windows','https://374curry.com/','publish','2020-08-09 23:18:52'),(39,149,0,95807988,'Google Chrome/Linux','https://374curry.com/','publish','2020-08-11 01:59:09'),(40,149,0,3118228750,'Google Chrome/Linux','https://374curry.com/','publish','2020-08-11 03:52:27'),(41,154,0,1449810666,'Google Chrome/Windows','https://374curry.com/application/','publish','2020-08-12 20:24:58'),(42,149,0,765132616,'Google Chrome/Linux','https://374curry.com/','publish','2020-08-14 01:56:18'),(43,149,0,1096743077,'Google Chrome/Linux','https://374curry.com/','publish','2020-08-18 15:00:27'),(44,149,0,1807646679,'Google Chrome/Linux','https://374curry.com/','publish','2020-08-19 16:41:16'),(45,149,0,2734115264,'Google Chrome/Linux','https://374curry.com/','publish','2020-08-21 08:01:05'),(46,149,0,2394106242,'Apple Safari/MAC OS','https://374curry.com/','publish','2020-08-23 16:08:35'),(47,149,0,1503915992,'Google Chrome/Linux','https://374curry.com/','publish','2020-08-23 18:27:09'),(48,149,0,3104583029,'Google Chrome/Linux','https://374curry.com/','publish','2020-08-24 03:14:02'),(49,154,0,2394106242,'Google Chrome/Windows','https://374curry.com/application/','publish','2020-08-25 04:22:33'),(50,154,0,1128543393,'Google Chrome/Windows','https://374curry.com/application/','publish','2020-08-25 15:41:33'),(51,149,0,406444256,'Google Chrome/Windows','https://374curry.com/upstairs-unit/','publish','2020-08-26 00:03:54'),(52,149,0,3118228931,'Google Chrome/Linux','https://374curry.com/','publish','2020-08-26 18:47:40'),(53,149,0,3339164896,'Apple Safari/MAC OS','https://374curry.com/','publish','2020-08-26 21:03:26'),(54,149,0,406431165,'Google Chrome/Windows','https://374curry.com/?fbclid=IwAR20GENeyWtXmjAJ9qSrJqoy0c9RA7Bb1-7Y_FnpJto8Njq7peg3O8T4wdo','publish','2020-08-28 14:34:27'),(55,149,0,3118228746,'Google Chrome/Linux','https://374curry.com/','publish','2020-08-29 18:16:54'),(56,149,0,28999470,'Google Chrome/Linux','https://374curry.com/','publish','2020-09-02 17:32:27'),(57,149,0,860718937,'Google Chrome/Linux','https://374curry.com/','publish','2020-09-03 17:53:47'),(58,149,0,84037010,'Google Chrome/Linux','https://374curry.com/','publish','2020-09-10 02:21:53'),(59,149,0,3118228883,'Google Chrome/Linux','https://374curry.com/','publish','2020-09-11 12:04:39'),(60,149,0,3118228738,'Google Chrome/Linux','https://374curry.com/','publish','2020-09-14 17:06:50'),(61,149,0,3652632793,'Google Chrome/Linux','https://374curry.com/','publish','2020-09-16 22:19:38'),(62,149,0,2503500629,'Google Chrome/Linux','https://374curry.com/','publish','2020-09-21 14:50:31'),(63,149,0,3118228725,'Google Chrome/Linux','https://374curry.com/','publish','2020-09-23 10:40:28'),(64,149,0,2513104588,'Google Chrome/Linux','https://374curry.com/','publish','2020-09-23 23:42:57');
/*!40000 ALTER TABLE `wpjg_weforms_entries` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpjg_weforms_entries` with 64 row(s)
--

--
-- Table structure for table `wpjg_weforms_entrymeta`
--

DROP TABLE IF EXISTS `wpjg_weforms_entrymeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_weforms_entrymeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `weforms_entry_id` bigint(20) unsigned DEFAULT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `meta_key` (`meta_key`(250)),
  KEY `entry_id` (`weforms_entry_id`)
) ENGINE=MyISAM AUTO_INCREMENT=611 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_weforms_entrymeta`
--

LOCK TABLES `wpjg_weforms_entrymeta` WRITE;
/*!40000 ALTER TABLE `wpjg_weforms_entrymeta` DISABLE KEYS */;
INSERT INTO `wpjg_weforms_entrymeta` VALUES (1,1,'name','Irina| | Marchenkova'),(2,1,'email','Rogerbatchelor61@gmail.com'),(3,1,'message','check'),(4,2,'name','Hassan| | Al-Nasiri'),(5,2,'email','hnasiri883@gmail.com'),(6,2,'message','My name is Hassan Al-Nasiri and myself and my 2 other roommates are looking to rent the Downstairs unit.'),(7,3,'name','Roger| | Batchelor'),(8,3,'email','Rogerbatchelor61@gmail.com'),(9,3,'message','test'),(10,4,'name_7503024510','ashley| | hizo'),(11,4,'email_address','ashley.hizo@hotmail.com'),(12,4,'desired_move_in_date','01/08/2020'),(13,4,'phone','2266002589'),(14,4,'current_residence_address','249 water street guelph'),(15,4,'how_long_at_current_residence_','3'),(16,4,'current_residence_landlord_s_name',''),(17,4,'current_residence_landlord_contact_number',''),(18,4,'reason_for_leaving_current_residence',''),(19,4,'monthly_rent_at_current_residence_copy',''),(20,4,'previous_residence_address',''),(21,4,'monthly_rent_at_previous_residence',''),(22,4,'how_long_at_previous_residence_',''),(23,4,'previous_residence_landlord_s_name',''),(24,4,'previous_residence_landlord_contact_number',''),(25,4,'have_you_ever_been_evicted_from_a_rental_residence_','No'),(26,4,'have_you_missed_two_or_more_rental_payments_in_the_past_12_months_','No'),(27,4,'have_you_ever_refused_to_pay_rent_when_due_','No'),(28,4,'if_you_have_answered_yes_to_any_of_the_previous_3_questions__please_explain',''),(29,4,'employment__select_all_that_apply_','Student'),(30,4,'if_you_are_a_student_are_you_a_full_time_or_part_time_student_','Full time'),(31,4,'if_you_are_a_student_what_program_are_you_enrolled_in_','law school'),(32,4,'if_you_are_a_student__which_year_are_you_enrolled_in_',''),(33,4,'current_employer_copy_copy',''),(34,4,'supervisor','| |'),(35,4,'your_job_title',''),(36,4,'date_hired',''),(37,4,'monthly_income',''),(38,4,'have_you_declared_bankruptcy_in_the_past_seven_years_',NULL),(39,4,'do_you_consent_to_a_credit_check_',NULL),(40,4,'is_there_anything_that_we_may_find_in_our_credit_check_that_you_want_to_comment_on_',''),(41,4,'do_you_have_a_guarantor_if_required_',NULL),(42,4,'name_of_guarantor_','| |'),(43,4,'relationship_of_guarantor_to_you',''),(44,4,'accommodation_arrangement_sought',''),(45,4,'do_you_have_pets_',NULL),(46,4,'i_acknowledge_there_is_no_smoking_of_any_kind_within_25_feet_of_the_building_nor_in_the_building',NULL),(47,4,'i_am_renting_by_the_room_and_i_need_the_room_to_be_furnished',NULL),(48,4,'do_you_have_an_automobile_and_require_parking__copy',NULL),(49,4,'signature','ashley hizo'),(50,4,'date_of_signature','may 2 2020'),(51,5,'name','ashley hizo| |'),(52,5,'email','ashley.hizo@hotmail.com'),(53,5,'message','application for room'),(54,6,'name','gagandeep kaur| | gaagndeep'),(55,6,'email','gagankaur280395@gmail.com'),(56,6,'message','hello.... we are two girls looking for room from 1st june . Is it still avalaible.'),(57,7,'name','gagan| |'),(58,7,'email','gagankaur280395@gmail.com'),(59,7,'message','looking for single room for sharing with two girls from 1st june'),(60,8,'name','Ivish| | Dsa'),(61,8,'email','ivishdsa@yahoo.com'),(62,8,'message','Hi I am interested in this house. We are 4 people including a couple. We are working professionals and are seeking to rent your basement. Please advise a good viewing time and other requirements accordingly! Awaiting your response. Ivish'),(63,9,'name','Sophie| | LeBlanc'),(64,9,'email','sophieleblancm@gmail.com'),(65,9,'message','Hello, We are a military family being posted to Windsor in July. We are both in our late 30’s and are looking for a quiet spot to live in for the next few years. We have two healthy 10 year old senior Boston Terriers that are well behaved and quiet, and kennelled when we are not home. We really love the look of your apartment posted and would really appreciate the chance to have a look at it virtually.'),(66,10,'name_7503024510','Kuchile| | Mwafulilwa'),(67,10,'email_address','mwafulilwak@gmail.com'),(68,10,'desired_move_in_date','01/06/2020'),(69,10,'phone','2262462488'),(70,10,'current_residence_address','929 Josephine Ave,Windsor,N9B 2L4'),(71,10,'how_long_at_current_residence_','3 weeks'),(72,10,'current_residence_landlord_s_name',''),(73,10,'current_residence_landlord_contact_number',''),(74,10,'reason_for_leaving_current_residence','I figured its best to type because of the situation im in.I recently moved out of residence when the school year finished and stayed with a friend that was in Toronto..He lives there and due to the current situation went back home and i took his spot for the mean time.So now im currently looking for a new place of my own.If you have any questions,feel free to contact me.'),(75,10,'monthly_rent_at_current_residence_copy',''),(76,10,'previous_residence_address','750 sunset Ave (Alumni Hall -University residence)'),(77,10,'monthly_rent_at_previous_residence','About $700/month'),(78,10,'how_long_at_previous_residence_','3 years'),(79,10,'previous_residence_landlord_s_name','(school residence)'),(80,10,'previous_residence_landlord_contact_number',''),(81,10,'have_you_ever_been_evicted_from_a_rental_residence_','No'),(82,10,'have_you_missed_two_or_more_rental_payments_in_the_past_12_months_','No'),(83,10,'have_you_ever_refused_to_pay_rent_when_due_','No'),(84,10,'if_you_have_answered_yes_to_any_of_the_previous_3_questions__please_explain',''),(85,10,'employment__select_all_that_apply__ctl___click_to_select_more_than_one_','Student'),(86,10,'if_you_are_a_student_are_you_a_full_time_or_part_time_student_','Full time'),(87,10,'if_you_are_a_student_what_program_are_you_enrolled_in_','Mechanical Engineering'),(88,10,'if_you_are_a_student__which_year_are_you_enrolled_in__ctl___click_to_select_more_than_one_','Third Year'),(89,10,'current_employer_copy_copy',''),(90,10,'supervisor','| |'),(91,10,'your_job_title',''),(92,10,'date_hired',''),(93,10,'monthly_income',''),(94,10,'have_you_declared_bankruptcy_in_the_past_seven_years_','No'),(95,10,'do_you_consent_to_a_credit_check_','No'),(96,10,'is_there_anything_that_we_may_find_in_our_credit_check_that_you_want_to_comment_on_',''),(97,10,'do_you_have_a_guarantor_if_required_',' No'),(98,10,'name_of_guarantor_','| |'),(99,10,'relationship_of_guarantor_to_you',''),(100,10,'accommodation_arrangement_sought_ctl___click_to_select_more_than_one_',''),(101,10,'do_you_have_pets_','No'),(102,10,'i_acknowledge_there_is_no_smoking_of_any_kind_within_25_feet_of_the_building_nor_in_the_building','Yes, I acknowledge the no smoking policy'),(103,10,'i_am_renting_by_the_room_and_i_need_the_room_to_be_furnished','No, I am bringing my own furniture'),(104,10,'do_you_have_an_automobile_and_require_parking__copy','No, I do not need parking'),(105,10,'signature','Kuchile'),(106,10,'date_of_signature','May 6th ,2020'),(107,11,'name_7503024510','Sophie| | LeBlanc'),(108,11,'email_address','sophieleblancm@gmail.com'),(109,11,'desired_move_in_date','10/07/2020'),(110,11,'phone','1-506-261-3168'),(111,11,'current_residence_address','35 Tweedsmuir Court, Oromocto NB, E3B 6N7'),(112,11,'how_long_at_current_residence_','6 years'),(113,11,'current_residence_landlord_s_name','Canadian Forces Housing Agency'),(114,11,'current_residence_landlord_contact_number','1-800-903-2342'),(115,11,'reason_for_leaving_current_residence','Husband is in the Canadian Armed Forces and is posted to Windsor Ontario.'),(116,11,'monthly_rent_at_current_residence_copy','1525 per month'),(117,11,'previous_residence_address','2 Leafwood Crescent Fredericton NB'),(118,11,'monthly_rent_at_previous_residence','$ 1300'),(119,11,'how_long_at_previous_residence_','4'),(120,11,'previous_residence_landlord_s_name','Jolyne Roy'),(121,11,'previous_residence_landlord_contact_number','1-506-261-4218'),(122,11,'have_you_ever_been_evicted_from_a_rental_residence_','No'),(123,11,'have_you_missed_two_or_more_rental_payments_in_the_past_12_months_','No'),(124,11,'have_you_ever_refused_to_pay_rent_when_due_','No'),(125,11,'if_you_have_answered_yes_to_any_of_the_previous_3_questions__please_explain',''),(126,11,'employment__select_all_that_apply__ctl___click_to_select_more_than_one_','Full-time'),(127,11,'if_you_are_a_student_are_you_a_full_time_or_part_time_student_',NULL),(128,11,'if_you_are_a_student_what_program_are_you_enrolled_in_',''),(129,11,'if_you_are_a_student__which_year_are_you_enrolled_in__ctl___click_to_select_more_than_one_',''),(130,11,'current_employer_copy_copy','Canadian Armed Forces'),(131,11,'supervisor','Brionne| | Logan'),(132,11,'your_job_title','Weapons Tech'),(133,11,'date_hired','Aug 4 2010'),(134,11,'monthly_income','3000 Brad / 3500 Sophie'),(135,11,'have_you_declared_bankruptcy_in_the_past_seven_years_','No'),(136,11,'do_you_consent_to_a_credit_check_','Yes'),(137,11,'is_there_anything_that_we_may_find_in_our_credit_check_that_you_want_to_comment_on_',''),(138,11,'do_you_have_a_guarantor_if_required_',' No'),(139,11,'name_of_guarantor_','| |'),(140,11,'relationship_of_guarantor_to_you',''),(141,11,'accommodation_arrangement_sought_ctl___click_to_select_more_than_one_','Entire Downstairs Unit (1450)'),(142,11,'do_you_have_pets_','Yes'),(143,11,'i_acknowledge_there_is_no_smoking_of_any_kind_within_25_feet_of_the_building_nor_in_the_building','Yes, I acknowledge the no smoking policy'),(144,11,'i_am_renting_by_the_room_and_i_need_the_room_to_be_furnished','No, I am bringing my own furniture'),(145,11,'do_you_have_an_automobile_and_require_parking__copy','Yes, I need parking'),(146,11,'signature','Sophie LeBLanc'),(147,11,'date_of_signature','May 6 2020'),(148,12,'name','Kelly| | Spinarsky'),(149,12,'email','kellyspinarsky@gmail.com'),(150,12,'message','Hello, just wondering what units you have left? My cell: 519-890-2018 I\'m 39 working professional female. @kellyspinarsky Please let me know when you have time. Thanks'),(151,13,'name','Stephanie| | Dagher'),(152,13,'email','sdagher23@gmail.com'),(153,13,'message','Hi there, are you able to rent a room if you don’t have someone to rent the other rooms available?'),(154,14,'name_7503024510','Shelby| | Sansoucy'),(155,14,'email_address','shelbysansoucy@gmail.com'),(156,14,'desired_move_in_date','01/07/2020'),(157,14,'phone','5193339857'),(158,14,'current_residence_address','2019 Marisa Court (Bright\'s Grove, ON) is my current address as I moved back home in January to save money before going back to school. My rental address before moving home in January was 180 Metcalfe street (Guelph, ON). I will be filling in the information below based on my Guelph residence and my residence before that.'),(159,14,'how_long_at_current_residence_','2 years'),(160,14,'current_residence_landlord_s_name','Ron Russell'),(161,14,'current_residence_landlord_contact_number','5198375535'),(162,14,'reason_for_leaving_current_residence','Completed undergraduate degree and moved home to save money before starting school again in Windsor.'),(163,14,'monthly_rent_at_current_residence_copy','600 without utilities.'),(164,14,'previous_residence_address','47-30 Vaughan Street, Guelph.'),(165,14,'monthly_rent_at_previous_residence','500 all inclusive.'),(166,14,'how_long_at_previous_residence_','1 year.'),(167,14,'previous_residence_landlord_s_name','Lisa Bombino'),(168,14,'previous_residence_landlord_contact_number','5199937993'),(169,14,'have_you_ever_been_evicted_from_a_rental_residence_','No'),(170,14,'have_you_missed_two_or_more_rental_payments_in_the_past_12_months_','No'),(171,14,'have_you_ever_refused_to_pay_rent_when_due_','No'),(172,14,'if_you_have_answered_yes_to_any_of_the_previous_3_questions__please_explain',''),(173,14,'employment__select_all_that_apply__ctl___click_to_select_more_than_one_','Student'),(174,14,'if_you_are_a_student_are_you_a_full_time_or_part_time_student_','Full time'),(175,14,'if_you_are_a_student_what_program_are_you_enrolled_in_','Medical Laboratoy Science, however I have previously completed a bachelor degree.'),(176,14,'if_you_are_a_student__which_year_are_you_enrolled_in__ctl___click_to_select_more_than_one_','First Year'),(177,14,'current_employer_copy_copy','I will be looking for a part time position was I move to Windsor.'),(178,14,'supervisor','| |'),(179,14,'your_job_title',''),(180,14,'date_hired',''),(181,14,'monthly_income',''),(182,14,'have_you_declared_bankruptcy_in_the_past_seven_years_','No'),(183,14,'do_you_consent_to_a_credit_check_','Yes'),(184,14,'is_there_anything_that_we_may_find_in_our_credit_check_that_you_want_to_comment_on_',''),(185,14,'do_you_have_a_guarantor_if_required_','Yes'),(186,14,'name_of_guarantor_','Kathleen| | Sansoucy'),(187,14,'relationship_of_guarantor_to_you','Mother'),(188,14,'accommodation_arrangement_sought_ctl___click_to_select_more_than_one_','Upstairs Unit Bedroom ($590)'),(189,14,'do_you_have_pets_','Yes'),(190,14,'i_acknowledge_there_is_no_smoking_of_any_kind_within_25_feet_of_the_building_nor_in_the_building','Yes, I acknowledge the no smoking policy'),(191,14,'i_am_renting_by_the_room_and_i_need_the_room_to_be_furnished','No, I am bringing my own furniture'),(192,14,'do_you_have_an_automobile_and_require_parking__copy','Yes, I need parking'),(193,14,'signature','Shelby Sansoucy'),(194,14,'date_of_signature','May 18, 2020.'),(195,15,'name_7503024510','Jonah| | Robinson'),(196,15,'email_address','jonah.r@live.com'),(197,15,'desired_move_in_date','01/07/2020'),(198,15,'phone','647-909-8300'),(199,15,'current_residence_address','2125 W 37th Ave, Vancouver, BC V6M 1N9'),(200,15,'how_long_at_current_residence_','July 1st, 2019'),(201,15,'current_residence_landlord_s_name','Fiona and Brock Heyes'),(202,15,'current_residence_landlord_contact_number','604 736-7558'),(203,15,'reason_for_leaving_current_residence','I am studying at UBC and the fall semester is online due to covid-19 so I would prefer to be back East and closer to friends and family while doing my online classes.'),(204,15,'monthly_rent_at_current_residence_copy','761$'),(205,15,'previous_residence_address','36b Harbour Drive, Otumoetai, Tauranga 3110, New Zealand'),(206,15,'monthly_rent_at_previous_residence','530 NZD / week divided amongst 4 people'),(207,15,'how_long_at_previous_residence_','One year'),(208,15,'previous_residence_landlord_s_name','Kim Johnson'),(209,15,'previous_residence_landlord_contact_number','kim.johnson@harcourts.co.nz 0800 147 368'),(210,15,'have_you_ever_been_evicted_from_a_rental_residence_','No'),(211,15,'have_you_missed_two_or_more_rental_payments_in_the_past_12_months_','No'),(212,15,'have_you_ever_refused_to_pay_rent_when_due_','No'),(213,15,'if_you_have_answered_yes_to_any_of_the_previous_3_questions__please_explain','N/A.'),(214,15,'employment__select_all_that_apply__ctl___click_to_select_more_than_one_','Full-time'),(215,15,'if_you_are_a_student_are_you_a_full_time_or_part_time_student_','Full time'),(216,15,'if_you_are_a_student_what_program_are_you_enrolled_in_','Bachelor of Arts with a Major in International Relations at UBC'),(217,15,'if_you_are_a_student__which_year_are_you_enrolled_in__ctl___click_to_select_more_than_one_','Third Year'),(218,15,'current_employer_copy_copy','Quick Contractors'),(219,15,'supervisor','Laurie| | Cole'),(220,15,'your_job_title','Commercial Project Coordinator'),(221,15,'date_hired','January 2016'),(222,15,'monthly_income','2800'),(223,15,'have_you_declared_bankruptcy_in_the_past_seven_years_','No'),(224,15,'do_you_consent_to_a_credit_check_','Yes'),(225,15,'is_there_anything_that_we_may_find_in_our_credit_check_that_you_want_to_comment_on_','No.'),(226,15,'do_you_have_a_guarantor_if_required_','Yes'),(227,15,'name_of_guarantor_','Deirdre| | Hogan'),(228,15,'relationship_of_guarantor_to_you','Mother'),(229,15,'accommodation_arrangement_sought_ctl___click_to_select_more_than_one_','Upstairs Unit Bedroom ($590)'),(230,15,'do_you_have_pets_','Yes'),(231,15,'i_acknowledge_there_is_no_smoking_of_any_kind_within_25_feet_of_the_building_nor_in_the_building','Yes, I acknowledge the no smoking policy'),(232,15,'i_am_renting_by_the_room_and_i_need_the_room_to_be_furnished','Yes, I need the room to be furnished'),(233,15,'do_you_have_an_automobile_and_require_parking__copy','No, I do not need parking'),(234,15,'signature','Jonah Hogan Robinson'),(235,15,'date_of_signature','05/25/2020'),(236,16,'name','Brady| | Renaud'),(237,16,'email','bradyrenaud62@gmail.com'),(238,16,'message','my name is brady renaud I\'m very interested in your rental I work a full time job I would like to set up a appointment to view your 500 dollar rental my number is 2269357602'),(239,17,'name_7503024510','Erika| | Nissen'),(240,17,'email_address','erikanissen20@gmail.com'),(241,17,'desired_move_in_date','01/07/2020'),(242,17,'phone','9022936079'),(243,17,'current_residence_address','2 Brigadier Private'),(244,17,'how_long_at_current_residence_','8 months'),(245,17,'current_residence_landlord_s_name','Canada'),(246,17,'current_residence_landlord_contact_number',''),(247,17,'reason_for_leaving_current_residence','Currently staying at my parents house and working to save money before starting graduate school, looking to move to Windsor at the start of graduate school'),(248,17,'monthly_rent_at_current_residence_copy','500'),(249,17,'previous_residence_address','5320 Tobin Street, Halifax, Nova Scotia B3H 1S2'),(250,17,'monthly_rent_at_previous_residence',''),(251,17,'how_long_at_previous_residence_','2 years'),(252,17,'previous_residence_landlord_s_name','Peppermint Properties'),(253,17,'previous_residence_landlord_contact_number',''),(254,17,'have_you_ever_been_evicted_from_a_rental_residence_','No'),(255,17,'have_you_missed_two_or_more_rental_payments_in_the_past_12_months_','No'),(256,17,'have_you_ever_refused_to_pay_rent_when_due_','No'),(257,17,'if_you_have_answered_yes_to_any_of_the_previous_3_questions__please_explain',''),(258,17,'employment__select_all_that_apply__ctl___click_to_select_more_than_one_','Full-time| Student'),(259,17,'if_you_are_a_student_are_you_a_full_time_or_part_time_student_','Full time'),(260,17,'if_you_are_a_student_what_program_are_you_enrolled_in_','MSc Integrated Biology'),(261,17,'if_you_are_a_student__which_year_are_you_enrolled_in__ctl___click_to_select_more_than_one_','Graduate Student'),(262,17,'current_employer_copy_copy','University of Windsor'),(263,17,'supervisor','Oliver| | Love'),(264,17,'your_job_title','Research Assistant'),(265,17,'date_hired','May 1, 2020'),(266,17,'monthly_income',''),(267,17,'have_you_declared_bankruptcy_in_the_past_seven_years_','No'),(268,17,'do_you_consent_to_a_credit_check_','Yes'),(269,17,'is_there_anything_that_we_may_find_in_our_credit_check_that_you_want_to_comment_on_',''),(270,17,'do_you_have_a_guarantor_if_required_',' No'),(271,17,'name_of_guarantor_','Erika| | Nissen'),(272,17,'relationship_of_guarantor_to_you',''),(273,17,'accommodation_arrangement_sought_ctl___click_to_select_more_than_one_','Upstairs Unit Bedroom ($590)'),(274,17,'do_you_have_pets_','No'),(275,17,'i_acknowledge_there_is_no_smoking_of_any_kind_within_25_feet_of_the_building_nor_in_the_building','Yes, I acknowledge the no smoking policy'),(276,17,'i_am_renting_by_the_room_and_i_need_the_room_to_be_furnished',NULL),(277,17,'do_you_have_an_automobile_and_require_parking__copy','Yes, I need parking'),(278,17,'signature','Erika Nissen'),(279,17,'date_of_signature','May 28,2020'),(280,18,'name','Holly| | Menard'),(281,18,'email','menardt@uwindsor.ca'),(282,18,'message','Hello, I am interested in renting the last room available... I am a professional student in the legal field, hoping to find a job downtown when I have completed my schooling so this location is wonderful. The property looks beautiful. Just a clarification that the lower unit does not share the same bathroom as the above 2 bedroom part of the complex. Correct? Hope to be in touch, Holly'),(283,19,'name_7503024510','KAREEM| | JAMIU AGBAJE'),(284,19,'email_address','jimmy2k4allheart@gmail.com'),(285,19,'desired_move_in_date','05/09/2020'),(286,19,'phone','+2348030832883'),(287,19,'current_residence_address','11, OLADIRAN-OJO STREET SANGO OTTA OGUN STATE NIGERIA'),(288,19,'how_long_at_current_residence_','FIVE YEARS'),(289,19,'current_residence_landlord_s_name','LATEEF IBRAHEEM'),(290,19,'current_residence_landlord_contact_number','+2348026116018'),(291,19,'reason_for_leaving_current_residence','LEAVING FOR STUDY IN CANADA'),(292,19,'monthly_rent_at_current_residence_copy','$650'),(293,19,'previous_residence_address','MY PARENTS HOUSE'),(294,19,'monthly_rent_at_previous_residence','N/A'),(295,19,'how_long_at_previous_residence_','N/A'),(296,19,'previous_residence_landlord_s_name','N/A'),(297,19,'previous_residence_landlord_contact_number','N/A'),(298,19,'have_you_ever_been_evicted_from_a_rental_residence_','No'),(299,19,'have_you_missed_two_or_more_rental_payments_in_the_past_12_months_','No'),(300,19,'have_you_ever_refused_to_pay_rent_when_due_','No'),(301,19,'if_you_have_answered_yes_to_any_of_the_previous_3_questions__please_explain','N/A'),(302,19,'employment__select_all_that_apply__ctl___click_to_select_more_than_one_','Unemployed'),(303,19,'if_you_are_a_student_are_you_a_full_time_or_part_time_student_','Full time'),(304,19,'if_you_are_a_student_what_program_are_you_enrolled_in_','PLUMBING TECHNIQUES'),(305,19,'if_you_are_a_student__which_year_are_you_enrolled_in__ctl___click_to_select_more_than_one_','First Year'),(306,19,'current_employer_copy_copy','N/A'),(307,19,'supervisor','N/A| | N/A'),(308,19,'your_job_title','N/A'),(309,19,'date_hired','N/A'),(310,19,'monthly_income','$2000'),(311,19,'have_you_declared_bankruptcy_in_the_past_seven_years_','No'),(312,19,'do_you_consent_to_a_credit_check_','No'),(313,19,'is_there_anything_that_we_may_find_in_our_credit_check_that_you_want_to_comment_on_','N/A'),(314,19,'do_you_have_a_guarantor_if_required_',' No'),(315,19,'name_of_guarantor_','N/A| | N/A'),(316,19,'relationship_of_guarantor_to_you','N/A'),(317,19,'accommodation_arrangement_sought_ctl___click_to_select_more_than_one_','Downstairs Unit Bedroom ($490)'),(318,19,'do_you_have_pets_','No'),(319,19,'i_acknowledge_there_is_no_smoking_of_any_kind_within_25_feet_of_the_building_nor_in_the_building','Yes, I acknowledge the no smoking policy'),(320,19,'i_am_renting_by_the_room_and_i_need_the_room_to_be_furnished','Yes, I need the room to be furnished'),(321,19,'do_you_have_an_automobile_and_require_parking__copy','Yes, I need parking'),(322,19,'signature','Kareem Jamiu Agbaje'),(323,19,'date_of_signature','2 / 6 / 2020'),(324,20,'name','Aleisha| | Harrett'),(325,20,'email','aleishamharrett@gmail.com'),(326,20,'message','Hi there, I am interested in viewing one of your units. I am in need of a room as I am saving up to buy for a house and my current living situation does not suit me any longer. I am a mature 29 year old female who is employed at a non-profit Ministry helping women in recovery. Is there still a room available?'),(327,21,'name_7503024510','Aleisha| | Harrett'),(328,21,'email_address','aleishamharrett@gmail.com'),(329,21,'desired_move_in_date','01/07/2020'),(330,21,'phone','519-535-0467'),(331,21,'current_residence_address','4490 Concession 7, Windsor ON'),(332,21,'how_long_at_current_residence_','3 years'),(333,21,'current_residence_landlord_s_name','Windsor Life Centre - Linda'),(334,21,'current_residence_landlord_contact_number','519-972-8160'),(335,21,'reason_for_leaving_current_residence','Conflict with live-in position and program assistant position. I am currently a live-in staff member at the recovery home which requires availability through the evenings for supervision. Within the last two years I have been promoted from a supervision role a program assistant role within the treatment facility. Because I am now involved in the treatment planning and facilitation of the residents in the home, I have found there is a conflict between my live-in position and my office position therefore I am resigning from my live-in position.'),(336,21,'monthly_rent_at_current_residence_copy','I do not currently pay rent. My room and board is provided as compensation for my live-in responsibilities.'),(337,21,'previous_residence_address','1306 Skyview Rd, Charlotte NC, 28208'),(338,21,'monthly_rent_at_previous_residence','$600'),(339,21,'how_long_at_previous_residence_','7 months'),(340,21,'previous_residence_landlord_s_name','Jeanette Blackson'),(341,21,'previous_residence_landlord_contact_number','1-989-708-1474'),(342,21,'have_you_ever_been_evicted_from_a_rental_residence_','No'),(343,21,'have_you_missed_two_or_more_rental_payments_in_the_past_12_months_','No'),(344,21,'have_you_ever_refused_to_pay_rent_when_due_','No'),(345,21,'if_you_have_answered_yes_to_any_of_the_previous_3_questions__please_explain',''),(346,21,'employment__select_all_that_apply__ctl___click_to_select_more_than_one_','Full-time'),(347,21,'if_you_are_a_student_are_you_a_full_time_or_part_time_student_',NULL),(348,21,'if_you_are_a_student_what_program_are_you_enrolled_in_',''),(349,21,'if_you_are_a_student__which_year_are_you_enrolled_in__ctl___click_to_select_more_than_one_',''),(350,21,'current_employer_copy_copy','Windsor Life Centre'),(351,21,'supervisor','Shannon| | Coghill'),(352,21,'your_job_title','Program Assistant'),(353,21,'date_hired','August 2017'),(354,21,'monthly_income','$2,100.00'),(355,21,'have_you_declared_bankruptcy_in_the_past_seven_years_','No'),(356,21,'do_you_consent_to_a_credit_check_','Yes'),(357,21,'is_there_anything_that_we_may_find_in_our_credit_check_that_you_want_to_comment_on_',''),(358,21,'do_you_have_a_guarantor_if_required_','Yes'),(359,21,'name_of_guarantor_','Darla| | Harrett'),(360,21,'relationship_of_guarantor_to_you','Mom'),(361,21,'accommodation_arrangement_sought_ctl___click_to_select_more_than_one_','Upstairs Unit Bedroom ($590)'),(362,21,'do_you_have_pets_','No'),(363,21,'i_acknowledge_there_is_no_smoking_of_any_kind_within_25_feet_of_the_building_nor_in_the_building','Yes, I acknowledge the no smoking policy'),(364,21,'i_am_renting_by_the_room_and_i_need_the_room_to_be_furnished','No, I am bringing my own furniture'),(365,21,'do_you_have_an_automobile_and_require_parking__copy','Yes, I need parking'),(366,21,'signature','Aleisha Harrett'),(367,21,'date_of_signature','June 5, 2020'),(368,22,'name','Dean Gaylord| | Dean Gaylord'),(369,22,'email','yuandie84@gmail.com'),(370,22,'message','intuitive'),(371,23,'name','Abbigail Gerhold| | Abbigail Gerhold'),(372,23,'email','firemarshallbobjr@yahoo.com'),(373,23,'message','navigate'),(374,24,'name','Annalise Pacocha| | Annalise Pacocha'),(375,24,'email','jaygtz25@gmail.com'),(376,24,'message','quantify'),(377,25,'name','Nia Kuhic| | Nia Kuhic'),(378,25,'email','stonesdaycare@aol.com'),(379,25,'message','USB'),(380,26,'name','Bader| | Yabroudi'),(381,26,'email','bader.eddine@hotmail.com'),(382,26,'message','Hi I am a single man and I would like to rent a room. When can I see the place? Best regards'),(383,27,'name','Graham Barrows DVM| | Graham Barrows DVM'),(384,27,'email','derek@kegsmiths.com'),(385,27,'message','Concrete'),(386,28,'name','Kory| | Bertrand'),(387,28,'email','kory_928@hotmail.com'),(388,28,'message','Hello, I will be going into my masters degree at UWindsor and I have started looking for a place in the city. I have a few questions in terms of the large bedroom and also current tenants. Thanks -Kory'),(389,29,'name','Valerie| | Bertram'),(390,29,'email','vbertram.vpb@gmail.com'),(391,29,'message','Hi I\'m interested in the apartment. I\'m 27 years old returning to school to improve my career prospects. I\'m very quiet and clean. Looking for a nice, quiet place to live with my golden retriever while I attend school.'),(392,30,'name','Omar| | Moe'),(393,30,'email','mmomar@ualberta.ca'),(394,30,'message','Hi, I’m in urgent room for rent in Windsor today. Thanks and regards,'),(395,31,'name','Paul| | Williams'),(396,31,'email','paulwilliamstoronto@gmail.com'),(397,31,'message','I was interested in renting the room for $500. If you could get back to me, I\'d appreciate it'),(398,32,'name','Jackie| | Lafreniere'),(399,32,'email','jackielafreniere14@icloud.com'),(400,32,'message','Do you allow small pets?'),(401,33,'name','Orpha Hettinger| | Orpha Hettinger'),(402,33,'email','sterlingsamuel@rocketmail.com'),(403,33,'message','De-engineered'),(404,34,'name','Alexander| | Teves'),(405,34,'email','alexteves54@gmail.com'),(406,34,'message','Hello. My name is Alex . I am a young male looking for a room and was wondering if this is still available. I\'m on ODSP plus I work in a kitchen. I just recently have been unemployed due to covid 19 and since we have been hopefully moving into stage 3, I am seeking employment again. Or going back to my previous job at the Bistro at the river. Please let me know if I can schedule a viewing . Thank you :)'),(407,35,'name','Shana Renner| | Shana Renner'),(408,35,'email','leann@hiltonmgmt.com'),(409,35,'message','mission-critical'),(410,36,'name','Drew| | Reaume'),(411,36,'email','reilly_chadwick@can.salvationarmy.org'),(412,36,'message','Good afternoon, My name is Reilly Chadwick, I am an Emergency Shelter Housing Worker at The Salvation Army. A Client and I discovered your Ad on Kijiji; he is very interested in scheduling a viewing for one of the rooms for rent ($500.00). He is a 21-year-old who is not enrolled in post-secondary education, however, he has lived independently successfully in the past and has no issues in regards to arrears, legal issues, addiction, etc. Would it be possible for this individual to schedule a viewing if the rooms are still available? Please let us know either way. My phone number is 519-253-7473 x.213 and my email address is reilly_chadwick@can.salvationarmy.org Thank you and take care, Reilly Chadwick'),(413,37,'name','Walter| | Mihelich'),(414,37,'email','wmih@live.com'),(415,37,'message','Hi Irina, You appear to be a sympathetic landlord. I am a McGill university graduate and moved to Windsor from Ottawa. Although I am retired I do some substitute teaching at the U of W on a part time basis. I would be renting for the long term. Would appreciate it if you arranged a visit of the unit with someone who could answer my questions. Thank you, Walter'),(416,38,'name','Ronald| | O Dowd'),(417,38,'email','rockin22ronald@gmail.com'),(418,38,'message','Do you stil have any rooms left and do you rent to working adults i work full time and about how big are the rooms ? thank you'),(419,39,'name','Joey| | Beauvais-Feisthauer'),(420,39,'email','joeybeau15@hotmail.com'),(421,39,'message','I\'m very interested. Is the one remaining room small or large? Do you have the dimensions? I\'m a PhD student'),(422,40,'name','Arlo Jacobson| | Arlo Jacobson'),(423,40,'email','artgurl99@yahoo.com'),(424,40,'message','Assurance'),(425,41,'name_7503024510','Joey| | Beauvais-Feisthauer'),(426,41,'email_address','joeybeau15@hotmail.com'),(427,41,'desired_move_in_date','19/08/2020'),(428,41,'phone','8197122654'),(429,41,'current_residence_address','6, rue Williamson, Gatineau, QC'),(430,41,'how_long_at_current_residence_','6 months'),(431,41,'current_residence_landlord_s_name','Claudie, my mother'),(432,41,'current_residence_landlord_contact_number','581 307-6364'),(433,41,'reason_for_leaving_current_residence','I\'m starting a PhD at Wayne State in Detroit'),(434,41,'monthly_rent_at_current_residence_copy','0'),(435,41,'previous_residence_address','227, Bridge Avenue, Windsor, ON'),(436,41,'monthly_rent_at_previous_residence','425'),(437,41,'how_long_at_previous_residence_','6 months'),(438,41,'previous_residence_landlord_s_name','Cedrick Kelly'),(439,41,'previous_residence_landlord_contact_number','416 315-8567'),(440,41,'have_you_ever_been_evicted_from_a_rental_residence_','No'),(441,41,'have_you_missed_two_or_more_rental_payments_in_the_past_12_months_','No'),(442,41,'have_you_ever_refused_to_pay_rent_when_due_','No'),(443,41,'if_you_have_answered_yes_to_any_of_the_previous_3_questions__please_explain',''),(444,41,'employment__select_all_that_apply__ctl___click_to_select_more_than_one_','Part-time| Student'),(445,41,'if_you_are_a_student_are_you_a_full_time_or_part_time_student_','Full time'),(446,41,'if_you_are_a_student_what_program_are_you_enrolled_in_','PhD in Mathematics'),(447,41,'if_you_are_a_student__which_year_are_you_enrolled_in__ctl___click_to_select_more_than_one_','Graduate Student'),(448,41,'current_employer_copy_copy','Wayne State University'),(449,41,'supervisor','| |'),(450,41,'your_job_title','Graduate teaching assistant'),(451,41,'date_hired','08/2020'),(452,41,'monthly_income',''),(453,41,'have_you_declared_bankruptcy_in_the_past_seven_years_','No'),(454,41,'do_you_consent_to_a_credit_check_','Yes'),(455,41,'is_there_anything_that_we_may_find_in_our_credit_check_that_you_want_to_comment_on_',''),(456,41,'do_you_have_a_guarantor_if_required_','Yes'),(457,41,'name_of_guarantor_','Julien| | Feisthauer'),(458,41,'relationship_of_guarantor_to_you','Father'),(459,41,'accommodation_arrangement_sought_ctl___click_to_select_more_than_one_','Upstairs Unit Bedroom ($590)| Downstairs Unit Bedroom ($490)'),(460,41,'do_you_have_pets_','No'),(461,41,'i_acknowledge_there_is_no_smoking_of_any_kind_within_25_feet_of_the_building_nor_in_the_building','Yes, I acknowledge the no smoking policy'),(462,41,'i_am_renting_by_the_room_and_i_need_the_room_to_be_furnished','Yes, I need the room to be furnished'),(463,41,'do_you_have_an_automobile_and_require_parking__copy','No, I do not need parking'),(464,41,'signature','Joey Beauvais-Feisthauer'),(465,41,'date_of_signature','2020/08/12'),(466,42,'name','Ashlee Jast| | Ashlee Jast'),(467,42,'email','danroofing42@gmail.com'),(468,42,'message','calculate'),(469,43,'name','Walter| | Mihelich'),(470,43,'email','wmih@live.com'),(471,43,'message','I submitted a query some time ago and got no response. I am a McGill university graduate retired with a substantial pension from Resolute Forest Products. Shall be substituting at UofW on a part time basis although I don\'t need the money. Please reply one way or the other like a good landlady should. I would be renting for the long term and would be prepared to sign a lease. Thanks for your consideration, Walter'),(472,44,'name','Nathan| | Kay'),(473,44,'email','natejkay@gmail.com'),(474,44,'message','Hello, i was wondering if this was still available, and if possible, to come check it out? Thanks'),(475,45,'name','Virginia Wintheiser| | Virginia Wintheiser'),(476,45,'email','michael.gradle@enablemidstream.com'),(477,45,'message','parse'),(478,46,'name','Jeffrey| | Yung'),(479,46,'email','jyung5533@gmail.com'),(480,46,'message','Hello, I recently saw your ad for a room in the upstairs level. I will be starting graduate school at University of Windsor this coming fall and was wondering if the rooms are available? Thank you, Jeffrey'),(481,47,'name','Vince Farrell| | Vince Farrell'),(482,47,'email','brian.helen66919@gmail.com'),(483,47,'message','Soap'),(484,48,'name','Earline Kuphal| | Earline Kuphal'),(485,48,'email','frbdates@gmail.com'),(486,48,'message','deposit'),(487,49,'name_7503024510','Jeffrey| | Yung'),(488,49,'email_address','jyung5533@gmail.com'),(489,49,'desired_move_in_date','04/09/2020'),(490,49,'phone','979-571-0516'),(491,49,'current_residence_address','607 - 2980 Atlantic Ave Coquitlam, BC V3B 0G2 Canada'),(492,49,'how_long_at_current_residence_','4 MONTHS'),(493,49,'current_residence_landlord_s_name',''),(494,49,'current_residence_landlord_contact_number',''),(495,49,'reason_for_leaving_current_residence','Moving for graduate school at University of Windsor.'),(496,49,'monthly_rent_at_current_residence_copy',''),(497,49,'previous_residence_address','309 Redmond Drive, Unit 107 College Station, Texas 77840 USA'),(498,49,'monthly_rent_at_previous_residence',''),(499,49,'how_long_at_previous_residence_','2 years 6 months'),(500,49,'previous_residence_landlord_s_name',''),(501,49,'previous_residence_landlord_contact_number',''),(502,49,'have_you_ever_been_evicted_from_a_rental_residence_','No'),(503,49,'have_you_missed_two_or_more_rental_payments_in_the_past_12_months_','No'),(504,49,'have_you_ever_refused_to_pay_rent_when_due_','No'),(505,49,'if_you_have_answered_yes_to_any_of_the_previous_3_questions__please_explain',''),(506,49,'employment__select_all_that_apply__ctl___click_to_select_more_than_one_','Student'),(507,49,'if_you_are_a_student_are_you_a_full_time_or_part_time_student_','Full time'),(508,49,'if_you_are_a_student_what_program_are_you_enrolled_in_','PhD in Integrative Biology'),(509,49,'if_you_are_a_student__which_year_are_you_enrolled_in__ctl___click_to_select_more_than_one_','First Year'),(510,49,'current_employer_copy_copy',''),(511,49,'supervisor','| |'),(512,49,'your_job_title',''),(513,49,'date_hired',''),(514,49,'monthly_income',''),(515,49,'have_you_declared_bankruptcy_in_the_past_seven_years_','No'),(516,49,'do_you_consent_to_a_credit_check_',NULL),(517,49,'is_there_anything_that_we_may_find_in_our_credit_check_that_you_want_to_comment_on_','No, but I would like to discuss the rental agreement and requirements with the landlord before consenting to a credit check.'),(518,49,'do_you_have_a_guarantor_if_required_','Yes'),(519,49,'name_of_guarantor_','| |'),(520,49,'relationship_of_guarantor_to_you',''),(521,49,'accommodation_arrangement_sought_ctl___click_to_select_more_than_one_','Upstairs Unit Bedroom ($590)'),(522,49,'do_you_have_pets_','No'),(523,49,'i_acknowledge_there_is_no_smoking_of_any_kind_within_25_feet_of_the_building_nor_in_the_building','Yes, I acknowledge the no smoking policy'),(524,49,'i_am_renting_by_the_room_and_i_need_the_room_to_be_furnished','Yes, I need the room to be furnished'),(525,49,'do_you_have_an_automobile_and_require_parking__copy','Yes, I need parking'),(526,49,'signature','Jeffrey Yung'),(527,49,'date_of_signature','08/24/2020'),(528,50,'name_7503024510','Zoie| | Chadwick'),(529,50,'email_address','zoiechadwick@gmail.com'),(530,50,'desired_move_in_date','01/09/2020'),(531,50,'phone','519-564-1651'),(532,50,'current_residence_address','2537 Meighen Rd'),(533,50,'how_long_at_current_residence_','2 years'),(534,50,'current_residence_landlord_s_name','N/A'),(535,50,'current_residence_landlord_contact_number','N/A'),(536,50,'reason_for_leaving_current_residence',''),(537,50,'monthly_rent_at_current_residence_copy','N/A'),(538,50,'previous_residence_address','120 Bellcreft Dr'),(539,50,'monthly_rent_at_previous_residence','N/A'),(540,50,'how_long_at_previous_residence_','N/A'),(541,50,'previous_residence_landlord_s_name','N/A'),(542,50,'previous_residence_landlord_contact_number','N/A'),(543,50,'have_you_ever_been_evicted_from_a_rental_residence_','No'),(544,50,'have_you_missed_two_or_more_rental_payments_in_the_past_12_months_','No'),(545,50,'have_you_ever_refused_to_pay_rent_when_due_','No'),(546,50,'if_you_have_answered_yes_to_any_of_the_previous_3_questions__please_explain',''),(547,50,'employment__select_all_that_apply__ctl___click_to_select_more_than_one_','Part-time| Student'),(548,50,'if_you_are_a_student_are_you_a_full_time_or_part_time_student_','Full time'),(549,50,'if_you_are_a_student_what_program_are_you_enrolled_in_','Bachelor of Education'),(550,50,'if_you_are_a_student__which_year_are_you_enrolled_in__ctl___click_to_select_more_than_one_','Professional Program ie Law, Medicine'),(551,50,'current_employer_copy_copy','FCA Windsor Assembly Plant'),(552,50,'supervisor','Anthony| | Guarasci'),(553,50,'your_job_title','Administrative Clerk'),(554,50,'date_hired','October 2015'),(555,50,'monthly_income','$1000-$2000'),(556,50,'have_you_declared_bankruptcy_in_the_past_seven_years_','No'),(557,50,'do_you_consent_to_a_credit_check_','Yes'),(558,50,'is_there_anything_that_we_may_find_in_our_credit_check_that_you_want_to_comment_on_',''),(559,50,'do_you_have_a_guarantor_if_required_',' No'),(560,50,'name_of_guarantor_','| |'),(561,50,'relationship_of_guarantor_to_you',''),(562,50,'accommodation_arrangement_sought_ctl___click_to_select_more_than_one_','Upstairs Unit Bedroom ($590)'),(563,50,'do_you_have_pets_','Yes'),(564,50,'i_acknowledge_there_is_no_smoking_of_any_kind_within_25_feet_of_the_building_nor_in_the_building','Yes, I acknowledge the no smoking policy'),(565,50,'i_am_renting_by_the_room_and_i_need_the_room_to_be_furnished','No, I am bringing my own furniture'),(566,50,'do_you_have_an_automobile_and_require_parking__copy','No, I do not need parking'),(567,50,'signature','Zoie Chadwick'),(568,50,'date_of_signature','8/25/2020'),(569,51,'name','Vancleef| | Jeandedieu'),(570,51,'email','gamerpro625@gmail.com'),(571,51,'message','Hi I was interested in your large bedroom for rent, I\'m looking to move right away, I\'m Clean, I\'m a gamer and 23 years old, please let me know, you can contact me through my email.'),(572,52,'name','Alejandra Thompson| | Alejandra Thompson'),(573,52,'email','pooja@rajentech.online'),(574,52,'message','Codes specifically reserved for testing purposes'),(575,53,'name','Sami| | Himadi'),(576,53,'email','sami.himadi@gmail.com'),(577,53,'message','Hi I’m interested can you please call me on my number (5195664204)'),(578,54,'name','Hardik| | Sonetta'),(579,54,'email','hsonettams@gmail.com'),(580,54,'message','Hi, I am student at University of Windsor and I am looking for accomodation from 1st september. Is the room still available?'),(581,55,'name','Judd Towne| | Judd Towne'),(582,55,'email','ferrybrian@yahoo.com'),(583,55,'message','Internal'),(584,56,'name','Nupur| | M'),(585,56,'email','nupur.malagi@gmail.com'),(586,56,'message','Hello, I have received an offer from St Clair\'s (Downtown campus) - Data Analytics course, for the January intake. I am from India and associated with Accenture for the past two years. I was looking for a place which is close to the college and affordable which is when i happen to come across your advertisement. However, I am married and my spouse might accompany me in January. His course begins in September but there is a possibility he might come along with me in January. I see you allow only one unrelated person per room, which is where my query lies - would you allow my husband and me to stay in one room because renting the whole place out is not in our budget, we can at maximum afford the larger bedroom that you are renting. Some things you might want to know about us: - I love cooking and I would cook all three meals at home - I cook Indian food ( incase, you are a non - Indian, our food is spicy and it smells of spices) We cook only vegetarian foods, do not object cooking any type of food. I would be happy to learn new recipes both veg and non-veg :) You can get back to me regarding any other queries that you may have. Thanks! Good day.'),(587,57,'name','Tina Beatty| | Tina Beatty'),(588,57,'email','deansnyd@aol.com'),(589,57,'message','Frozen'),(590,58,'name','Mara Wyman| | Mara Wyman'),(591,58,'email','jkdiving@iol.ie'),(592,58,'message','Mountain'),(593,59,'name','Jerrod Luettgen| | Jerrod Luettgen'),(594,59,'email','leann.hilton@yahoo.com'),(595,59,'message','relationships'),(596,60,'name','Braeden D\'Amore DVM| | Braeden D\'Amore DVM'),(597,60,'email','mjanze1@shaw.ca'),(598,60,'message','Tasty Wooden Mouse'),(599,61,'name','Reginald Keebler DVM| | Reginald Keebler DVM'),(600,61,'email','nvathreya@icubesys.com'),(601,61,'message','bus'),(602,62,'name','Melissa Jerde| | Melissa Jerde'),(603,62,'email','bbank@foxandbank.com'),(604,62,'message','parsing'),(605,63,'name','Destany Stehr| | Destany Stehr'),(606,63,'email','amandakmiller95@yahoo.com'),(607,63,'message','Organized'),(608,64,'name','Adan Altenwerth| | Adan Altenwerth'),(609,64,'email','rmwarmoth@charter.net'),(610,64,'message','Integrated');
/*!40000 ALTER TABLE `wpjg_weforms_entrymeta` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpjg_weforms_entrymeta` with 610 row(s)
--

--
-- Table structure for table `wpjg_woocommerce_api_keys`
--

DROP TABLE IF EXISTS `wpjg_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `permissions` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_key` char(64) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_secret` char(43) COLLATE utf8mb4_unicode_ci NOT NULL,
  `nonces` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `truncated_key` char(7) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_woocommerce_api_keys`
--

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

-- Dumped table `wpjg_woocommerce_api_keys` with 0 row(s)
--

--
-- Table structure for table `wpjg_woocommerce_attribute_taxonomies`
--

DROP TABLE IF EXISTS `wpjg_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_label` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attribute_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_woocommerce_attribute_taxonomies`
--

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

-- Dumped table `wpjg_woocommerce_attribute_taxonomies` with 0 row(s)
--

--
-- Table structure for table `wpjg_woocommerce_downloadable_product_permissions`
--

DROP TABLE IF EXISTS `wpjg_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `order_key` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_email` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`permission_id`),
  KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
  KEY `order_id` (`order_id`),
  KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_woocommerce_downloadable_product_permissions`
--

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

-- Dumped table `wpjg_woocommerce_downloadable_product_permissions` with 0 row(s)
--

--
-- Table structure for table `wpjg_woocommerce_log`
--

DROP TABLE IF EXISTS `wpjg_woocommerce_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_woocommerce_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `level` smallint(4) NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `context` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`log_id`),
  KEY `level` (`level`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_woocommerce_log`
--

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

-- Dumped table `wpjg_woocommerce_log` with 0 row(s)
--

--
-- Table structure for table `wpjg_woocommerce_order_itemmeta`
--

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

--
-- Dumping data for table `wpjg_woocommerce_order_itemmeta`
--

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

-- Dumped table `wpjg_woocommerce_order_itemmeta` with 0 row(s)
--

--
-- Table structure for table `wpjg_woocommerce_order_items`
--

DROP TABLE IF EXISTS `wpjg_woocommerce_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_woocommerce_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `order_item_type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `order_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_woocommerce_order_items`
--

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

-- Dumped table `wpjg_woocommerce_order_items` with 0 row(s)
--

--
-- Table structure for table `wpjg_woocommerce_payment_tokenmeta`
--

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

--
-- Dumping data for table `wpjg_woocommerce_payment_tokenmeta`
--

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

-- Dumped table `wpjg_woocommerce_payment_tokenmeta` with 0 row(s)
--

--
-- Table structure for table `wpjg_woocommerce_payment_tokens`
--

DROP TABLE IF EXISTS `wpjg_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`token_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_woocommerce_payment_tokens`
--

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

-- Dumped table `wpjg_woocommerce_payment_tokens` with 0 row(s)
--

--
-- Table structure for table `wpjg_woocommerce_sessions`
--

DROP TABLE IF EXISTS `wpjg_woocommerce_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_woocommerce_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  `session_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_id`),
  UNIQUE KEY `session_key` (`session_key`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_woocommerce_sessions`
--

LOCK TABLES `wpjg_woocommerce_sessions` WRITE;
/*!40000 ALTER TABLE `wpjg_woocommerce_sessions` DISABLE KEYS */;
INSERT INTO `wpjg_woocommerce_sessions` VALUES (6,'1','a:7:{s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:706:\"a:26:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:18:\"374curry@gmail.com\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1601397459);
/*!40000 ALTER TABLE `wpjg_woocommerce_sessions` ENABLE KEYS */;
UNLOCK TABLES;

-- Dumped table `wpjg_woocommerce_sessions` with 1 row(s)
--

--
-- Table structure for table `wpjg_woocommerce_shipping_zone_locations`
--

DROP TABLE IF EXISTS `wpjg_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `location_id` (`location_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_woocommerce_shipping_zone_locations`
--

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

-- Dumped table `wpjg_woocommerce_shipping_zone_locations` with 0 row(s)
--

--
-- Table structure for table `wpjg_woocommerce_shipping_zone_methods`
--

DROP TABLE IF EXISTS `wpjg_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `method_order` bigint(20) unsigned NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`instance_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_woocommerce_shipping_zone_methods`
--

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

-- Dumped table `wpjg_woocommerce_shipping_zone_methods` with 0 row(s)
--

--
-- Table structure for table `wpjg_woocommerce_shipping_zones`
--

DROP TABLE IF EXISTS `wpjg_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_woocommerce_shipping_zones` (
  `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `zone_order` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`zone_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_woocommerce_shipping_zones`
--

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

-- Dumped table `wpjg_woocommerce_shipping_zones` with 0 row(s)
--

--
-- Table structure for table `wpjg_woocommerce_tax_rate_locations`
--

DROP TABLE IF EXISTS `wpjg_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_woocommerce_tax_rate_locations`
--

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

-- Dumped table `wpjg_woocommerce_tax_rate_locations` with 0 row(s)
--

--
-- Table structure for table `wpjg_woocommerce_tax_rates`
--

DROP TABLE IF EXISTS `wpjg_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) unsigned NOT NULL,
  `tax_rate_compound` int(1) NOT NULL DEFAULT 0,
  `tax_rate_shipping` int(1) NOT NULL DEFAULT 1,
  `tax_rate_order` bigint(20) unsigned NOT NULL,
  `tax_rate_class` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`),
  KEY `tax_rate_state` (`tax_rate_state`(2)),
  KEY `tax_rate_class` (`tax_rate_class`(10)),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_woocommerce_tax_rates`
--

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

-- Dumped table `wpjg_woocommerce_tax_rates` with 0 row(s)
--

--
-- Table structure for table `wpjg_wpforms_lite`
--

DROP TABLE IF EXISTS `wpjg_wpforms_lite`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpjg_wpforms_lite` (
  `rid` int(10) NOT NULL AUTO_INCREMENT,
  `start` bigint(20) NOT NULL,
  `end` bigint(20) NOT NULL,
  `status` tinyint(2) NOT NULL DEFAULT 1,
  `date` int(10) NOT NULL,
  PRIMARY KEY (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpjg_wpforms_lite`
--

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

-- Dumped table `wpjg_wpforms_lite` with 0 row(s)
--

/*!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: Sun, 27 Sep 2020 16:42:37 +0000
